
    :root {
        --primary-color: #e44d26; /* A vibrant orange-red for action */
        --secondary-color: #333;
        --accent-color: #f7b32b; /* A golden yellow for highlights */
        --background-light: #f5f5f5;
        --background-dark: #222;
        --text-color-light: #fff;
        --text-color-dark: #333;
        --border-color: #ddd;
        --spacing-unit: 1rem;
    }

    /* Base styles for the page content, ensuring it doesn't clash with shared components */
    .page-phbet-bet {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: var(--text-color-dark);
        background-color: var(--background-light);
        padding-top: 10px; /* Small top padding, assuming body already handles header offset */
    }

    .page-phbet-bet__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 var(--spacing-unit);
        box-sizing: border-box;
    }

    /* Hero Section */
    .page-phbet-bet__hero-section {
        background: var(--background-dark);
        color: var(--text-color-light);
        text-align: center;
        padding: 60px 0;
        position: relative;
        overflow: hidden;
    }

    .page-phbet-bet__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3;
        z-index: 0;
        max-width: 100%; /* Responsive image */
        box-sizing: border-box;
    }

    .page-phbet-bet__hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
        margin: 0 auto;
        padding: 0 var(--spacing-unit);
    }

    .page-phbet-bet__hero-title {
        font-size: 2.8rem;
        margin-bottom: 1rem;
        color: var(--accent-color);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-phbet-bet__hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 2rem;
        color: var(--text-color-light);
    }

    .page-phbet-bet__primary-button {
        display: inline-block;
        background-color: var(--primary-color);
        color: var(--text-color-light);
        padding: 15px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
    }

    .page-phbet-bet__primary-button:hover {
        background-color: #c0392b; /* Darker shade */
        transform: translateY(-2px);
    }

    /* Section Styling */
    .page-phbet-bet__section {
        padding: 60px 0;
        text-align: center;
    }

    .page-phbet-bet__section:nth-of-type(even) {
        background-color: var(--background-light);
    }

    .page-phbet-bet__section:nth-of-type(odd) {
        background-color: var(--background-dark);
        color: var(--text-color-light);
    }

    .page-phbet-bet__section-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        color: var(--primary-color);
    }

    .page-phbet-bet__section:nth-of-type(odd) .page-phbet-bet__section-title {
        color: var(--accent-color);
    }

    .page-phbet-bet__section-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        color: inherit;
    }

    /* Feature Grid */
    .page-phbet-bet__feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .page-phbet-bet__feature-card {
        background-color: #fff;
        padding: 2rem;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        text-align: left;
        transition: transform 0.3s ease;
        color: var(--text-color-dark);
    }
    .page-phbet-bet__section:nth-of-type(odd) .page-phbet-bet__feature-card {
        background-color: #333;
        color: var(--text-color-light);
    }

    .page-phbet-bet__feature-card:hover {
        transform: translateY(-5px);
    }

    .page-phbet-bet__feature-icon {
        width: 200px; /* Minimum size for all images */
        height: 200px; /* Minimum size for all images */
        margin-bottom: 1rem;
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%; /* Responsive image */
        height: auto; /* Maintain aspect ratio */
        box-sizing: border-box;
    }

    .page-phbet-bet__feature-card-title {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
        color: var(--primary-color);
    }
    .page-phbet-bet__section:nth-of-type(odd) .page-phbet-bet__feature-card-title {
        color: var(--accent-color);
    }

    .page-phbet-bet__feature-card-description {
        font-size: 1rem;
        color: inherit;
    }

    /* Game Providers */
    .page-phbet-bet__providers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .page-phbet-bet__provider-item {
        background-color: #fff;
        padding: 1.5rem;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 150px;
        color: var(--text-color-dark);
    }
    .page-phbet-bet__section:nth-of-type(odd) .page-phbet-bet__provider-item {
        background-color: #333;
        color: var(--text-color-light);
    }

    .page-phbet-bet__provider-logo {
        max-width: 200px; /* Minimum size for all images */
        max-height: 200px; /* Minimum size for all images */
        height: auto;
        margin-bottom: 0.5rem;
        object-fit: contain;
        box-sizing: border-box;
    }

    .page-phbet-bet__provider-name {
        font-weight: bold;
        font-size: 0.95rem;
        color: inherit;
    }

    /* Call to Action */
    .page-phbet-bet__cta-section {
        background-color: var(--primary-color);
        color: var(--text-color-light);
        padding: 80px 0;
    }

    .page-phbet-bet__cta-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .page-phbet-bet__cta-description {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    /* FAQ Section */
    .page-phbet-bet__faq-section {
        background-color: var(--background-light);
        padding: 60px 0;
        text-align: center;
    }

    .page-phbet-bet__faq-list {
        max-width: 800px;
        margin: 3rem auto 0 auto;
        text-align: left;
    }

    .page-phbet-bet__faq-item {
        background-color: #fff;
        margin-bottom: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        color: var(--text-color-dark);
    }

    .page-phbet-bet__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        user-select: none;
        background-color: #f9f9f9;
        transition: background-color 0.3s ease;
        color: var(--secondary-color);
    }

    .page-phbet-bet__faq-question:hover {
        background-color: #eee;
    }

    .page-phbet-bet__faq-question h3 {
        margin: 0;
        font-size: 1.2rem;
        color: var(--primary-color);
        pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-phbet-bet__faq-toggle {
        font-size: 1.8rem;
        line-height: 1;
        font-weight: bold;
        color: var(--primary-color);
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent span from blocking click event */
    }

    .page-phbet-bet__faq-item.active .page-phbet-bet__faq-toggle {
        transform: rotate(45deg); /* Change + to X or - */
    }

    .page-phbet-bet__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: var(--text-color-dark);
    }

    .page-phbet-bet__faq-item.active .page-phbet-bet__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to contain content */
        padding: 20px 25px !important;
        opacity: 1;
    }

    .page-phbet-bet__faq-answer p {
        margin: 0 0 10px 0;
        font-size: 1rem;
    }
    .page-phbet-bet__faq-answer p:last-child {
        margin-bottom: 0;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-phbet-bet__hero-title {
            font-size: 2rem;
        }

        .page-phbet-bet__hero-subtitle {
            font-size: 1.1rem;
        }

        .page-phbet-bet__section {
            padding: 40px 0;
        }

        .page-phbet-bet__section-title {
            font-size: 1.8rem;
        }

        .page-phbet-bet__section-description {
            font-size: 1rem;
        }

        .page-phbet-bet__feature-grid,
        .page-phbet-bet__providers-grid {
            grid-template-columns: 1fr;
            padding: 0 15px;
        }

        .page-phbet-bet__cta-title {
            font-size: 2rem;
        }

        .page-phbet-bet__cta-description {
            font-size: 1rem;
        }

        .page-phbet-bet__faq-question {
            padding: 15px 15px;
        }

        .page-phbet-bet__faq-question h3 {
            font-size: 1rem;
        }

        .page-phbet-bet__faq-toggle {
            font-size: 1.5rem;
        }

        .page-phbet-bet__faq-answer {
            padding: 0 15px;
        }

        .page-phbet-bet__faq-item.active .page-phbet-bet__faq-answer {
            padding: 15px 15px !important;
        }

        /* Mobile specific styles for list items and containers */
        .page-phbet-bet__feature-grid,
        .page-phbet-bet__providers-grid,
        .page-phbet-bet__faq-list {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding-left: 0 !important;
            padding-right: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-phbet-bet__feature-card,
        .page-phbet-bet__provider-item,
        .page-phbet-bet__faq-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-phbet-bet__hero-image,
        .page-phbet-bet__feature-icon,
        .page-phbet-bet__provider-logo {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
    }

    @media (max-width: 480px) {
        .page-phbet-bet__hero-section {
            padding: 40px 0;
        }
        .page-phbet-bet__hero-title {
            font-size: 1.8rem;
        }
        .page-phbet-bet__hero-subtitle {
            font-size: 1rem;
        }
        .page-phbet-bet__primary-button {
            padding: 12px 25px;
            font-size: 1rem;
        }
        .page-phbet-bet__section-title {
            font-size: 1.5rem;
        }
        .page-phbet-bet__cta-title {
            font-size: 1.8rem;
        }
    }
  