
    /* General styles for the page-99winn scope */
    .page-99winn {
        font-family: 'Arial', sans-serif;
        color: #f0f0f0; /* Light text for dark background */
        background-color: #1a1a1a; /* Dark background */
        line-height: 1.6;
        padding-bottom: 80px; /* Space for floating buttons */
    }

    /* Fixed navigation bar spacing: Use 10px padding-top for hero/first section */
    .page-99winn__hero-section {
        padding-top: 10px; /* As per fixed nav bar spacing requirement */
        padding-bottom: 40px;
        text-align: center;
        background-color: #222;
        color: #fff;
        position: relative;
        overflow: hidden;
    }

    .page-99winn__main-title {
        font-size: 2.5em;
        color: #ffcc00; /* Gold accent */
        margin-bottom: 15px;
        padding: 0 15px;
        word-wrap: break-word; /* Ensure long titles wrap */
    }

    .page-99winn__hero-description {
        font-size: 1.1em;
        max-width: 800px;
        margin: 0 auto 30px auto;
        padding: 0 15px;
    }

    .page-99winn__hero-cta {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .page-99winn__primary-button,
    .page-99winn__secondary-button {
        display: inline-block;
        padding: 12px 25px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, color 0.3s ease;
        white-space: nowrap; /* Prevent button text from wrapping too early */
    }

    .page-99winn__primary-button {
        background-color: #ffcc00; /* Gold accent */
        color: #1a1a1a;
        border: 2px solid #ffcc00;
    }

    .page-99winn__primary-button:hover {
        background-color: #e6b800;
        color: #000;
    }

    .page-99winn__secondary-button {
        background-color: transparent;
        color: #ffcc00;
        border: 2px solid #ffcc00;
    }

    .page-99winn__secondary-button:hover {
        background-color: #ffcc00;
        color: #1a1a1a;
    }

    .page-99winn__hero-image {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        object-fit: cover;
    }

    .page-99winn__section-title {
        font-size: 2em;
        color: #ffcc00;
        text-align: center;
        margin: 40px 0 30px 0;
        padding: 0 15px;
        word-wrap: break-word;
    }

    .page-99winn__section-description {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 30px auto;
        padding: 0 15px;
    }

    /* Product Section */
    .page-99winn__products-section {
        padding: 20px 0;
        background-color: #1a1a1a;
    }

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

    .page-99winn__product-card {
        background-color: #2a2a2a;
        border-radius: 10px;
        overflow: hidden;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-99winn__product-card:hover {
        transform: translateY(-5px);
    }

    .page-99winn__product-image {
        width: 100%;
        height: 200px; /* Fixed height for product images */
        object-fit: cover;
        display: block;
        max-width: 100%; /* Ensure responsiveness */
    }

    .page-99winn__product-title {
        font-size: 1.5em;
        color: #ffcc00;
        margin: 15px 0 10px 0;
        padding: 0 15px;
        word-wrap: break-word;
    }

    .page-99winn__product-description {
        font-size: 0.95em;
        color: #ccc;
        padding: 0 15px 20px 15px;
        flex-grow: 1; /* Ensure description takes available space */
    }

    /* Promotions Section */
    .page-99winn__promotions-section {
        padding: 40px 0;
        background-color: #222;
    }

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

    .page-99winn__promotion-card {
        background-color: #2a2a2a;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        text-align: center;
        display: flex;
        flex-direction: column;
        box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-99winn__promotion-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
        max-width: 100%; /* Ensure responsiveness */
    }

    .page-99winn__promotion-title {
        font-size: 1.4em;
        color: #ffcc00;
        margin: 15px 0 10px 0;
        padding: 0 15px;
        word-wrap: break-word;
    }

    .page-99winn__promotion-text {
        font-size: 0.9em;
        color: #ccc;
        padding: 0 15px 15px 15px;
        flex-grow: 1;
    }

    .page-99winn__promotion-button {
        background-color: #ff3366; /* Red accent */
        color: #fff;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        margin: 0 15px 20px 15px;
        transition: background-color 0.3s ease;
    }

    .page-99winn__promotion-button:hover {
        background-color: #e60039;
    }

    /* About Section */
    .page-99winn__about-section {
        padding: 40px 0;
        background-color: #1a1a1a;
    }

    .page-99winn__about-content {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .page-99winn__about-image {
        flex: 1;
        min-width: 300px;
        max-width: 500px;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        object-fit: cover;
        max-width: 100%; /* Ensure responsiveness */
    }

    .page-99winn__about-list {
        flex: 2;
        list-style: none;
        padding: 0;
        margin: 0;
        min-width: 300px;
    }

    .page-99winn__about-list-item {
        background-color: #2a2a2a;
        margin-bottom: 20px;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-99winn__list-item-title {
        font-size: 1.3em;
        color: #ffcc00;
        margin-top: 0;
        margin-bottom: 10px;
        word-wrap: break-word;
    }

    .page-99winn__list-item-description {
        color: #ccc;
        font-size: 0.95em;
    }

    /* News Section */
    .page-99winn__news-section {
        padding: 40px 0;
        background-color: #222;
    }

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

    .page-99winn__news-article {
        background-color: #2a2a2a;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        display: flex;
        flex-direction: column;
        box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-99winn__news-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
        max-width: 100%; /* Ensure responsiveness */
    }

    .page-99winn__article-title {
        font-size: 1.3em;
        color: #ffcc00;
        margin: 15px 15px 5px 15px;
        word-wrap: break-word;
    }

    .page-99winn__article-date {
        font-size: 0.85em;
        color: #999;
        margin: 0 15px 10px 15px;
    }

    .page-99winn__article-excerpt {
        font-size: 0.9em;
        color: #ccc;
        padding: 0 15px 20px 15px;
        flex-grow: 1;
    }

    /* Providers Section */
    .page-99winn__providers-section {
        padding: 40px 0;
        background-color: #1a1a1a;
    }

    .page-99winn__providers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Adjusted minmax for logos */
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        justify-items: center;
    }

    .page-99winn__provider-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #fff;
        background-color: #2a2a2a;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
        box-sizing: border-box; /* Crucial for responsiveness */
        width: 100%; /* Ensure it takes full grid column width */
        max-width: 220px; /* Limit max width for larger screens */
    }

    .page-99winn__provider-logo:hover {
        transform: translateY(-3px);
        background-color: #3a3a3a;
    }

    .page-99winn__provider-image {
        width: 100%;
        max-width: 150px; /* Max width for the logo image itself */
        height: auto;
        max-height: 80px; /* Ensure logos don't get too tall */
        object-fit: contain;
        margin-bottom: 10px;
        max-width: 100%; /* Ensure responsiveness */
    }

    .page-99winn__provider-name {
        font-size: 0.9em;
        color: #ffcc00;
        text-align: center;
        word-wrap: break-word;
    }

    /* FAQ Section */
    .page-99winn__faq-section {
        padding: 40px 0;
        background-color: #222;
    }

    .page-99winn__faq-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .page-99winn__faq-item {
        margin-bottom: 15px;
        border: 1px solid #333;
        border-radius: 8px;
        overflow: hidden;
        background-color: #2a2a2a;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-99winn__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
        background-color: #333;
        color: #ffcc00;
        font-weight: bold;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-99winn__faq-question:hover {
        background-color: #444;
    }

    .page-99winn__faq-question-text {
        margin: 0;
        font-size: 1.1em;
        pointer-events: none; /* Prevent text from blocking click event */
        word-wrap: break-word;
    }

    .page-99winn__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        margin-left: 15px;
        pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-99winn__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 15px;
        color: #ccc;
        background-color: #2a2a2a;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
    }

    .page-99winn__faq-answer p {
        margin: 15px 0;
        padding-right: 5px; /* Adjust for potential scrollbar */
    }

    .page-99winn__faq-item.active .page-99winn__faq-answer {
        max-height: 2000px !important; /* Sufficiently large value */
        padding: 20px 15px !important;
        opacity: 1;
    }

    .page-99winn__faq-item.active .page-99winn__faq-toggle {
        content: "−"; /* Changed by JS */
    }

    /* Floating Buttons */
    .page-99winn__floating-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-around;
        padding: 10px 0;
        background-color: rgba(0, 0, 0, 0.8);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-99winn__floating-button {
        flex: 1;
        text-align: center;
        padding: 12px 15px;
        margin: 0 5px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        color: #fff;
        transition: background-color 0.3s ease;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 1.1em;
    }

    .page-99winn__register-button {
        background-color: #ffcc00;
        color: #1a1a1a;
    }

    .page-99winn__register-button:hover {
        background-color: #e6b800;
    }

    .page-99winn__login-button {
        background-color: #b3003b; /* Darker red for better contrast */
        color: #fff;
    }

    .page-99winn__login-button:hover {
        background-color: #8a002c;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-99winn__main-title {
            font-size: 2em;
        }

        .page-99winn__hero-description {
            font-size: 1em;
        }

        .page-99winn__hero-cta {
            flex-direction: column;
            gap: 15px;
        }

        .page-99winn__primary-button,
        .page-99winn__secondary-button {
            width: calc(100% - 30px); /* Full width with padding */
            margin: 0 auto;
        }

        .page-99winn__section-title {
            font-size: 1.8em;
        }

        .page-99winn__products-grid,
        .page-99winn__promotions-grid,
        .page-99winn__news-grid,
        .page-99winn__providers-grid {
            grid-template-columns: 1fr; /* Stack items on mobile */
            padding: 0 15px;
        }

        .page-99winn__product-card,
        .page-99winn__promotion-card,
        .page-99winn__news-article,
        .page-99winn__provider-logo {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-99winn__about-content {
            flex-direction: column;
            gap: 20px;
            padding: 0 15px;
        }

        .page-99winn__about-image {
            min-width: unset;
            width: 100%;
        }

        .page-99winn__about-list {
            width: 100%;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
        }

        .page-99winn__about-list-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 15px; /* Adjust padding for mobile */
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        .page-99winn__faq-container {
            padding: 0 15px;
        }

        .page-99winn__faq-question {
            padding: 12px 15px;
        }

        .page-99winn__faq-question-text {
            font-size: 1em;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-99winn__faq-answer {
            padding: 0 15px;
        }

        .page-99winn__faq-item.active .page-99winn__faq-answer {
            padding: 15px !important;
        }

        .page-99winn__floating-button {
            font-size: 1em;
            padding: 10px 10px;
            margin: 0 3px;
        }
    }

    @media (max-width: 480px) {
        .page-99winn__main-title {
            font-size: 1.8em;
        }
        .page-99winn__section-title {
            font-size: 1.5em;
        }
        .page-99winn__floating-button {
            font-size: 0.9em;
            padding: 8px 8px;
        }
    }

    /* Ensure all images are responsive */
    .page-99winn img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    /* Ensure image containers are responsive */
    .page-99winn__hero-image,
    .page-99winn__product-image,
    .page-99winn__promotion-image,
    .page-99winn__about-image,
    .page-99winn__news-image,
    .page-99winn__provider-image {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    /* FAQ toggle icon color */
    .page-99winn__faq-toggle {
        color: #ffcc00; /* Ensure good contrast */
    }
  