
    /* CSS for .page-win-456 */
    .page-win-456 {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #f0f0f0; /* Light text for dark background */
        background-color: #1a1a2e; /* Dark background */
        line-height: 1.6;
        padding-top: 10px; /* Small decorative padding-top, assuming body already has header offset */
    }

    /* Container for consistent content width */
    .page-win-456__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        box-sizing: border-box;
    }

    /* Section styling */
    .page-win-456__hero-section,
    .page-win-456__intro-section,
    .page-win-456__products-section,
    .page-win-456__providers-section,
    .page-win-456__features-section,
    .page-win-456__payments-section,
    .page-win-456__faq-section,
    .page-win-456__cta-section {
        padding: 60px 0;
        text-align: center;
    }

    .page-win-456__hero-section {
        background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('[GALLERY:hero:1920x1080:gaming,abstract,background]') no-repeat center center/cover;
        min-height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        padding-top: calc(var(--header-offset, 0px) + 10px); /* Add a small decorative padding-top */
    }

    .page-win-456__hero-content {
        max-width: 800px;
        padding: 20px;
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 10px;
    }

    .page-win-456__brand-keyword {
        font-size: 3.5em;
        font-weight: bold;
        color: #e6b800; /* Gold color for brand */
        margin-bottom: 10px;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }

    .page-win-456__hero-tagline {
        font-size: 1.5em;
        color: #fff;
        margin-bottom: 30px;
    }

    .page-win-456__hero-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .page-win-456__button {
        padding: 15px 30px;
        border: none;
        border-radius: 5px;
        font-size: 1.1em;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-decoration: none; /* Ensure no underline for button-like elements */
        display: inline-block; /* For proper padding and sizing */
        color: #1a1a2e; /* Default button text color */
    }

    .page-win-456__button--primary {
        background-color: #e6b800; /* Gold */
        color: #1a1a2e;
    }

    .page-win-456__button--primary:hover {
        background-color: #ffcc00;
        transform: translateY(-2px);
    }

    .page-win-456__button--secondary {
        background-color: #333;
        color: #e6b800;
        border: 1px solid #e6b800;
    }

    .page-win-456__button--secondary:hover {
        background-color: #555;
        transform: translateY(-2px);
    }

    /* Floating Register/Login Buttons */
    .page-win-456__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 1000;
    }

    .page-win-456__floating-button {
        padding: 12px 20px;
        border: none;
        border-radius: 25px;
        font-size: 1em;
        font-weight: bold;
        cursor: pointer;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-win-456__floating-button--register {
        background-color: #e6b800;
        color: #1a1a2e;
    }

    .page-win-456__floating-button--register:hover {
        background-color: #ffcc00;
        transform: scale(1.05);
    }

    .page-win-456__floating-button--login {
        background-color: #333;
        color: #e6b800;
        border: 1px solid #e6b800;
    }

    .page-win-456__floating-button--login:hover {
        background-color: #555;
        transform: scale(1.05);
    }


    .page-win-456__section-title {
        font-size: 2.5em;
        color: #e6b800;
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 10px;
    }

    .page-win-456__section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: #e6b800;
    }

    .page-win-456__text-content {
        font-size: 1.1em;
        max-width: 800px;
        margin: 0 auto 40px auto;
        color: #ccc;
    }

    .page-win-456__intro-image {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        margin-top: 20px;
    }

    /* Product Grid */
    .page-win-456__products-section {
        background-color: #242440;
    }

    .page-win-456__product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-win-456__product-item {
        background-color: #1a1a2e;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-win-456__product-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-win-456__product-item img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 15px;
        box-sizing: border-box; /* Ensures padding and border are included in the element's total width and height */
    }

    .page-win-456__product-title {
        font-size: 1.5em;
        color: #e6b800;
        margin-bottom: 10px;
    }

    .page-win-456__product-description {
        color: #aaa;
        font-size: 0.95em;
    }

    /* Providers Section */
    .page-win-456__providers-section {
        background-color: #1a1a2e;
    }

    .page-win-456__providers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
        margin-top: 40px;
        align-items: center;
        justify-items: center;
    }

    .page-win-456__provider-item {
        background-color: #242440;
        padding: 15px;
        border-radius: 8px;
        text-align: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        box-sizing: border-box;
    }

    .page-win-456__provider-item img {
        max-width: 100%;
        height: auto;
        max-height: 60px; /* Limit height for logos */
        object-fit: contain;
        margin-bottom: 10px;
        box-sizing: border-box;
    }

    .page-win-456__provider-item p {
        font-size: 0.9em;
        color: #e6b800;
        font-weight: bold;
    }

    /* Features Section */
    .page-win-456__features-section {
        background-color: #242440;
    }

    .page-win-456__feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-win-456__feature-item {
        background-color: #1a1a2e;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        text-align: center;
        transition: transform 0.3s ease;
    }

    .page-win-456__feature-item:hover {
        transform: translateY(-5px);
    }

    .page-win-456__feature-item img {
        max-width: 100%;
        height: auto;
        max-height: 120px; /* Adjust size for feature icons */
        margin-bottom: 20px;
        box-sizing: border-box;
    }

    .page-win-456__feature-title {
        font-size: 1.4em;
        color: #e6b800;
        margin-bottom: 10px;
    }

    .page-win-456__feature-description {
        color: #aaa;
        font-size: 0.95em;
    }

    /* Payments Section */
    .page-win-456__payments-section {
        background-color: #1a1a2e;
    }

    .page-win-456__payment-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-top: 40px;
        align-items: center;
        justify-items: center;
    }

    .page-win-456__payment-item {
        background-color: #242440;
        padding: 15px;
        border-radius: 8px;
        text-align: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        box-sizing: border-box;
    }

    .page-win-456__payment-item img {
        max-width: 100%;
        height: auto;
        max-height: 50px; /* Limit height for payment logos */
        object-fit: contain;
        margin-bottom: 10px;
        box-sizing: border-box;
    }

    .page-win-456__payment-item p {
        font-size: 0.9em;
        color: #fff;
    }

    /* FAQ Section */
    .page-win-456__faq-section {
        background-color: #242440;
    }

    .page-win-456__faq-list {
        max-width: 900px;
        margin: 40px auto 0 auto;
        text-align: left;
    }

    .page-win-456__faq-item {
        background-color: #1a1a2e;
        margin-bottom: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        overflow: hidden;
    }

    .page-win-456__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 25px;
        cursor: pointer;
        background-color: #2c2c4a;
        color: #e6b800;
        font-weight: bold;
        font-size: 1.1em;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-win-456__faq-question:hover {
        background-color: #3a3a60;
    }

    .page-win-456__faq-title {
        margin: 0;
        flex-grow: 1;
        pointer-events: none; /* Crucial for click event on parent */
        color: #e6b800;
    }

    .page-win-456__faq-toggle {
        font-size: 1.5em;
        margin-left: 15px;
        transition: transform 0.3s ease;
        pointer-events: none; /* Crucial for click event on parent */
        color: #e6b800;
    }

    .page-win-456__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;
        color: #ccc;
    }

    .page-win-456__faq-answer p {
        margin: 0;
        padding-bottom: 15px; /* Padding for the paragraph itself */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    .page-win-456__faq-item.active .page-win-456__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px 25px !important; /* Expanded padding */
        opacity: 1;
    }

    .page-win-456__faq-item.active .page-win-456__faq-toggle {
        transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    /* Call to Action Section */
    .page-win-456__cta-section {
        background-color: #1a1a2e;
        padding-bottom: 80px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-win-456__hero-section {
            min-height: 400px;
            padding-top: calc(var(--header-offset, 0px) + 10px);
        }

        .page-win-456__brand-keyword {
            font-size: 2.5em;
        }

        .page-win-456__hero-tagline {
            font-size: 1.2em;
        }

        .page-win-456__hero-buttons {
            flex-direction: column;
            gap: 15px;
        }

        .page-win-456__button {
            width: 80%;
            margin: 0 auto;
            padding: 12px 20px;
            font-size: 1em;
        }

        .page-win-456__section-title {
            font-size: 2em;
            margin-bottom: 25px;
        }

        .page-win-456__text-content {
            font-size: 1em;
            margin-bottom: 30px;
        }

        /* General image responsiveness */
        .page-win-456 img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        /* Grid items responsiveness */
        .page-win-456__product-grid,
        .page-win-456__providers-grid,
        .page-win-456__features-grid,
        .page-win-456__payment-grid {
            grid-template-columns: 1fr; /* Stack items on small screens */
            gap: 20px;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 15px !important; /* Adjust padding to avoid excessive spacing */
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-win-456__product-item,
        .page-win-456__provider-item,
        .page-win-456__feature-item,
        .page-win-456__payment-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 20px !important; /* Adjust padding for mobile */
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        .page-win-456__faq-question {
            padding: 15px 20px;
            font-size: 1em;
        }

        .page-win-456__faq-answer {
            padding: 0 20px;
        }

        .page-win-456__faq-item.active .page-win-456__faq-answer {
            padding: 15px 20px !important;
        }

        .page-win-456__floating-buttons {
            bottom: 15px;
            right: 15px;
            gap: 8px;
        }

        .page-win-456__floating-button {
            padding: 10px 18px;
            font-size: 0.9em;
        }
    }
  