
    /* General Styling */
    .page-789win91 {
        font-family: 'Arial', sans-serif;
        color: #f0f0f0; /* Light text on dark background */
        background-color: #1a1a1a; /* Dark background */
        line-height: 1.6;
        padding-top: 10px; /* Small padding top for main content, assuming body padding-top handles header offset */
    }

    .page-789win91__section-title {
        font-size: 2.5em;
        color: #ffd700; /* Gold accent color */
        text-align: center;
        margin-bottom: 40px;
        padding-top: 40px;
        font-weight: bold;
    }

    .page-789win91__section-description {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 50px auto;
        font-size: 1.1em;
        color: #cccccc;
    }

    .page-789win91__button {
        display: inline-block;
        padding: 12px 25px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        transition: all 0.3s ease;
        text-align: center;
        white-space: nowrap;
    }

    .page-789win91__button--primary {
        background-color: #ffd700; /* Gold */
        color: #1a1a1a;
        border: 2px solid #ffd700;
    }

    .page-789win91__button--primary:hover {
        background-color: #e6c200;
        color: #000;
        transform: translateY(-2px);
    }

    .page-789win91__button--secondary {
        background-color: transparent;
        color: #ffd700;
        border: 2px solid #ffd700;
    }

    .page-789win91__button--secondary:hover {
        background-color: #ffd700;
        color: #1a1a1a;
        transform: translateY(-2px);
    }

    .page-789win91__button--large {
        padding: 15px 30px;
        font-size: 1.2em;
    }

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

    .page-789win91__floating-button {
        display: block;
        padding: 10px 20px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: bold;
        color: #1a1a1a;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        transition: transform 0.2s ease-in-out;
    }

    .page-789win91__floating-button--register {
        background-color: #007bff; /* Blue */
    }

    .page-789win91__floating-button--login {
        background-color: #28a745; /* Green */
    }

    .page-789win91__floating-button:hover {
        transform: translateY(-3px);
    }

    /* Hero Section */
    .page-789win91__hero-section {
        position: relative;
        padding: 80px 20px 60px; /* Adjusted padding */
        text-align: center;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 70vh;
        background: linear-gradient(135deg, #2c3e50, #1a1a1a); /* Dark gradient background */
    }

    .page-789win91__hero-content {
        max-width: 900px;
        z-index: 2;
        position: relative;
    }

    .page-789win91__main-title {
        font-size: 3.5em;
        color: #ffd700;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .page-789win91__tagline {
        font-size: 1.4em;
        color: #e0e0e0;
        margin-bottom: 40px;
    }

    .page-789win91__hero-cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .page-789win91__hero-image-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 1;
    }

    .page-789win91__hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.2; /* Slightly transparent background image */
        filter: blur(3px); /* Subtle blur */
    }

    /* Features Section */
    .page-789win91__features-section {
        padding: 60px 20px;
        background-color: #222;
    }

    .page-789win91__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-789win91__feature-item {
        background-color: #333;
        padding: 30px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease;
    }

    .page-789win91__feature-item:hover {
        transform: translateY(-10px);
        background-color: #444;
    }

    .page-789win91__feature-icon {
        width: 100px;
        height: 100px;
        object-fit: contain;
        margin-bottom: 20px;
        max-width: 100%;
        height: auto;
    }

    .page-789win91__feature-title {
        font-size: 1.6em;
        color: #ffd700;
        margin-bottom: 15px;
    }

    .page-789win91__feature-description {
        color: #ccc;
        font-size: 1em;
    }

    /* Games Section */
    .page-789win91__games-section {
        padding: 60px 20px;
        background-color: #1a1a1a;
    }

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

    .page-789win91__game-card {
        background-color: #222;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease;
        text-align: center;
    }

    .page-789win91__game-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-789win91__game-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        max-width: 100%;
    }

    .page-789win91__game-title {
        font-size: 1.5em;
        color: #ffd700;
        margin: 20px 15px 10px;
    }

    .page-789win91__game-description {
        color: #ccc;
        padding: 0 15px 20px;
        font-size: 0.95em;
    }

    /* Promotion Section */
    .page-789win91__promo-section {
        padding: 60px 20px;
        background-color: #222;
    }

    .page-789win91__promo-content {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        max-width: 1000px;
        margin: 0 auto;
        gap: 40px;
    }

    .page-789win91__promo-image {
        flex: 1 1 400px;
        max-width: 500px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        max-width: 100%;
        height: auto;
    }

    .page-789win91__promo-text {
        flex: 1 1 400px;
        max-width: 500px;
        text-align: left;
    }

    .page-789win91__promo-subtitle {
        font-size: 2em;
        color: #ffd700;
        margin-bottom: 20px;
    }

    .page-789win91__promo-description {
        font-size: 1.1em;
        color: #e0e0e0;
        margin-bottom: 30px;
    }

    /* Payment Section */
    .page-789win91__payment-section {
        padding: 60px 20px;
        background-color: #1a1a1a;
    }

    .page-789win91__payment-methods {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-789win91__payment-item {
        background-color: #222;
        border-radius: 10px;
        padding: 20px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        flex: 0 0 auto; /* Prevent stretching */
        width: 180px; /* Fixed width for better alignment */
        transition: transform 0.3s ease;
    }

    .page-789win91__payment-item:hover {
        transform: translateY(-5px);
        background-color: #333;
    }

    .page-789win91__payment-item a {
        text-decoration: none;
        color: inherit;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .page-789win91__payment-logo {
        width: 120px;
        height: 60px;
        object-fit: contain;
        margin-bottom: 10px;
        max-width: 100%;
        height: auto;
    }

    .page-789win91__payment-name {
        font-size: 1.1em;
        color: #f0f0f0;
        font-weight: bold;
    }

    /* Providers Section */
    .page-789win91__providers-section {
        padding: 60px 20px;
        background-color: #222;
    }

    .page-789win91__providers-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-789win91__provider-item {
        background-color: #333;
        border-radius: 10px;
        padding: 15px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        flex: 0 0 auto; /* Prevent stretching */
        width: 180px; /* Fixed width for better alignment */
        transition: transform 0.3s ease;
    }

    .page-789win91__provider-item:hover {
        transform: translateY(-5px);
        background-color: #444;
    }

    .page-789win91__provider-item a {
        text-decoration: none;
        color: inherit;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .page-789win91__provider-logo {
        width: 120px;
        height: 60px;
        object-fit: contain;
        margin-bottom: 10px;
        max-width: 100%;
        height: auto;
    }

    .page-789win91__provider-name {
        font-size: 1.1em;
        color: #f0f0f0;
        font-weight: bold;
    }

    /* FAQ Section */
    .page-789win91__faq-section {
        padding: 60px 20px;
        background-color: #1a1a1a;
    }

    .page-789win91__faq-list {
        max-width: 800px;
        margin: 0 auto;
    }

    .page-789win91__faq-item {
        background-color: #222;
        border-radius: 8px;
        margin-bottom: 15px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        border: 1px solid #333;
    }

    .page-789win91__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: #2c2c2c;
        border-radius: 8px;
        transition: background-color 0.3s ease;
    }

    .page-789win91__faq-question:hover {
        background-color: #3a3a3a;
    }

    .page-789win91__faq-question-text {
        margin: 0;
        font-size: 1.2em;
        color: #f0f0f0;
        font-weight: bold;
        pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-789win91__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: #ffd700;
        line-height: 1;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent span from blocking click */
    }

    .page-789win91__faq-item.active .page-789win91__faq-toggle {
        transform: rotate(0deg); /* No rotation for minus sign */
    }

    .page-789win91__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;
        background-color: #222;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }

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

    .page-789win91__faq-answer p {
        margin: 0;
        color: #ccc;
        font-size: 1em;
    }

    /* Contact CTA Section */
    .page-789win91__contact-cta-section {
        padding: 60px 20px 80px;
        background-color: #2c2c2c;
        text-align: center;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .page-789win91__main-title {
            font-size: 3em;
        }
        .page-789win91__tagline {
            font-size: 1.3em;
        }
        .page-789win91__promo-content {
            flex-direction: column;
            text-align: center;
        }
        .page-789win91__promo-text {
            text-align: center;
        }
    }

    @media (max-width: 768px) {
        .page-789win91__floating-buttons {
            bottom: 15px;
            right: 15px;
            flex-direction: row;
            gap: 8px;
        }
        .page-789win91__floating-button {
            padding: 8px 15px;
            font-size: 0.9em;
        }

        .page-789win91__main-title {
            font-size: 2.2em;
            margin-bottom: 15px;
        }
        .page-789win91__tagline {
            font-size: 1.1em;
            margin-bottom: 30px;
        }
        .page-789win91__hero-cta-buttons {
            flex-direction: column;
            gap: 15px;
        }
        .page-789win91__button {
            width: 100%;
            max-width: 250px;
            margin: 0 auto;
        }

        .page-789win91__section-title {
            font-size: 2em;
            margin-bottom: 30px;
        }
        .page-789win91__section-description {
            font-size: 1em;
            margin-bottom: 40px;
        }

        .page-789win91__features-grid,
        .page-789win91__games-grid {
            grid-template-columns: 1fr;
        }

        .page-789win91__feature-item,
        .page-789win91__game-card {
            margin: 0 auto;
            max-width: 350px;
        }

        .page-789win91__payment-methods,
        .page-789win91__providers-grid {
            gap: 20px;
        }
        .page-789win91__payment-item,
        .page-789win91__provider-item {
            width: 150px;
            padding: 15px;
        }
        .page-789win91__payment-logo,
        .page-789win91__provider-logo {
            width: 100px;
            height: 50px;
        }
        .page-789win91__payment-name,
        .page-789win91__provider-name {
            font-size: 0.9em;
        }

        .page-789win91__promo-image {
            max-width: 100%;
            height: auto;
        }
        .page-789win91__promo-subtitle {
            font-size: 1.6em;
        }
        .page-789win91__promo-description {
            font-size: 1em;
        }

        /* List item specific responsive requirements */
        .page-789win91__features-grid,
        .page-789win91__games-grid,
        .page-789win91__payment-methods,
        .page-789win91__providers-grid,
        .page-789win91__faq-list {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 15px !important; /* Adjust padding to prevent overflow */
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-789win91__feature-item,
        .page-789win91__game-card,
        .page-789win91__payment-item,
        .page-789win91__provider-item,
        .page-789win91__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-789win91__faq-question,
        .page-789win91__faq-answer {
            padding-left: 15px !important;
            padding-right: 15px !important;
        }
    }

    @media (max-width: 480px) {
        .page-789win91__main-title {
            font-size: 1.8em;
        }
        .page-789win91__tagline {
            font-size: 0.95em;
        }
        .page-789win91__section-title {
            font-size: 1.8em;
        }
        .page-789win91__promo-subtitle {
            font-size: 1.4em;
        }
    }
  