
    /* Base styles for the page-986win container */
    .page-986win {
        font-family: 'Arial', sans-serif;
        color: #f0f0f0;
        background-color: #1a1a1a;
        line-height: 1.6;
        overflow-x: hidden;
        padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    /* Section titles */
    .page-986win__section-title {
        font-size: 2.5rem;
        color: #ffd700; /* Gold accent */
        text-align: center;
        margin-bottom: 1.5rem;
        padding-top: 20px;
        position: relative;
        z-index: 1;
    }

    .page-986win__section-title strong {
        color: #fff;
    }

    .page-986win__section-description {
        font-size: 1.1rem;
        color: #ccc;
        text-align: center;
        max-width: 800px;
        margin: 0 auto 3rem auto;
    }

    /* Buttons */
    .page-986win__button {
        display: inline-block;
        padding: 12px 25px;
        border-radius: 30px;
        font-size: 1.1rem;
        font-weight: bold;
        text-decoration: none;
        transition: all 0.3s ease;
        text-align: center;
        cursor: pointer;
        box-sizing: border-box; /* Ensure padding is included in width */
    }

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

    .page-986win__button--primary:hover {
        background-color: #e6c200;
        border-color: #e6c200;
    }

    .page-986win__button--secondary {
        background-color: transparent;
        color: #ffd700;
        border: 2px solid #ffd700;
        margin-left: 15px;
    }

    .page-986win__button--secondary:hover {
        background-color: #ffd700;
        color: #1a1a1a;
    }

    /* Hero Section */
    .page-986win__hero-section {
        position: relative;
        width: 100%;
        min-height: 600px; /* Adjusted for content and visual appeal */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        padding: 10px 20px 60px 20px; /* Add some padding at the bottom */
        box-sizing: border-box;
    }

    .page-986win__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
        opacity: 0.4; /* Darken image for better text contrast */
        max-width: 100%; /* Responsive image */
    }

    .page-986win__hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
        padding: 20px;
        background: rgba(0, 0, 0, 0.6); /* Semi-transparent background for text */
        border-radius: 10px;
    }

    .page-986win__hero-title {
        font-size: 3.5rem;
        color: #fff;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .page-986win__hero-title strong {
        color: #ffd700;
    }

    .page-986win__hero-subtitle {
        font-size: 1.3rem;
        color: #ccc;
        margin-bottom: 2rem;
    }

    .page-986win__hero-buttons {
        display: flex;
        justify-content: center;
        gap: 15px; /* Space between buttons */
    }

    /* Game Categories Section */
    .page-986win__game-categories {
        padding: 60px 20px;
        background-color: #222;
    }

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

    .page-986win__category-item {
        background-color: #2f2f2f;
        border-radius: 10px;
        overflow: hidden;
        text-align: center;
        padding-bottom: 20px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
    }

    .page-986win__category-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    }

    .page-986win__category-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        margin-bottom: 15px;
        max-width: 100%; /* Responsive image */
        box-sizing: border-box;
    }

    .page-986win__category-title {
        font-size: 1.8rem;
        color: #ffd700;
        margin-bottom: 10px;
    }

    .page-986win__category-text {
        font-size: 1rem;
        color: #ccc;
        padding: 0 15px;
    }

    /* Promotions Section */
    .page-986win__promotions-section {
        padding: 60px 20px;
        background-color: #1a1a1a;
    }

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

    .page-986win__promo-card {
        background-color: #2f2f2f;
        border-radius: 10px;
        overflow: hidden;
        text-align: center;
        padding-bottom: 20px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
    }

    .page-986win__promo-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    }

    .page-986win__promo-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
        margin-bottom: 15px;
        max-width: 100%; /* Responsive image */
        box-sizing: border-box;
    }

    .page-986win__promo-title {
        font-size: 1.6rem;
        color: #ffd700;
        margin-bottom: 10px;
        padding: 0 15px;
    }

    .page-986win__promo-text {
        font-size: 1rem;
        color: #ccc;
        padding: 0 15px;
        flex-grow: 1;
    }

    .page-986win__promo-button {
        display: inline-block;
        background-color: #007bff; /* Blue for action */
        color: #fff;
        padding: 10px 20px;
        border-radius: 25px;
        font-weight: bold;
        margin-top: 20px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .page-986win__promo-button:hover {
        background-color: #0056b3;
    }

    /* About Us Section */
    .page-986win__about-us {
        padding: 60px 20px;
        background-color: #222;
    }

    .page-986win__about-content {
        display: flex;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
        align-items: center;
    }

    .page-986win__about-image {
        flex: 1;
        max-width: 50%;
        height: auto;
        border-radius: 10px;
        object-fit: cover;
        max-width: 100%; /* Responsive image */
        box-sizing: border-box;
    }

    .page-986win__about-text {
        flex: 1;
        font-size: 1.1rem;
        color: #ccc;
    }

    .page-986win__about-text p {
        margin-bottom: 1rem;
    }

    .page-986win__about-text strong {
        color: #ffd700;
    }

    /* Game Providers and Payment Methods */
    .page-986win__game-providers,
    .page-986win__payment-methods {
        padding: 60px 20px;
        background-color: #1a1a1a;
    }

    .page-986win__game-providers {
        background-color: #2f2f2f; /* Slightly different background */
    }

    .page-986win__provider-grid,
    .page-986win__payment-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-986win__provider-item,
    .page-986win__payment-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #f0f0f0;
        font-size: 1rem;
        transition: transform 0.3s ease;
        text-align: center;
        width: 120px; /* Fixed width for items */
        box-sizing: border-box;
        padding: 10px;
        border-radius: 8px;
        background-color: #222; /* Background for each item */
    }

    .page-986win__provider-item:hover,
    .page-986win__payment-item:hover {
        transform: translateY(-5px);
        color: #ffd700;
    }

    .page-986win__provider-logo,
    .page-986win__payment-logo {
        width: 80px; /* Smaller logos for this section */
        height: 80px;
        object-fit: contain;
        margin-bottom: 10px;
        max-width: 100%; /* Responsive image */
        box-sizing: border-box;
    }

    /* FAQ Section */
    .page-986win__faq-section {
        padding: 60px 20px;
        background-color: #222;
    }

    .page-986win__faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .page-986win__faq-item {
        background-color: #2f2f2f;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-986win__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: #3a3a3a;
        cursor: pointer;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-986win__faq-question:hover {
        background-color: #4a4a4a;
    }

    .page-986win__faq-question-title {
        font-size: 1.2rem;
        color: #fff;
        margin: 0;
        pointer-events: none; /* Crucial for click event on parent */
    }

    .page-986win__faq-toggle {
        font-size: 1.5rem;
        color: #ffd700;
        font-weight: bold;
        transition: transform 0.3s ease;
        pointer-events: none; /* Crucial for click event on parent */
    }

    .page-986win__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px; /* Initial padding */
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        box-sizing: border-box;
    }

    .page-986win__faq-answer p {
        font-size: 1rem;
        color: #ccc;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .page-986win__faq-item.active .page-986win__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px !important; /* Ensure padding for content */
        opacity: 1;
    }

    .page-986win__faq-item.active .page-986win__faq-toggle {
        transform: rotate(45deg); /* Change '+' to 'X' or rotate for '-' */
    }

    /* Sticky Register/Login Buttons */
    .page-986win__sticky-buttons {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 15px;
        z-index: 1000;
        width: 100%; /* Ensure it takes full width for centering */
        max-width: 350px; /* Limit width on larger screens */
        padding: 0 20px;
        box-sizing: border-box;
    }

    .page-986win__sticky-button {
        flex: 1;
        display: block;
        padding: 12px 0;
        border-radius: 30px;
        font-size: 1.1rem;
        font-weight: bold;
        text-decoration: none;
        text-align: center;
        transition: all 0.3s ease;
        box-sizing: border-box;
    }

    .page-986win__sticky-button--register {
        background-color: #ffd700; /* Gold */
        color: #1a1a1a;
        border: 2px solid #ffd700;
    }

    .page-986win__sticky-button--register:hover {
        background-color: #e6c200;
        border-color: #e6c200;
    }

    .page-986win__sticky-button--login {
        background-color: transparent;
        color: #ffd700;
        border: 2px solid #ffd700;
    }

    .page-986win__sticky-button--login:hover {
        background-color: #ffd700;
        color: #1a1a1a;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
        .page-986win__hero-title {
            font-size: 3rem;
        }
        .page-986win__hero-subtitle {
            font-size: 1.2rem;
        }
        .page-986win__section-title {
            font-size: 2rem;
        }
        .page-986win__about-content {
            flex-direction: column;
            text-align: center;
        }
        .page-986win__about-image {
            max-width: 80%;
            margin-bottom: 30px;
        }
    }

    @media (max-width: 768px) {
        .page-986win__hero-section {
            min-height: 450px;
            padding-bottom: 40px;
        }
        .page-986win__hero-content {
            padding: 15px;
        }
        .page-986win__hero-title {
            font-size: 2.2rem;
        }
        .page-986win__hero-subtitle {
            font-size: 1rem;
        }
        .page-986win__hero-buttons {
            flex-direction: column;
            gap: 10px;
        }
        .page-986win__button {
            width: 100%;
            margin-left: 0;
        }
        .page-986win__button--secondary {
            margin-left: 0;
        }

        .page-986win__section-title {
            font-size: 1.8rem;
        }
        .page-986win__section-description {
            font-size: 0.95rem;
            margin-bottom: 2rem;
        }

        /* List items mobile responsive */
        .page-986win__category-grid,
        .page-986win__promo-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .page-986win__category-item,
        .page-986win__promo-card {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 0 !important; /* Reset item padding, use inner elements for padding */
        }
        .page-986win__category-item > *,
        .page-986win__promo-card > * {
            box-sizing: border-box !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        .page-986win__category-image,
        .page-986win__promo-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
            width: 100%; /* Ensure full width */
        }
        .page-986win__promo-title,
        .page-986win__category-title {
            font-size: 1.4rem;
            padding: 10px 15px;
        }
        .page-986win__promo-text,
        .page-986win__category-text {
            font-size: 0.9rem;
            padding: 0 15px;
        }

        .page-986win__about-image {
            max-width: 100%;
        }

        .page-986win__provider-grid,
        .page-986win__payment-grid {
            gap: 20px;
        }
        .page-986win__provider-item,
        .page-986win__payment-item {
            width: calc(50% - 10px); /* Two columns on mobile */
            padding: 5px;
            margin-bottom: 0 !important; /* Reset margin for grid layout */
        }
        .page-986win__provider-logo,
        .page-986win__payment-logo {
            width: 60px;
            height: 60px;
        }

        .page-986win__faq-question {
            padding: 12px 15px;
        }
        .page-986win__faq-question-title {
            font-size: 1.1rem;
        }
        .page-986win__faq-answer {
            padding: 0 15px;
        }
        .page-986win__faq-item.active .page-986win__faq-answer {
            padding: 15px !important;
        }
        .page-986win__faq-answer p {
            font-size: 0.95rem;
        }

        .page-986win__sticky-buttons {
            max-width: calc(100% - 40px); /* Account for padding */
            gap: 10px;
            bottom: 15px;
        }
        .page-986win__sticky-button {
            font-size: 1rem;
            padding: 10px 0;
        }
    }

    @media (max-width: 480px) {
        .page-986win__hero-title {
            font-size: 1.8rem;
        }
        .page-986win__hero-subtitle {
            font-size: 0.9rem;
        }
        .page-986win__section-title {
            font-size: 1.6rem;
        }
        .page-986win__provider-item,
        .page-986win__payment-item {
            width: 100%; /* One column on very small screens */
        }
    }
  