
    /* Page-specific CSS for phbet-vip-2 */
    :root {
        --page-phbet-vip-2-primary-color: #e6b800; /* Gold/Yellow */
        --page-phbet-vip-2-secondary-color: #333; /* Dark Grey */
        --page-phbet-vip-2-accent-color: #ff4500; /* Orange-Red */
        --page-phbet-vip-2-text-color: #ffffff; /* White */
        --page-phbet-vip-2-bg-dark: #1a1a1a; /* Very Dark Grey */
        --page-phbet-vip-2-bg-light: #2c2c2c; /* Slightly Lighter Dark Grey */
        --page-phbet-vip-2-border-color: #444;
        --page-phbet-vip-2-button-hover-bg: #ffd700;
        --page-phbet-vip-2-button-hover-text: #1a1a1a;
    }

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

    .page-phbet-vip-2__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .page-phbet-vip-2__section {
        padding: 60px 0;
        text-align: center;
    }

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

    .page-phbet-vip-2__title {
        font-size: 2.8em;
        color: var(--page-phbet-vip-2-primary-color);
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .page-phbet-vip-2__subtitle {
        font-size: 1.8em;
        color: var(--page-phbet-vip-2-text-color);
        margin-bottom: 40px;
        font-weight: normal;
    }

    .page-phbet-vip-2__paragraph {
        font-size: 1.1em;
        margin-bottom: 20px;
        color: rgba(255, 255, 255, 0.9);
    }

    .page-phbet-vip-2__button {
        display: inline-block;
        background-color: var(--page-phbet-vip-2-primary-color);
        color: var(--page-phbet-vip-2-bg-dark);
        padding: 15px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, color 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-phbet-vip-2__button:hover {
        background-color: var(--page-phbet-vip-2-button-hover-bg);
        color: var(--page-phbet-vip-2-button-hover-text);
    }

    /* Hero Section */
    .page-phbet-vip-2__hero-section {
        position: relative;
        background: var(--page-phbet-vip-2-bg-dark);
        padding: 10px 0 80px; /* Small top padding, relying on body for header offset */
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 600px; /* Ensure hero section has a minimum height */
    }

    .page-phbet-vip-2__hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        max-width: 900px;
        padding: 20px;
    }

    .page-phbet-vip-2__hero-title {
        font-size: 3.5em;
        color: var(--page-phbet-vip-2-primary-color);
        margin-bottom: 15px;
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

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

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

    /* Floating Buttons */
    .page-phbet-vip-2__floating-buttons {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        display: flex;
        gap: 15px;
        background-color: rgba(0, 0, 0, 0.7);
        padding: 10px 20px;
        border-radius: 50px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-phbet-vip-2__floating-button {
        background-color: var(--page-phbet-vip-2-accent-color);
        color: var(--page-phbet-vip-2-text-color);
        padding: 10px 25px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.0em;
        transition: background-color 0.3s ease, transform 0.2s ease;
        white-space: nowrap;
    }

    .page-phbet-vip-2__floating-button--register {
        background-color: var(--page-phbet-vip-2-primary-color);
        color: var(--page-phbet-vip-2-bg-dark);
    }

    .page-phbet-vip-2__floating-button:hover {
        background-color: var(--page-phbet-vip-2-button-hover-bg);
        color: var(--page-phbet-vip-2-bg-dark);
        transform: translateY(-2px);
    }
    .page-phbet-vip-2__floating-button--register:hover {
        background-color: #ffd700;
        color: var(--page-phbet-vip-2-bg-dark);
    }

    /* Games Section */
    .page-phbet-vip-2__games-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-phbet-vip-2__game-card {
        background-color: var(--page-phbet-vip-2-bg-light);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: left;
    }

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

    .page-phbet-vip-2__game-card-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }

    .page-phbet-vip-2__game-card-content {
        padding: 20px;
    }

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

    .page-phbet-vip-2__game-card-description {
        font-size: 0.95em;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 15px;
    }

    /* Promotions Section */
    .page-phbet-vip-2__promotions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-phbet-vip-2__promo-card {
        background-color: var(--page-phbet-vip-2-bg-light);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        text-align: left;
        padding: 25px;
        border-left: 5px solid var(--page-phbet-vip-2-primary-color);
    }

    .page-phbet-vip-2__promo-card-title {
        font-size: 1.5em;
        color: var(--page-phbet-vip-2-primary-color);
        margin-bottom: 10px;
    }

    .page-phbet-vip-2__promo-card-description {
        font-size: 1em;
        color: rgba(255, 255, 255, 0.8);
    }

    /* Payment Methods */
    .page-phbet-vip-2__payment-methods-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
        margin-top: 40px;
        list-style: none;
        padding: 0;
    }

    .page-phbet-vip-2__payment-method-item {
        background-color: var(--page-phbet-vip-2-bg-light);
        border-radius: 8px;
        padding: 20px 30px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        color: var(--page-phbet-vip-2-text-color);
        font-weight: bold;
        font-size: 1.1em;
        display: flex;
        align-items: center;
        gap: 10px;
        border: 1px solid var(--page-phbet-vip-2-border-color);
        transition: transform 0.2s ease, border-color 0.2s ease;
        box-sizing: border-box; /* Required for list items */
    }

    .page-phbet-vip-2__payment-method-item:hover {
        transform: translateY(-3px);
        border-color: var(--page-phbet-vip-2-primary-color);
    }

    .page-phbet-vip-2__payment-method-icon {
        width: 60px; /* Small icon size is allowed for logos *within* cards, but the image itself must meet 200x200 if it's a content image */
        height: 60px;
        object-fit: contain;
        max-width: 100%;
        height: auto;
    }

    /* Why Choose Us Section */
    .page-phbet-vip-2__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-phbet-vip-2__feature-card {
        background-color: var(--page-phbet-vip-2-bg-light);
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        text-align: center;
        border-bottom: 4px solid var(--page-phbet-vip-2-accent-color);
    }

    .page-phbet-vip-2__feature-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
        object-fit: contain;
        max-width: 100%;
        height: auto;
    }

    .page-phbet-vip-2__feature-title {
        font-size: 1.3em;
        color: var(--page-phbet-vip-2-primary-color);
        margin-bottom: 10px;
    }

    .page-phbet-vip-2__feature-description {
        font-size: 0.95em;
        color: rgba(255, 255, 255, 0.8);
    }

    /* FAQ Section */
    .page-phbet-vip-2__faq-section {
        background-color: var(--page-phbet-vip-2-bg-dark);
        padding: 60px 0;
        text-align: center;
    }

    .page-phbet-vip-2__faq-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 15px;
        text-align: left;
    }

    .page-phbet-vip-2__faq-item {
        background-color: var(--page-phbet-vip-2-bg-light);
        border: 1px solid var(--page-phbet-vip-2-border-color);
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
    }

    .page-phbet-vip-2__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        user-select: none;
        background-color: #222;
        color: var(--page-phbet-vip-2-primary-color);
        font-size: 1.2em;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .page-phbet-vip-2__faq-question:hover {
        background-color: #333;
    }

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

    .page-phbet-vip-2__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        line-height: 1;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-phbet-vip-2__faq-item.active .page-phbet-vip-2__faq-toggle {
        transform: rotate(45deg);
    }

    .page-phbet-vip-2__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        opacity: 0;
        color: rgba(255, 255, 255, 0.8);
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

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

    .page-phbet-vip-2__faq-answer p {
        margin-top: 0;
        margin-bottom: 10px;
    }
    .page-phbet-vip-2__faq-answer p:last-child {
        margin-bottom: 0;
    }

    /* Call to Action Section */
    .page-phbet-vip-2__cta-section {
        background-color: var(--page-phbet-vip-2-accent-color);
        padding: 80px 0;
    }

    .page-phbet-vip-2__cta-title {
        color: var(--page-phbet-vip-2-text-color);
        font-size: 2.5em;
        margin-bottom: 20px;
    }

    .page-phbet-vip-2__cta-description {
        color: var(--page-phbet-vip-2-text-color);
        font-size: 1.2em;
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .page-phbet-vip-2__hero-title {
            font-size: 3em;
        }
        .page-phbet-vip-2__hero-subtitle {
            font-size: 1.3em;
        }
        .page-phbet-vip-2__title {
            font-size: 2.5em;
        }
        .page-phbet-vip-2__subtitle {
            font-size: 1.6em;
        }
    }

    @media (max-width: 768px) {
        .page-phbet-vip-2__hero-section {
            min-height: 500px;
            padding-bottom: 60px;
        }
        .page-phbet-vip-2__hero-title {
            font-size: 2.5em;
        }
        .page-phbet-vip-2__hero-subtitle {
            font-size: 1.1em;
        }
        .page-phbet-vip-2__title {
            font-size: 2em;
        }
        .page-phbet-vip-2__subtitle {
            font-size: 1.4em;
        }
        .page-phbet-vip-2__section {
            padding: 40px 0;
        }
        .page-phbet-vip-2__games-grid,
        .page-phbet-vip-2__promotions-grid,
        .page-phbet-vip-2__features-grid {
            grid-template-columns: 1fr;
        }

        /* Responsive list items */
        .page-phbet-vip-2__payment-methods-list {
            flex-direction: column;
            align-items: center;
            width: 100%; /* Ensure container takes full width */
            padding: 0; /* Remove default padding for ul/ol */
            box-sizing: border-box;
        }
        .page-phbet-vip-2__payment-method-item {
            width: 100% !important;
            max-width: 300px !important; /* Constrain individual item width for better readability */
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 15px 20px !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        .page-phbet-vip-2__game-card,
        .page-phbet-vip-2__promo-card,
        .page-phbet-vip-2__feature-card {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-phbet-vip-2__game-card-image,
        .page-phbet-vip-2__feature-icon,
        .page-phbet-vip-2__payment-method-icon {
            max-width: 100% !important;
            height: auto !important;
        }

        .page-phbet-vip-2__floating-buttons {
            flex-direction: column;
            width: calc(100% - 40px);
            left: 20px;
            transform: translateX(0);
            bottom: 15px;
            padding: 10px;
            border-radius: 10px;
            box-sizing: border-box;
        }
        .page-phbet-vip-2__floating-button {
            width: 100%;
            text-align: center;
            padding: 12px 20px;
            font-size: 1.0em;
        }
        .page-phbet-vip-2__faq-question {
            padding: 15px 20px;
            font-size: 1.1em;
        }
        .page-phbet-vip-2__faq-question h3 {
            font-size: 1.1em;
        }
        .page-phbet-vip-2__faq-answer {
            padding: 0 20px;
        }
        .page-phbet-vip-2__faq-item.active .page-phbet-vip-2__faq-answer {
            padding: 15px 20px !important;
        }
    }

    @media (max-width: 480px) {
        .page-phbet-vip-2__hero-title {
            font-size: 2em;
        }
        .page-phbet-vip-2__hero-subtitle {
            font-size: 1em;
        }
        .page-phbet-vip-2__title {
            font-size: 1.8em;
        }
        .page-phbet-vip-2__subtitle {
            font-size: 1.2em;
        }
        .page-phbet-vip-2__button {
            padding: 12px 25px;
            font-size: 1em;
        }
        .page-phbet-vip-2__floating-buttons {
            gap: 10px;
        }
    }
  