
    :root {
        --page-28bet-22-vip-primary-color: #FFD700; /* Gold */
        --page-28bet-22-vip-secondary-color: #00BFFF; /* Deep Sky Blue */
        --page-28bet-22-vip-dark-bg: #1A1A1A;
        --page-28bet-22-vip-light-text: #F5F5F5;
        --page-28bet-22-vip-medium-gray: #333333;
        --page-28bet-22-vip-border-color: #444444;
    }

    .page-28bet-22-vip {
        font-family: 'Arial', sans-serif;
        color: var(--page-28bet-22-vip-light-text);
        background-color: var(--page-28bet-22-vip-dark-bg);
        line-height: 1.6;
        padding-top: 10px; /* Small decorative padding, assuming shared.css handles body padding-top */
    }

    .page-28bet-22-vip__section-title {
        font-size: 2.2rem;
        color: var(--page-28bet-22-vip-primary-color);
        text-align: center;
        margin-bottom: 25px;
        padding-top: 40px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .page-28bet-22-vip__section-description {
        font-size: 1.1rem;
        text-align: center;
        max-width: 800px;
        margin: 0 auto 40px auto;
        padding: 0 15px;
    }

    /* Buttons */
    .page-28bet-22-vip__button {
        display: inline-block;
        padding: 12px 25px;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: bold;
        text-align: center;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-decoration: none;
        box-sizing: border-box;
        border: none;
    }

    .page-28bet-22-vip__button--primary {
        background-color: var(--page-28bet-22-vip-primary-color);
        color: var(--page-28bet-22-vip-dark-bg);
    }

    .page-28bet-22-vip__button--primary:hover {
        background-color: #FFC400; /* Slightly darker gold */
        transform: translateY(-2px);
    }

    .page-28bet-22-vip__button--secondary {
        background-color: var(--page-28bet-22-vip-medium-gray);
        color: var(--page-28bet-22-vip-light-text);
        border: 1px solid var(--page-28bet-22-vip-border-color);
    }

    .page-28bet-22-vip__button--secondary:hover {
        background-color: #555555;
        transform: translateY(-2px);
    }

    .page-28bet-22-vip__button--external,
    .page-28bet-22-vip__button--download {
        background-color: var(--page-28bet-22-vip-secondary-color);
        color: var(--page-28bet-22-vip-dark-bg);
        margin-top: 20px;
    }

    .page-28bet-22-vip__button--external:hover,
    .page-28bet-22-vip__button--download:hover {
        background-color: #00A3EF; /* Slightly darker blue */
        transform: translateY(-2px);
    }

    .page-28bet-22-vip__button--large {
        padding: 15px 30px;
        font-size: 1.2rem;
    }

    /* Hero Section */
    .page-28bet-22-vip__hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 40px 15px;
        background: linear-gradient(135deg, var(--page-28bet-22-vip-medium-gray) 0%, var(--page-28bet-22-vip-dark-bg) 100%);
        min-height: 500px;
        position: relative;
        overflow: hidden;
    }

    .page-28bet-22-vip__hero-content {
        z-index: 1;
        max-width: 900px;
    }

    .page-28bet-22-vip__hero-title {
        font-size: 2.8rem;
        color: var(--page-28bet-22-vip-primary-color);
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .page-28bet-22-vip__hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 30px;
        color: var(--page-28bet-22-vip-light-text);
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-28bet-22-vip__hero-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
    }

    .page-28bet-22-vip__hero-image-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        opacity: 0.15; /* Subtly blend background image */
        z-index: 0;
    }

    .page-28bet-22-vip__hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        max-width: 100%; /* Ensure responsiveness */
        min-height: 200px; /* Minimum size */
    }

    /* About Section */
    .page-28bet-22-vip__about-section {
        padding: 60px 20px;
        background-color: var(--page-28bet-22-vip-dark-bg);
        text-align: center;
    }

    .page-28bet-22-vip__features-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 1000px;
        margin: 0 auto;
    }

    .page-28bet-22-vip__feature-item {
        background-color: var(--page-28bet-22-vip-medium-gray);
        padding: 30px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        box-sizing: border-box;
    }

    .page-28bet-22-vip__feature-icon {
        width: 250px; /* Minimum 200px, choosing 250 for feature images */
        height: 200px; /* Minimum 200px */
        object-fit: contain;
        margin-bottom: 20px;
        max-width: 100%; /* Responsive image */
        height: auto;
    }

    .page-28bet-22-vip__feature-title {
        font-size: 1.5rem;
        color: var(--page-28bet-22-vip-primary-color);
        margin-bottom: 10px;
    }

    .page-28bet-22-vip__feature-text {
        font-size: 1rem;
        color: var(--page-28bet-22-vip-light-text);
    }

    /* Games Section */
    .page-28bet-22-vip__games-section {
        padding: 60px 20px;
        background-color: var(--page-28bet-22-vip-medium-gray);
    }

    .page-28bet-22-vip__game-categories {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-28bet-22-vip__game-card {
        background-color: var(--page-28bet-22-vip-dark-bg);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        text-align: center;
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }

    .page-28bet-22-vip__game-card:hover {
        transform: translateY(-5px);
    }

    .page-28bet-22-vip__game-image {
        width: 100%;
        height: 250px; /* Fixed height for consistency, images will object-fit */
        object-fit: cover;
        max-width: 100%; /* Responsive image */
        height: auto; /* Allow auto height based on aspect ratio */
        min-height: 200px; /* Ensure minimum size */
    }

    .page-28bet-22-vip__game-title {
        font-size: 1.4rem;
        color: var(--page-28bet-22-vip-secondary-color);
        margin: 20px 15px 10px 15px;
    }

    .page-28bet-22-vip__game-text {
        font-size: 0.95rem;
        color: var(--page-28bet-22-vip-light-text);
        padding: 0 15px 20px 15px;
    }

    /* Promo Section */
    .page-28bet-22-vip__promo-section {
        padding: 60px 20px;
        background-color: var(--page-28bet-22-vip-dark-bg);
        text-align: center;
    }

    .page-28bet-22-vip__promo-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto 40px auto;
    }

    .page-28bet-22-vip__promo-card {
        background-color: var(--page-28bet-22-vip-medium-gray);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        text-align: center;
        box-sizing: border-box;
    }

    .page-28bet-22-vip__promo-image {
        width: 100%;
        height: 250px; /* Fixed height for consistency */
        object-fit: cover;
        max-width: 100%; /* Responsive image */
        height: auto; /* Allow auto height based on aspect ratio */
        min-height: 200px; /* Ensure minimum size */
    }

    .page-28bet-22-vip__promo-title {
        font-size: 1.4rem;
        color: var(--page-28bet-22-vip-primary-color);
        margin: 20px 15px 10px 15px;
    }

    .page-28bet-22-vip__promo-text {
        font-size: 0.95rem;
        color: var(--page-28bet-22-vip-light-text);
        padding: 0 15px 20px 15px;
    }

    /* Mobile Access Section */
    .page-28bet-22-vip__mobile-access-section {
        padding: 60px 20px;
        background-color: var(--page-28bet-22-vip-medium-gray);
        text-align: center;
    }

    .page-28bet-22-vip__mobile-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        max-width: 1000px;
        margin: 0 auto;
    }

    .page-28bet-22-vip__mobile-image {
        width: 100%;
        max-width: 400px;
        height: auto;
        border-radius: 15px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
        min-height: 200px; /* Ensure minimum size */
    }

    .page-28bet-22-vip__mobile-text-content {
        text-align: left;
    }

    .page-28bet-22-vip__mobile-text-content p {
        margin-bottom: 20px;
        font-size: 1.1rem;
    }

    .page-28bet-22-vip__mobile-text-content ul {
        list-style: none;
        padding: 0;
        margin: 0 0 20px 0;
    }

    .page-28bet-22-vip__mobile-text-content li {
        margin-bottom: 10px;
        padding-left: 25px;
        position: relative;
        font-size: 1rem;
        box-sizing: border-box; /* Required for list items */
        word-wrap: break-word; /* Required for list items */
        overflow-wrap: break-word; /* Required for list items */
    }

    .page-28bet-22-vip__mobile-text-content li::before {
        content: '✓';
        color: var(--page-28bet-22-vip-secondary-color);
        position: absolute;
        left: 0;
        font-weight: bold;
    }

    .page-28bet-22-vip__list-strong {
        color: var(--page-28bet-22-vip-primary-color);
    }

    /* FAQ Section */
    .page-28bet-22-vip__faq-section {
        padding: 60px 20px;
        background-color: var(--page-28bet-22-vip-dark-bg);
    }

    .page-28bet-22-vip__faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .page-28bet-22-vip__faq-item {
        background-color: var(--page-28bet-22-vip-medium-gray);
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-28bet-22-vip__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: #2a2a2a;
        cursor: pointer;
        user-select: none;
        border-bottom: 1px solid var(--page-28bet-22-vip-border-color);
        transition: background-color 0.3s ease;
    }

    .page-28bet-22-vip__faq-question:hover {
        background-color: #3a3a3a;
    }

    .page-28bet-22-vip__faq-question-text {
        font-size: 1.1rem;
        color: var(--page-28bet-22-vip-light-text);
        margin: 0;
        pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-28bet-22-vip__faq-toggle {
        font-size: 1.5rem;
        font-weight: bold;
        color: var(--page-28bet-22-vip-primary-color);
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent span from blocking click on parent */
    }

    .page-28bet-22-vip__faq-item.active .page-28bet-22-vip__faq-toggle {
        transform: rotate(45deg); /* Change '+' to 'x' visually */
        color: var(--page-28bet-22-vip-secondary-color);
    }

    .page-28bet-22-vip__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        background-color: var(--page-28bet-22-vip-medium-gray);
        color: var(--page-28bet-22-vip-light-text);
    }

    .page-28bet-22-vip__faq-item.active .page-28bet-22-vip__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px !important;
        opacity: 1;
    }

    .page-28bet-22-vip__faq-answer p {
        margin: 0;
        font-size: 1rem;
    }

    /* Call to Action Section */
    .page-28bet-22-vip__call-to-action {
        padding: 60px 20px;
        background-color: #2a2a2a;
        text-align: center;
        border-top: 1px solid var(--page-28bet-22-vip-border-color);
    }

    /* Floating Buttons */
    .page-28bet-22-vip__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 1000;
    }

    .page-28bet-22-vip__floating-button {
        display: block;
        padding: 10px 20px;
        border-radius: 50px;
        font-size: 1rem;
        font-weight: bold;
        text-align: center;
        text-decoration: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
        transition: transform 0.2s ease, background-color 0.3s ease;
    }

    .page-28bet-22-vip__floating-button--register {
        background-color: var(--page-28bet-22-vip-primary-color);
        color: var(--page-28bet-22-vip-dark-bg);
    }

    .page-28bet-22-vip__floating-button--register:hover {
        background-color: #FFC400;
        transform: translateY(-2px);
    }

    .page-28bet-22-vip__floating-button--login {
        background-color: var(--page-28bet-22-vip-secondary-color);
        color: var(--page-28bet-22-vip-dark-bg);
    }

    .page-28bet-22-vip__floating-button--login:hover {
        background-color: #00A3EF;
        transform: translateY(-2px);
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
        .page-28bet-22-vip__hero-title {
            font-size: 2.4rem;
        }
        .page-28bet-22-vip__hero-subtitle {
            font-size: 1.1rem;
        }
    }

    @media (max-width: 768px) {
        .page-28bet-22-vip__hero-section {
            padding: 30px 15px;
            min-height: 400px;
        }
        .page-28bet-22-vip__hero-title {
            font-size: 2rem;
        }
        .page-28bet-22-vip__hero-subtitle {
            font-size: 1rem;
        }
        .page-28bet-22-vip__hero-buttons {
            flex-direction: column;
            gap: 15px;
        }
        .page-28bet-22-vip__button {
            width: 100%;
            max-width: 250px; /* Constrain width for smaller screens */
            margin: 0 auto;
        }

        .page-28bet-22-vip__section-title {
            font-size: 1.8rem;
        }
        .page-28bet-22-vip__section-description {
            font-size: 1rem;
        }

        .page-28bet-22-vip__features-grid,
        .page-28bet-22-vip__game-categories,
        .page-28bet-22-vip__promo-grid {
            grid-template-columns: 1fr;
        }

        .page-28bet-22-vip__mobile-content {
            flex-direction: column;
        }

        .page-28bet-22-vip__mobile-text-content {
            text-align: center;
        }
        .page-28bet-22-vip__mobile-text-content p {
            font-size: 1rem;
        }
        .page-28bet-22-vip__mobile-text-content ul {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 15px !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            text-align: left; /* Align list items left within the centered container */
        }
        .page-28bet-22-vip__mobile-text-content li {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            font-size: 0.95rem;
            padding-left: 25px; /* Keep icon spacing */
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-28bet-22-vip__faq-question-text {
            font-size: 1rem;
        }

        .page-28bet-22-vip__faq-answer {
            padding: 0 15px; /* Adjust padding for mobile */
        }
        .page-28bet-22-vip__faq-item.active .page-28bet-22-vip__faq-answer {
            padding: 15px !important; /* Adjust padding for mobile */
        }

        .page-28bet-22-vip__floating-buttons {
            bottom: 15px;
            right: 15px;
            gap: 8px;
        }
        .page-28bet-22-vip__floating-button {
            padding: 8px 15px;
            font-size: 0.9rem;
        }
    }

    @media (max-width: 480px) {
        .page-28bet-22-vip__hero-title {
            font-size: 1.8rem;
        }
        .page-28bet-22-vip__section-title {
            font-size: 1.6rem;
        }
        .page-28bet-22-vip__hero-buttons {
            flex-direction: column;
            gap: 10px;
        }
        .page-28bet-22-vip__button {
            padding: 10px 20px;
            font-size: 0.95rem;
        }
    }
  