
    /* Page-specific CSS for phbet-ph-2 */
    :root {
        --page-phbet-ph-2-primary-color: #f7b32b; /* A golden yellow, common in betting sites */
        --page-phbet-ph-2-secondary-color: #333333; /* Dark grey for text */
        --page-phbet-ph-2-accent-color: #e74c3c; /* Red for emphasis/buttons */
        --page-phbet-ph-2-background-light: #f9f9f9;
        --page-phbet-ph-2-background-dark: #1a1a1a; /* Dark background for sections */
        --page-phbet-ph-2-text-light: #ffffff;
        --page-phbet-ph-2-text-dark: #333333;
        --page-phbet-ph-2-border-color: #e0e0e0;
    }

    .page-phbet-ph-2 {
        font-family: 'Arial', sans-serif;
        color: var(--page-phbet-ph-2-text-dark);
        line-height: 1.6;
        background-color: var(--page-phbet-ph-2-background-light);
        padding-top: var(--header-offset, 122px); /* Fallback for header offset if not set in body */
    }

    /* General Section Styling */
    .page-phbet-ph-2__section {
        padding: 40px 20px;
        margin: 0 auto;
        max-width: 1200px;
        box-sizing: border-box;
    }

    .page-phbet-ph-2__section--dark {
        background-color: var(--page-phbet-ph-2-background-dark);
        color: var(--page-phbet-ph-2-text-light);
    }

    .page-phbet-ph-2__section-title {
        text-align: center;
        font-size: 2.5em;
        color: var(--page-phbet-ph-2-primary-color);
        margin-bottom: 30px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .page-phbet-ph-2__section--dark .page-phbet-ph-2__section-title {
        color: var(--page-phbet-ph-2-primary-color);
    }

    /* Hero Section */
    .page-phbet-ph-2__hero-section {
        position: relative;
        text-align: center;
        color: var(--page-phbet-ph-2-text-light);
        padding: 10px 0 60px 0; /* Small top padding, main padding from body */
        overflow: hidden;
        background-color: var(--page-phbet-ph-2-background-dark); /* Fallback if image not loaded */
    }

    .page-phbet-ph-2__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
        opacity: 0.4;
    }

    .page-phbet-ph-2__hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    .page-phbet-ph-2__hero-title {
        font-size: 3.5em;
        margin-bottom: 20px;
        color: var(--page-phbet-ph-2-primary-color);
        text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        text-transform: uppercase;
    }

    .page-phbet-ph-2__hero-subtitle {
        font-size: 1.5em;
        margin-bottom: 30px;
        color: var(--page-phbet-ph-2-text-light);
        text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }

    .page-phbet-ph-2__promo-button {
        display: inline-block;
        background-color: var(--page-phbet-ph-2-accent-color);
        color: var(--page-phbet-ph-2-text-light);
        padding: 15px 30px;
        border-radius: 8px;
        font-size: 1.2em;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-phbet-ph-2__promo-button:hover {
        background-color: #c0392b; /* Darker red on hover */
    }

    /* About Section */
    .page-phbet-ph-2__about-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .page-phbet-ph-2__about-text {
        font-size: 1.1em;
        text-align: center;
        max-width: 800px;
    }

    .page-phbet-ph-2__about-image {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    /* Game Categories Section */
    .page-phbet-ph-2__game-categories {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        justify-content: center;
    }

    .page-phbet-ph-2__game-card {
        background-color: var(--page-phbet-ph-2-background-light);
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        overflow: hidden;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        color: var(--page-phbet-ph-2-text-dark);
        padding-bottom: 20px;
    }
    .page-phbet-ph-2__section--dark .page-phbet-ph-2__game-card {
        background-color: #2a2a2a;
        color: var(--page-phbet-ph-2-text-light);
    }

    .page-phbet-ph-2__game-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

    .page-phbet-ph-2__game-card-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-bottom: 2px solid var(--page-phbet-ph-2-primary-color);
    }

    .page-phbet-ph-2__game-card-title {
        font-size: 1.5em;
        margin: 20px 0 10px;
        color: var(--page-phbet-ph-2-primary-color);
    }

    .page-phbet-ph-2__game-card-description {
        padding: 0 15px;
        font-size: 0.95em;
    }

    /* Promotions Section */
    .page-phbet-ph-2__promotions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        justify-content: center;
    }

    .page-phbet-ph-2__promotion-card {
        background-color: var(--page-phbet-ph-2-background-light);
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        color: var(--page-phbet-ph-2-text-dark);
    }
    .page-phbet-ph-2__section--dark .page-phbet-ph-2__promotion-card {
        background-color: #2a2a2a;
        color: var(--page-phbet-ph-2-text-light);
    }

    .page-phbet-ph-2__promotion-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .page-phbet-ph-2__promotion-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

    .page-phbet-ph-2__promotion-content {
        padding: 20px;
    }

    .page-phbet-ph-2__promotion-title {
        font-size: 1.4em;
        margin-bottom: 10px;
        color: var(--page-phbet-ph-2-primary-color);
    }

    .page-phbet-ph-2__promotion-description {
        font-size: 0.95em;
        margin-bottom: 15px;
    }

    .page-phbet-ph-2__promotion-button {
        display: block; /* Changed to block for full width */
        width: 100%;
        background-color: var(--page-phbet-ph-2-primary-color);
        color: var(--page-phbet-ph-2-text-dark); /* Dark text on primary color */
        padding: 12px 20px;
        border-radius: 5px;
        text-align: center;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-phbet-ph-2__promotion-button:hover {
        background-color: #e6a220; /* Darker primary on hover */
    }

    /* Payment and Providers Section */
    .page-phbet-ph-2__payment-providers-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-phbet-ph-2__payment-providers-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .page-phbet-ph-2__payment-providers-item {
        background-color: var(--page-phbet-ph-2-background-light);
        border: 1px solid var(--page-phbet-ph-2-border-color);
        border-radius: 8px;
        padding: 15px 25px;
        text-align: center;
        font-weight: bold;
        font-size: 1.1em;
        color: var(--page-phbet-ph-2-text-dark);
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        transition: transform 0.2s ease;
        box-sizing: border-box; /* Crucial for responsive width */
        width: calc(33.333% - 20px); /* Default for desktop */
    }
    .page-phbet-ph-2__section--dark .page-phbet-ph-2__payment-providers-item {
        background-color: #2a2a2a;
        border-color: #444;
        color: var(--page-phbet-ph-2-text-light);
    }

    .page-phbet-ph-2__payment-providers-item:hover {
        transform: translateY(-3px);
    }

    /* Floating Buttons */
    .page-phbet-ph-2__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .page-phbet-ph-2__floating-button {
        background-color: var(--page-phbet-ph-2-primary-color);
        color: var(--page-phbet-ph-2-text-dark);
        padding: 12px 25px;
        border-radius: 30px;
        font-weight: bold;
        text-decoration: none;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
        min-width: 120px; /* Ensure buttons have a minimum width */
    }

    .page-phbet-ph-2__floating-button--register {
        background-color: var(--page-phbet-ph-2-accent-color);
        color: var(--page-phbet-ph-2-text-light);
    }

    .page-phbet-ph-2__floating-button:hover {
        transform: translateY(-2px);
    }
    .page-phbet-ph-2__floating-button--register:hover {
        background-color: #c0392b;
    }
    .page-phbet-ph-2__floating-button:hover:not(.page-phbet-ph-2__floating-button--register) {
        background-color: #e6a220;
    }

    /* FAQ Section */
    .page-phbet-ph-2__faq-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .page-phbet-ph-2__faq-item {
        background-color: var(--page-phbet-ph-2-background-light);
        border: 1px solid var(--page-phbet-ph-2-border-color);
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    .page-phbet-ph-2__section--dark .page-phbet-ph-2__faq-item {
        background-color: #2a2a2a;
        border-color: #444;
    }

    .page-phbet-ph-2__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
        user-select: none;
        font-weight: bold;
        font-size: 1.1em;
        color: var(--page-phbet-ph-2-text-dark);
        background-color: #ffffff;
        transition: background-color 0.3s ease;
    }
    .page-phbet-ph-2__section--dark .page-phbet-ph-2__faq-question {
        color: var(--page-phbet-ph-2-text-light);
        background-color: #3a3a3a;
    }

    .page-phbet-ph-2__faq-question:hover {
        background-color: #f0f0f0;
    }
    .page-phbet-ph-2__section--dark .page-phbet-ph-2__faq-question:hover {
        background-color: #4a4a4a;
    }

    .page-phbet-ph-2__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        color: inherit; /* Ensure h3 inherits color */
        pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-phbet-ph-2__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        margin-left: 10px;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from blocking click event */
        color: var(--page-phbet-ph-2-primary-color);
    }

    .page-phbet-ph-2__faq-item.active .page-phbet-ph-2__faq-toggle {
        transform: rotate(45deg); /* Changes '+' to 'x' or similar for visual cue */
        /* content: "−"; Handled by JS */
    }

    .page-phbet-ph-2__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 15px;
        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(--page-phbet-ph-2-text-dark);
    }
    .page-phbet-ph-2__section--dark .page-phbet-ph-2__faq-answer {
        color: var(--page-phbet-ph-2-text-light);
    }

    .page-phbet-ph-2__faq-item.active .page-phbet-ph-2__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px 15px !important;
        opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-phbet-ph-2__hero-title {
            font-size: 2.5em;
        }

        .page-phbet-ph-2__hero-subtitle {
            font-size: 1.2em;
        }

        .page-phbet-ph-2__section-title {
            font-size: 2em;
        }

        .page-phbet-ph-2__game-categories,
        .page-phbet-ph-2__promotions-grid {
            grid-template-columns: 1fr;
        }

        .page-phbet-ph-2__payment-providers-item {
            width: calc(50% - 20px) !important; /* Two items per row on mobile */
            padding: 12px 15px !important;
            font-size: 1em !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important; /* Ensure text wraps */
            overflow-wrap: break-word !important;
        }

        .page-phbet-ph-2__payment-providers-list {
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
        }

        .page-phbet-ph-2__floating-buttons {
            bottom: 15px;
            right: 15px;
            flex-direction: row; /* Buttons side-by-side on smaller screens */
            width: calc(100% - 30px); /* Adjust width */
            justify-content: space-around;
        }
        .page-phbet-ph-2__floating-button {
            flex: 1;
            padding: 10px 15px;
            min-width: unset;
            font-size: 0.9em;
        }

        /* Ensure all images are responsive */
        .page-phbet-ph-2__hero-image,
        .page-phbet-ph-2__about-image,
        .page-phbet-ph-2__game-card-image,
        .page-phbet-ph-2__promotion-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-phbet-ph-2__hero-section,
        .page-phbet-ph-2__about-section,
        .page-phbet-ph-2__game-section,
        .page-phbet-ph-2__promotions-section,
        .page-phbet-ph-2__payment-providers-section,
        .page-phbet-ph-2__faq-section {
            padding-left: 15px;
            padding-right: 15px;
        }
    }

    @media (max-width: 480px) {
        .page-phbet-ph-2__hero-title {
            font-size: 2em;
        }

        .page-phbet-ph-2__hero-subtitle {
            font-size: 1em;
        }

        .page-phbet-ph-2__section-title {
            font-size: 1.8em;
        }

        .page-phbet-ph-2__payment-providers-item {
            width: calc(100% - 20px) !important; /* One item per row on very small screens */
        }
    }
  