
    /* CSS for page-phbet-88-2 */
    :root {
        --primary-color: #e44d26; /* A vibrant orange-red, common in gaming/betting */
        --secondary-color: #333;
        --accent-color: #f7b32b; /* A golden yellow for highlights */
        --text-color: #333;
        --light-text-color: #f0f0f0;
        --background-light: #f9f9f9;
        --background-dark: #222;
        --border-color: #ddd;
        --button-hover-color: #c0392b;
    }

    .page-phbet-88-2 {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: var(--text-color);
        background-color: var(--background-light);
        padding-top: 10px; /* Small top padding as body padding-top is handled by shared CSS */
    }

    .page-phbet-88-2__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .page-phbet-88-2__section {
        padding: 40px 0;
        margin-bottom: 20px;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

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

    .page-phbet-88-2__section-title {
        text-align: center;
        font-size: 2.5em;
        color: var(--primary-color);
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 15px;
    }

    .page-phbet-88-2__section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: var(--accent-color);
        border-radius: 2px;
    }

    .page-phbet-88-2__section-title--light {
        color: var(--accent-color);
    }

    /* Hero Section */
    .page-phbet-88-2__hero-section {
        position: relative;
        height: 60vh;
        min-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #fff;
        overflow: hidden;
        margin-bottom: 30px;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .page-phbet-88-2__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
        filter: brightness(0.6); /* Allowed as it doesn't change color hue, just intensity */
    }

    .page-phbet-88-2__hero-content {
        z-index: 1;
        max-width: 800px;
        padding: 20px;
    }

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

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

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

    .page-phbet-88-2__button:hover {
        background-color: var(--button-hover-color);
        transform: translateY(-2px);
    }

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

    .page-phbet-88-2__floating-button {
        background-color: var(--accent-color);
        color: var(--background-dark);
        padding: 12px 25px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
        text-align: center;
        font-size: 1em;
    }

    .page-phbet-88-2__floating-button:hover {
        background-color: #e0a125;
        transform: translateY(-2px);
    }
    
    .page-phbet-88-2__floating-button--register {
        background-color: var(--primary-color);
        color: #fff;
    }
    
    .page-phbet-88-2__floating-button--register:hover {
        background-color: var(--button-hover-color);
    }


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

    .page-phbet-88-2__promotion-card {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        overflow: hidden;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid var(--border-color);
    }

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

    .page-phbet-88-2__promotion-image-wrapper {
        width: 100%;
        height: 250px; /* Fixed height for consistency */
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .page-phbet-88-2__promotion-image {
        max-width: 100%;
        height: auto;
        object-fit: cover;
        width: 100%; /* Ensure image fills wrapper */
    }

    .page-phbet-88-2__promotion-content {
        padding: 25px;
    }

    .page-phbet-88-2__promotion-title {
        font-size: 1.6em;
        color: var(--secondary-color);
        margin-bottom: 15px;
    }

    .page-phbet-88-2__promotion-description {
        font-size: 0.95em;
        color: #666;
        margin-bottom: 20px;
    }

    /* Games Section */
    .page-phbet-88-2__games-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        padding: 20px;
    }

    .page-phbet-88-2__game-card {
        background-color: var(--background-dark);
        color: var(--light-text-color);
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        overflow: hidden;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid #444;
    }

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

    .page-phbet-88-2__game-image-wrapper {
        width: 100%;
        height: 180px;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .page-phbet-88-2__game-image {
        max-width: 100%;
        height: auto;
        object-fit: cover;
        width: 100%;
    }

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

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

    .page-phbet-88-2__game-provider {
        font-size: 0.9em;
        color: #bbb;
    }

    /* Payment Methods */
    .page-phbet-88-2__payment-methods-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        padding: 20px;
    }

    .page-phbet-88-2__payment-card {
        background-color: #fff;
        border-radius: 8px;
        padding: 20px;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        transition: transform 0.2s ease;
        border: 1px solid var(--border-color);
    }

    .page-phbet-88-2__payment-card:hover {
        transform: translateY(-3px);
    }

    .page-phbet-88-2__payment-icon-wrapper {
        width: 100%;
        height: 80px; /* Fixed height for payment icons */
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 15px;
    }
    .page-phbet-88-2__payment-icon {
        max-width: 100%;
        height: auto;
        max-height: 60px; /* Limit icon height for display, but source image is larger */
        object-fit: contain;
    }

    .page-phbet-88-2__payment-name {
        font-size: 1.1em;
        font-weight: bold;
        color: var(--secondary-color);
    }

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

    .page-phbet-88-2__feature-item {
        background-color: var(--background-dark);
        color: var(--light-text-color);
        padding: 30px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        border: 1px solid #444;
    }

    .page-phbet-88-2__feature-icon-wrapper {
        margin-bottom: 20px;
        width: 100%;
        height: 100px; /* Fixed height for feature icons */
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .page-phbet-88-2__feature-icon {
        width: auto;
        height: 80px; /* Adjust height for visibility */
        max-width: 100%;
        object-fit: contain;
    }

    .page-phbet-88-2__feature-title {
        font-size: 1.5em;
        color: var(--accent-color);
        margin-bottom: 15px;
    }

    .page-phbet-88-2__feature-description {
        font-size: 0.95em;
        color: #ccc;
    }

    /* FAQ Section */
    .page-phbet-88-2__faq-section {
        background-color: var(--background-light);
        padding: 40px 0;
    }

    .page-phbet-88-2__faq-item {
        background-color: #fff;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .page-phbet-88-2__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        user-select: none;
        background-color: #f0f0f0;
        border-bottom: 1px solid var(--border-color);
        transition: background-color 0.3s ease;
    }

    .page-phbet-88-2__faq-question:hover {
        background-color: #e8e8e8;
    }

    .page-phbet-88-2__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: var(--secondary-color);
        flex-grow: 1;
        pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-phbet-88-2__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: var(--primary-color);
        margin-left: 15px;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-phbet-88-2__faq-item.active .page-phbet-88-2__faq-toggle {
        transform: rotate(45deg); /* Change '+' to 'X' visually */
    }

    .page-phbet-88-2__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: #555;
        font-size: 0.95em;
    }

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

    /* Responsive Design */
    @media (max-width: 1024px) {
        .page-phbet-88-2__hero-title {
            font-size: 3em;
        }
        .page-phbet-88-2__hero-subtitle {
            font-size: 1.3em;
        }
        .page-phbet-88-2__section-title {
            font-size: 2em;
        }
    }

    @media (max-width: 768px) {
        .page-phbet-88-2__hero-section {
            height: 50vh;
            min-height: 300px;
        }
        .page-phbet-88-2__hero-title {
            font-size: 2.5em;
        }
        .page-phbet-88-2__hero-subtitle {
            font-size: 1.1em;
        }
        .page-phbet-88-2__button {
            padding: 12px 25px;
            font-size: 1em;
        }
        .page-phbet-88-2__section {
            padding: 30px 0;
        }
        .page-phbet-88-2__section-title {
            font-size: 1.8em;
            margin-bottom: 25px;
        }

        /* List items responsive */
        .page-phbet-88-2__promotions-grid,
        .page-phbet-88-2__games-grid,
        .page-phbet-88-2__payment-methods-grid,
        .page-phbet-88-2__features-grid {
            grid-template-columns: 1fr !important;
            padding: 0 15px !important; /* Adjust container padding */
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-phbet-88-2__promotion-card,
        .page-phbet-88-2__game-card,
        .page-phbet-88-2__payment-card,
        .page-phbet-88-2__feature-item,
        .page-phbet-88-2__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-88-2__promotion-image,
        .page-phbet-88-2__game-image,
        .page-phbet-88-2__payment-icon,
        .page-phbet-88-2__feature-icon {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        
        .page-phbet-88-2__floating-buttons {
            bottom: 15px;
            right: 15px;
            flex-direction: row; /* Horizontal on mobile for better thumb reach */
            width: calc(100% - 30px);
            justify-content: space-around;
        }

        .page-phbet-88-2__floating-button {
            flex: 1;
            padding: 10px 15px;
            font-size: 0.9em;
        }

        .page-phbet-88-2__faq-question {
            padding: 15px 20px;
        }
        .page-phbet-88-2__faq-question h3 {
            font-size: 1.1em;
        }
        .page-phbet-88-2__faq-toggle {
            font-size: 1.5em;
        }
        .page-phbet-88-2__faq-answer {
            padding: 0 20px;
        }
        .page-phbet-88-2__faq-item.active .page-phbet-88-2__faq-answer {
            padding: 15px 20px !important;
        }
    }

    @media (max-width: 480px) {
        .page-phbet-88-2__hero-title {
            font-size: 2em;
        }
        .page-phbet-88-2__hero-subtitle {
            font-size: 1em;
        }
        .page-phbet-88-2__button {
            padding: 10px 20px;
            font-size: 0.9em;
        }
        .page-phbet-88-2__section-title {
            font-size: 1.6em;
        }
        .page-phbet-88-2__floating-buttons {
            bottom: 10px;
            right: 10px;
            width: calc(100% - 20px);
        }
        .page-phbet-88-2__floating-button {
            padding: 8px 12px;
            font-size: 0.85em;
        }
    }
  