
    .page-666win {
        font-family: 'Arial', sans-serif;
        background-color: #1a1a2e; /* Primary dark background */
        color: #e0e0e0; /* Light text color */
        line-height: 1.6;
        padding-bottom: 80px; /* Space for floating buttons */
        /* Fallback for header offset if shared.css doesn't provide body padding-top */
        padding-top: var(--header-offset, 122px);
    }

    .page-666win__section-title {
        font-size: 2.5em;
        text-align: center;
        color: #e94560; /* Accent color */
        margin-bottom: 40px;
        padding-top: 20px;
        font-weight: bold;
    }

    .page-666win__section-title strong {
        color: #ffdd00;
    }

    .page-666win__button {
        display: inline-block;
        padding: 12px 25px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-align: center;
        white-space: nowrap;
        cursor: pointer;
        border: none;
    }

    .page-666win__button--primary {
        background-color: #e94560; /* Accent color */
        color: #ffffff;
    }

    .page-666win__button--primary:hover {
        background-color: #ff6f8a;
        transform: translateY(-2px);
    }

    .page-666win__button--secondary {
        background-color: #0f3460; /* Darker blue */
        color: #e0e0e0;
        border: 1px solid #e94560;
    }

    .page-666win__button--secondary:hover {
        background-color: #1a4a7e;
        transform: translateY(-2px);
    }

    .page-666win__button--details {
        background-color: transparent;
        color: #e94560;
        border: 1px solid #e94560;
        padding: 8px 15px;
        font-size: 0.9em;
    }

    .page-666win__button--details:hover {
        background-color: #e94560;
        color: #ffffff;
    }

    .page-666win__button--large {
        padding: 15px 35px;
        font-size: 1.2em;
    }

    /* Floating Buttons */
    .page-666win__floating-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-around;
        padding: 10px 0;
        background-color: rgba(26, 26, 46, 0.9); /* Semi-transparent dark background */
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-666win__floating-buttons .page-666win__button {
        flex: 1;
        margin: 0 5px;
        font-size: 1.1em;
    }

    /* Hero Section */
    .page-666win__hero-section {
        position: relative;
        display: flex;
        flex-direction: column; /* Default to column for mobile */
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 10px 20px 60px; /* Small padding-top, larger padding-bottom */
        background-color: #1a1a2e;
        overflow: hidden;
        min-height: 500px;
    }

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

    .page-666win__hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3; /* Subtle background image */
        max-width: 100%; /* Responsive image */
        box-sizing: border-box;
    }

    .page-666win__hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
        padding: 20px;
        background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for readability */
        border-radius: 15px;
    }

    .page-666win__brand-title {
        font-size: 4.5em;
        color: #ffdd00; /* Bright gold for brand name */
        margin-bottom: 10px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        font-weight: 900;
        letter-spacing: 2px;
    }

    .page-666win__hero-subtitle {
        font-size: 1.8em;
        color: #e0e0e0;
        margin-bottom: 20px;
    }

    .page-666win__hero-promo {
        font-size: 1.2em;
        margin-bottom: 30px;
        color: #ffffff;
    }

    /* Product Display Section */
    .page-666win__product-section,
    .page-666win__promotions-section,
    .page-666win__features-section,
    .page-666win__providers-section,
    .page-666win__faq-section,
    .page-666win__cta-section {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .page-666win__game-categories {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
        justify-content: center;
    }

    .page-666win__game-card {
        background-color: #2a2a4a; /* Secondary dark background */
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-bottom: 20px;
    }

    .page-666win__game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

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

    .page-666win__game-title {
        font-size: 1.8em;
        color: #ffdd00;
        margin-bottom: 10px;
    }

    .page-666win__game-description {
        font-size: 1em;
        color: #c0c0c0;
        padding: 0 15px;
    }

    /* Promotions Section */
    .page-666win__promo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
        justify-content: center;
    }

    .page-666win__promo-card {
        background-color: #2a2a4a;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-bottom: 20px;
    }

    .page-666win__promo-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

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

    .page-666win__promo-title {
        font-size: 1.6em;
        color: #e94560;
        margin-bottom: 10px;
        padding: 0 15px;
    }

    .page-666win__promo-description {
        font-size: 1em;
        color: #c0c0c0;
        margin-bottom: 20px;
        padding: 0 15px;
    }

    /* Features Section */
    .page-666win__feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-666win__feature-item {
        background-color: #2a2a4a;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        text-align: center;
        transition: background-color 0.3s ease;
    }

    .page-666win__feature-item:hover {
        background-color: #3a3a5a;
    }

    .page-666win__feature-icon {
        width: 100px;
        height: 100px;
        object-fit: contain;
        margin-bottom: 20px;
        max-width: 100%; /* Responsive image */
        box-sizing: border-box;
    }

    .page-666win__feature-title {
        font-size: 1.5em;
        color: #ffdd00;
        margin-bottom: 10px;
    }

    .page-666win__feature-description {
        font-size: 1em;
        color: #c0c0c0;
    }

    /* Providers Section */
    .page-666win__provider-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-top: 40px;
        align-items: center;
        justify-content: center;
    }

    .page-666win__provider-logo {
        background-color: #2a2a4a;
        border-radius: 8px;
        padding: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    }

    .page-666win__provider-image {
        max-width: 100%;
        max-height: 70px;
        object-fit: contain;
        filter: grayscale(80%) brightness(1.2); /* Make logos blend in, but not change color */
        transition: filter 0.3s ease;
        box-sizing: border-box;
    }

    .page-666win__provider-image:hover {
        filter: grayscale(0%) brightness(1); /* Full color on hover */
    }

    /* FAQ Section */
    .page-666win__faq-container {
        margin-top: 40px;
        text-align: left;
    }

    .page-666win__faq-item {
        background-color: #2a2a4a;
        border-radius: 12px;
        margin-bottom: 15px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
        overflow: hidden;
    }

    .page-666win__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: #3a3a5a;
        color: #e0e0e0;
        font-size: 1.2em;
        font-weight: bold;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-666win__faq-question:hover {
        background-color: #4a4a6a;
    }

    .page-666win__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: #e94560;
        pointer-events: none; /* Prevent h3 from intercepting click */
    }

    .page-666win__faq-toggle {
        font-size: 1.8em;
        line-height: 1;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from intercepting click */
        color: #ffdd00;
    }

    .page-666win__faq-item.active .page-666win__faq-toggle {
        transform: rotate(45deg); /* Change + to X-like symbol */
    }

    .page-666win__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px; /* 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;
        color: #c0c0c0;
    }

    .page-666win__faq-item.active .page-666win__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px 25px !important; /* Active padding */
        opacity: 1;
    }

    .page-666win__faq-answer p {
        margin: 0;
        padding-bottom: 10px; /* Adjust as needed for final paragraph */
    }

    /* Call to Action Section */
    .page-666win__cta-description {
        font-size: 1.3em;
        color: #c0c0c0;
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-666win__action-area {
        margin-top: 40px;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
        .page-666win__brand-title {
            font-size: 3.8em;
        }
        .page-666win__hero-subtitle {
            font-size: 1.5em;
        }
        .page-666win__section-title {
            font-size: 2em;
        }
    }

    @media (max-width: 768px) {
        .page-666win__hero-section {
            flex-direction: column;
            padding: 10px 15px 80px; /* Adjust padding for sticky footer */
        }
        .page-666win__hero-content {
            padding: 15px;
        }
        .page-666win__brand-title {
            font-size: 3em;
        }
        .page-666win__hero-subtitle {
            font-size: 1.2em;
        }
        .page-666win__hero-promo {
            font-size: 1em;
        }

        .page-666win__section-title {
            font-size: 1.8em;
            margin-bottom: 30px;
        }

        .page-666win__game-categories,
        .page-666win__promo-grid,
        .page-666win__feature-grid,
        .page-666win__provider-grid {
            grid-template-columns: 1fr; /* Stack elements on small screens */
            gap: 20px;
        }

        .page-666win__game-card,
        .page-666win__promo-card,
        .page-666win__feature-item,
        .page-666win__provider-logo {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 15px !important; /* Adjust padding */
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        .page-666win__game-image,
        .page-666win__promo-image,
        .page-666win__feature-icon,
        .page-666win__provider-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }

        .page-666win__faq-question, .page-666win__faq-answer {
            padding: 15px 20px !important;
        }

        .page-666win__faq-question h3 {
            font-size: 1.1em;
        }

        .page-666win__cta-description {
            font-size: 1.1em;
        }

        .page-666win__floating-buttons {
            padding: 8px 0;
        }
        .page-666win__floating-buttons .page-666win__button {
            font-size: 0.95em;
            padding: 10px 15px;
        }
    }

    @media (max-width: 480px) {
        .page-666win__brand-title {
            font-size: 2.5em;
        }
        .page-666win__hero-subtitle {
            font-size: 1em;
        }
        .page-666win__section-title {
            font-size: 1.5em;
        }
        .page-666win__floating-buttons .page-666win__button {
            font-size: 0.85em;
            padding: 8px 10px;
        }
        .page-666win__hero-content {
            padding: 10px;
        }
    }
  