
    .page-8-win55 {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #f0f0f0;
        background-color: #1a1a2e; /* Dark background */
        line-height: 1.6;
        overflow-x: hidden;
        padding-top: 10px; /* Decorative top padding, body handles header offset */
    }

    .page-8-win55__section-title {
        font-size: 2.2em;
        color: #e94560; /* Accent color */
        text-align: center;
        margin-bottom: 20px;
        padding-top: 40px;
        font-weight: bold;
        word-wrap: break-word; /* Ensure title breaks */
    }

    .page-8-win55__section-description {
        font-size: 1.1em;
        text-align: center;
        max-width: 800px;
        margin: 0 auto 40px auto;
        color: #cccccc;
        padding: 0 15px;
        word-wrap: break-word;
    }

    .page-8-win55__hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 60px 20px 40px;
        background: linear-gradient(135deg, #1a1a2e, #0f3460);
        position: relative;
        overflow: hidden;
    }

    .page-8-win55__hero-content {
        z-index: 1;
        max-width: 900px;
    }

    .page-8-win55__hero-title {
        font-size: 2.8em;
        color: #e94560;
        margin-bottom: 20px;
        line-height: 1.2;
        word-wrap: break-word;
    }

    .page-8-win55__hero-description {
        font-size: 1.2em;
        color: #f0f0f0;
        margin-bottom: 30px;
        word-wrap: break-word;
    }

    .page-8-win55__hero-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    }

    .page-8-win55__cta-button {
        display: inline-block;
        background-color: #e94560;
        color: #ffffff;
        padding: 15px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
    }

    .page-8-win55__cta-button:hover {
        background-color: #ff6b8a;
        transform: translateY(-3px);
    }

    .page-8-win55__cta-button--secondary {
        background-color: #0f3460;
        border: 2px solid #e94560;
    }

    .page-8-win55__cta-button--secondary:hover {
        background-color: #1a1a2e;
        border-color: #ff6b8a;
    }

    .page-8-win55__hero-image-wrapper {
        margin-top: 40px;
        width: 100%;
        max-width: 800px;
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    }

    .page-8-win55__hero-image {
        max-width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    .page-8-win55__promotions-section,
    .page-8-win55__games-section,
    .page-8-win55__why-choose-us-section,
    .page-8-win55__faq-section,
    .page-8-win55__cta-bottom-section {
        padding: 60px 20px;
        background-color: #16213e;
        margin-top: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }

    .page-8-win55__promotions-grid,
    .page-8-win55__games-grid,
    .page-8-win55__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-8-win55__promotion-card,
    .page-8-win55__game-card,
    .page-8-win55__feature-item {
        background-color: #0f3460;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
        padding-bottom: 20px;
        box-sizing: border-box; /* Ensure padding/border included in width */
        width: 100%; /* Default for mobile, will be overridden by grid on larger screens */
        word-wrap: break-word;
    }

    .page-8-win55__promotion-card:hover,
    .page-8-win55__game-card:hover,
    .page-8-win55__feature-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    }

    .page-8-win55__promotion-image,
    .page-8-win55__game-image {
        width: 100%;
        height: 200px; /* Fixed height for consistency */
        object-fit: cover;
        display: block;
        margin-bottom: 20px;
        border-bottom: 3px solid #e94560;
    }

    .page-8-win55__feature-icon {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        object-fit: contain; /* Use contain for icons */
        margin: 20px auto;
        border: 3px solid #e94560;
        padding: 10px;
        background-color: #1a1a2e;
    }


    .page-8-win55__promotion-title,
    .page-8-win55__game-title,
    .page-8-win55__feature-title {
        font-size: 1.4em;
        color: #e94560;
        margin-bottom: 10px;
        padding: 0 15px;
        word-wrap: break-word;
    }

    .page-8-win55__promotion-text,
    .page-8-win55__game-text,
    .page-8-win55__feature-description {
        font-size: 1em;
        color: #cccccc;
        padding: 0 15px;
        word-wrap: break-word;
    }

    /* Floating Buttons */
    .page-8-win55__floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #e94560;
        color: #ffffff;
        padding: 12px 20px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1em;
        box-shadow: 0 4px 15px rgba(233, 69, 96, 0.6);
        z-index: 1000;
        transition: background-color 0.3s ease, transform 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 120px; /* Ensure button is wide enough */
    }

    .page-8-win55__floating-button:hover {
        background-color: #ff6b8a;
        transform: translateY(-5px);
    }

    .page-8-win55__register-button {
        right: 20px;
        bottom: 80px; /* Position above login button */
    }

    .page-8-win55__login-button {
        right: 20px;
        bottom: 20px;
    }

    /* FAQ Section */
    .page-8-win55__faq-container {
        max-width: 900px;
        margin: 40px auto 0;
    }

    .page-8-win55__faq-item {
        background-color: #0f3460;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-8-win55__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 25px;
        cursor: pointer;
        background-color: #1a1a2e;
        color: #e94560;
        font-size: 1.2em;
        font-weight: bold;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-8-win55__faq-question:hover {
        background-color: #2c3a57;
    }

    .page-8-win55__faq-question-text {
        margin: 0;
        flex-grow: 1;
        text-align: left;
        pointer-events: none; /* Prevent text from blocking click event */
        word-wrap: break-word;
    }

    .page-8-win55__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        margin-left: 15px;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-8-win55__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px; /* Initial padding */
        color: #cccccc;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        font-size: 1.05em;
        word-wrap: break-word;
    }

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

    /* Call to Action Bottom Section */
    .page-8-win55__cta-bottom-section {
        text-align: center;
        padding-bottom: 80px; /* More space at the bottom */
    }

    .page-8-win55__cta-button--large {
        padding: 18px 40px;
        font-size: 1.3em;
        margin-top: 30px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-8-win55__hero-title {
            font-size: 2em;
        }

        .page-8-win55__hero-description {
            font-size: 1em;
        }

        .page-8-win55__section-title {
            font-size: 1.8em;
        }

        .page-8-win55__promotions-grid,
        .page-8-win55__games-grid,
        .page-8-win55__features-grid {
            grid-template-columns: 1fr; /* Stack columns on mobile */
            gap: 20px;
        }

        .page-8-win55__promotion-card,
        .page-8-win55__game-card,
        .page-8-win55__feature-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 0 0 20px 0; /* Adjust padding for mobile cards */
        }

        .page-8-win55__promotion-image,
        .page-8-win55__game-image {
            height: 180px; /* Slightly smaller images on mobile */
        }

        .page-8-win55__feature-icon {
            width: 120px;
            height: 120px;
            margin: 15px auto;
        }

        .page-8-win55__faq-question {
            font-size: 1.1em;
            padding: 15px 20px;
        }

        .page-8-win55__faq-answer {
            padding: 0 20px;
        }

        .page-8-win55__faq-item.active .page-8-win55__faq-answer {
            padding: 15px 20px !important;
        }

        .page-8-win55__cta-button {
            padding: 12px 25px;
            font-size: 1em;
        }
        
        .page-8-win55__cta-button--large {
            padding: 15px 30px;
            font-size: 1.1em;
        }

        .page-8-win55__floating-button {
            padding: 10px 15px;
            font-size: 0.9em;
            min-width: 100px;
            bottom: 15px;
            right: 15px;
        }

        .page-8-win55__register-button {
            bottom: 70px; /* Adjust spacing for mobile */
        }

        .page-8-win55__hero-buttons {
            flex-direction: column;
            gap: 15px;
        }
    }

    @media (max-width: 480px) {
        .page-8-win55__hero-title {
            font-size: 1.8em;
        }
        .page-8-win55__section-title {
            font-size: 1.6em;
        }
        .page-8-win55__hero-section,
        .page-8-win55__promotions-section,
        .page-8-win55__games-section,
        .page-8-win55__why-choose-us-section,
        .page-8-win55__faq-section,
        .page-8-win55__cta-bottom-section {
            padding-left: 15px;
            padding-right: 15px;
        }
        .page-8-win55__section-description {
            padding-left: 10px;
            padding-right: 10px;
        }
    }
  