
    /* CSS Styles for page-789win */
    :root {
        --page-789win__primary-color: #e02b2b; /* A vibrant red for action */
        --page-789win__secondary-color: #f7b731; /* Golden yellow for highlights */
        --page-789win__dark-background: #1a1a1a;
        --page-789win__light-text: #ffffff;
        --page-789win__dark-text: #333333;
        --page-789win__border-color: #444;
        --page-789win__card-background: #2a2a2a;
        --page-789win__hover-color: #ff4d4d;
    }

    .page-789win {
        font-family: 'Arial', sans-serif;
        color: var(--page-789win__light-text);
        background-color: var(--page-789win__dark-background);
        line-height: 1.6;
        padding-bottom: 80px; /* Space for floating button */
    }

    .page-789win__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .page-789win__hero-section {
        position: relative;
        text-align: center;
        padding: 10px 0 40px; /* Add padding-top for fixed header */
        background-color: #000;
        overflow: hidden;
    }

    .page-789win__hero-background {
        width: 100%;
        height: auto;
        max-height: 500px;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        opacity: 0.6;
    }

    .page-789win__hero-content {
        position: relative;
        z-index: 2;
        padding: 20px 15px;
    }

    .page-789win__hero-title {
        font-size: 2.8em;
        color: var(--page-789win__secondary-color);
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-789win__hero-subtitle {
        font-size: 1.2em;
        color: var(--page-789win__light-text);
        margin-bottom: 30px;
    }

    .page-789win__cta-button {
        display: inline-block;
        padding: 15px 30px;
        background-color: var(--page-789win__primary-color);
        color: var(--page-789win__light-text);
        border: none;
        border-radius: 8px;
        font-size: 1.1em;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-decoration: none;
    }

    .page-789win__cta-button:hover {
        background-color: var(--page-789win__hover-color);
        transform: translateY(-2px);
    }

    .page-789win__floating-button {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        background: linear-gradient(90deg, var(--page-789win__primary-color) 0%, #ff6f61 100%);
        color: var(--page-789win__light-text);
        padding: 15px 25px;
        border-radius: 30px;
        font-size: 1.1em;
        font-weight: bold;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        animation: page-789win__pulse 2s infinite;
        text-decoration: none;
        white-space: nowrap;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .page-789win__floating-button:hover {
        background: linear-gradient(90deg, #ff6f61 0%, var(--page-789win__primary-color) 100%);
        animation: none;
    }

    @keyframes page-789win__pulse {
        0% { transform: translateX(-50%) scale(1); }
        50% { transform: translateX(-50%) scale(1.05); }
        100% { transform: translateX(-50%) scale(1); }
    }

    .page-789win__section {
        padding: 40px 0;
        border-bottom: 1px solid var(--page-789win__border-color);
    }

    .page-789win__section:last-of-type {
        border-bottom: none;
    }

    .page-789win__section-title {
        font-size: 2em;
        color: var(--page-789win__secondary-color);
        text-align: center;
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 10px;
    }

    .page-789win__section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background-color: var(--page-789win__primary-color);
        border-radius: 2px;
    }

    .page-789win__text-content {
        font-size: 1.1em;
        margin-bottom: 20px;
        text-align: justify;
    }

    .page-789win__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .page-789win__game-card {
        background-color: var(--page-789win__card-background);
        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: center;
    }

    .page-789win__game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .page-789win__game-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }

    .page-789win__game-info {
        padding: 20px;
    }

    .page-789win__game-title {
        font-size: 1.4em;
        color: var(--page-789win__secondary-color);
        margin-bottom: 10px;
    }

    .page-789win__game-description {
        font-size: 0.95em;
        color: #ccc;
    }

    .page-789win__promo-list {
        list-style: none;
        padding: 0;
        margin-top: 20px;
    }

    .page-789win__promo-item {
        background-color: var(--page-789win__card-background);
        margin-bottom: 15px;
        padding: 20px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    }

    .page-789win__promo-icon {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 50%;
        flex-shrink: 0;
    }

    .page-789win__promo-content h3 {
        color: var(--page-789win__primary-color);
        margin-top: 0;
        margin-bottom: 5px;
        font-size: 1.3em;
    }

    .page-789win__promo-content p {
        margin: 0;
        color: #ddd;
    }

    .page-789win__steps-list {
        list-style: none;
        padding: 0;
        counter-reset: step-counter;
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-789win__step-item {
        background-color: var(--page-789win__card-background);
        padding: 25px;
        border-radius: 10px;
        position: relative;
        padding-left: 70px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    }

    .page-789win__step-item::before {
        counter-increment: step-counter;
        content: counter(step-counter);
        position: absolute;
        left: 20px;
        top: 20px;
        background-color: var(--page-789win__primary-color);
        color: var(--page-789win__light-text);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5em;
        font-weight: bold;
    }

    .page-789win__step-item h3 {
        color: var(--page-789win__secondary-color);
        margin-top: 0;
        margin-bottom: 10px;
        font-size: 1.4em;
    }

    .page-789win__step-item p {
        color: #ddd;
        margin: 0;
    }

    .page-789win__download-grid {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
        margin-top: 30px;
    }

    .page-789win__download-card {
        background-color: var(--page-789win__card-background);
        border-radius: 10px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        width: 280px;
        flex-shrink: 0;
    }

    .page-789win__download-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
        object-fit: contain;
    }

    .page-789win__download-card h3 {
        color: var(--page-789win__primary-color);
        font-size: 1.5em;
        margin-bottom: 10px;
    }

    .page-789win__download-card p {
        color: #ccc;
        margin-bottom: 20px;
    }

    .page-789win__qr-code {
        width: 150px;
        height: 150px;
        object-fit: contain;
        margin-top: 15px;
    }

    .page-789win__faq-list {
        margin-top: 30px;
    }

    .page-789win__faq-item {
        background-color: var(--page-789win__card-background);
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    }

    .page-789win__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
        background-color: #333;
        border-bottom: 1px solid var(--page-789win__border-color);
        transition: background-color 0.3s ease;
    }

    .page-789win__faq-question:hover {
        background-color: #444;
    }

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

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

    .page-789win__faq-item.active .page-789win__faq-toggle {
        transform: rotate(45deg); /* Change + to X or - visual */
        color: var(--page-789win__light-text);
    }

    .page-789win__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: #ddd;
    }

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

    .page-789win__contact-info {
        text-align: center;
        font-size: 1.1em;
    }

    .page-789win__contact-info p {
        margin-bottom: 10px;
    }

    .page-789win__contact-info strong {
        color: var(--page-789win__secondary-color);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-789win__hero-section {
            padding-top: 10px; /* Adjust for mobile fixed header */
        }
        .page-789win__hero-title {
            font-size: 2em;
        }
        .page-789win__hero-subtitle {
            font-size: 1em;
        }
        .page-789win__section-title {
            font-size: 1.8em;
        }
        .page-789win__game-grid {
            grid-template-columns: 1fr;
        }
        .page-789win__promo-item {
            flex-direction: column;
            text-align: center;
        }
        .page-789win__promo-icon {
            margin-bottom: 10px;
        }
        .page-789win__step-item {
            padding-left: 20px; /* Adjust padding for smaller screens */
            padding-top: 60px;
        }
        .page-789win__step-item::before {
            left: 50%;
            top: 15px;
            transform: translateX(-50%);
        }
        .page-789win__download-grid {
            gap: 20px;
        }
        .page-789win__download-card {
            width: 100%;
            max-width: 300px;
        }
        .page-789win__floating-button {
            width: calc(100% - 40px);
            max-width: 350px;
            font-size: 1em;
            padding: 12px 20px;
        }

        /* Responsive image optimization */
        .page-789win img {
            max-width: 100% !important;
            height: auto !important;
            display: block !important; /* Ensure block display for proper width handling */
        }
        .page-789win__game-image,
        .page-789win__promo-icon,
        .page-789win__download-icon,
        .page-789win__qr-code,
        .page-789win__hero-background {
            width: 100% !important;
            height: auto !important;
            max-width: 100% !important;
            object-fit: cover !important; /* Maintain aspect ratio and cover */
        }
    }
    @media (max-width: 480px) {
        .page-789win__hero-title {
            font-size: 1.8em;
        }
        .page-789win__section-title {
            font-size: 1.6em;
        }
        .page-789win__cta-button {
            padding: 12px 25px;
            font-size: 1em;
        }
    }
  