
    /* General page styles */
    .page-6ff2 {
        font-family: 'Arial', sans-serif;
        color: #f0f0f0; /* Light text for dark background */
        background-color: #1a1a2e; /* Dark background */
        line-height: 1.6;
        padding-top: 10px; /* Small padding for hero section, assuming body already has header offset */
    }

    .page-6ff2__section-title {
        font-size: 2.5em;
        color: #e0b400; /* Gold accent */
        text-align: center;
        margin-bottom: 20px;
        padding-top: 40px;
        word-wrap: break-word; /* Ensure long titles wrap */
        overflow-wrap: break-word;
    }

    .page-6ff2__subsection-title {
        font-size: 2em;
        color: #e0b400;
        text-align: center;
        margin-bottom: 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-6ff2__section-description,
    .page-6ff2__subsection-description {
        font-size: 1.1em;
        color: #cccccc;
        text-align: center;
        max-width: 800px;
        margin: 0 auto 30px auto;
        padding: 0 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Hero Section */
    .page-6ff2__hero-section {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 60px 20px;
        min-height: 500px;
        overflow: hidden;
        background-color: #22223b;
        border-radius: 10px;
        margin: 10px;
    }

    .page-6ff2__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
        opacity: 0.3;
        max-width: 100%; /* Responsive image */
        height: auto;
    }

    .page-6ff2__hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        margin: 0 auto;
    }

    .page-6ff2__hero-title {
        font-size: 3.5em;
        color: #f7f7f7;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-6ff2__hero-description {
        font-size: 1.3em;
        color: #e0e0e0;
        margin-bottom: 40px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-6ff2__hero-cta,
    .page-6ff2__promotions-cta,
    .page-6ff2__cta-button {
        display: inline-block;
        background-color: #e0b400; /* Gold accent */
        color: #1a1a2e;
        padding: 15px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.2em;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none;
        cursor: pointer;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-6ff2__hero-cta:hover,
    .page-6ff2__promotions-cta:hover,
    .page-6ff2__cta-button:hover {
        background-color: #ffc107;
        transform: translateY(-3px);
    }

    /* Games Section */
    .page-6ff2__games-section,
    .page-6ff2__promotions-section,
    .page-6ff2__news-section,
    .page-6ff2__why-us-section,
    .page-6ff2__cta-section,
    .page-6ff2__payment-providers-section,
    .page-6ff2__faq-section {
        padding: 40px 20px;
        margin: 20px 0;
        background-color: #22223b;
        border-radius: 10px;
        margin: 20px 10px;
    }

    .page-6ff2__game-grid,
    .page-6ff2__news-grid,
    .page-6ff2__logos-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-6ff2__game-card,
    .page-6ff2__news-card {
        background-color: #2d2d44;
        border-radius: 10px;
        overflow: hidden;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .page-6ff2__game-card:hover,
    .page-6ff2__news-card:hover {
        transform: translateY(-5px);
    }

    .page-6ff2__game-card-image,
    .page-6ff2__news-card-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        max-width: 100%; /* Responsive image */
        height: auto;
    }

    .page-6ff2__game-card-title,
    .page-6ff2__news-card-title {
        font-size: 1.5em;
        color: #e0b400;
        margin: 15px 10px 10px 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-6ff2__game-card-text {
        font-size: 1em;
        color: #cccccc;
        padding: 0 15px 15px 15px;
        flex-grow: 1; /* Make text take up available space */
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-6ff2__news-card-date {
        font-size: 0.9em;
        color: #999999;
        margin-top: auto; /* Push date to the bottom */
        padding: 0 15px 15px 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Promotions Section */
    .page-6ff2__promotions-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        max-width: 1000px;
        margin: 0 auto 30px auto;
    }

    .page-6ff2__promotions-list {
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 600px;
        box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-6ff2__promotions-item {
        background-color: #2d2d44;
        border-left: 5px solid #e0b400;
        padding: 15px 20px;
        margin-bottom: 15px;
        border-radius: 5px;
        font-size: 1.1em;
        color: #f0f0f0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        box-sizing: border-box; /* Crucial for responsive lists */
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-6ff2__promotions-image {
        width: 100%;
        max-width: 500px;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        max-width: 100%; /* Responsive image */
        height: auto;
    }

    /* Why Us Section */
    .page-6ff2__why-us-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        max-width: 1000px;
        margin: 0 auto;
    }

    .page-6ff2__why-us-image {
        width: 100%;
        max-width: 500px;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        max-width: 100%; /* Responsive image */
        height: auto;
    }

    .page-6ff2__why-us-list {
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 600px;
        box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-6ff2__why-us-item {
        background-color: #2d2d44;
        border-left: 5px solid #00aaff; /* Blue accent */
        padding: 15px 20px;
        margin-bottom: 15px;
        border-radius: 5px;
        font-size: 1.1em;
        color: #f0f0f0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        box-sizing: border-box; /* Crucial for responsive lists */
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* CTA Section */
    .page-6ff2__cta-section {
        text-align: center;
        padding: 60px 20px;
        background: linear-gradient(45deg, #e0b400, #ffc107);
        color: #1a1a2e;
        border-radius: 10px;
        margin: 20px 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    }

    .page-6ff2__cta-section .page-6ff2__section-title {
        color: #1a1a2e;
    }

    .page-6ff2__cta-section .page-6ff2__section-description {
        color: #333333;
        max-width: 700px;
        margin-bottom: 40px;
    }

    .page-6ff2__cta-button--large {
        font-size: 1.4em;
        padding: 18px 35px;
    }

    /* Payment & Providers Section */
    .page-6ff2__payment-providers-wrapper {
        display: flex;
        flex-direction: column;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-6ff2__payment-section,
    .page-6ff2__providers-section {
        background-color: #2d2d44;
        border-radius: 10px;
        padding: 30px 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-6ff2__logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        align-items: center;
        justify-items: center;
    }

    .page-6ff2__logo-link {
        display: block;
        padding: 10px;
        border-radius: 5px;
        transition: background-color 0.3s ease;
        box-sizing: border-box;
    }

    .page-6ff2__logo-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .page-6ff2__logo-image {
        max-width: 100%;
        height: auto;
        object-fit: contain;
        filter: brightness(0.9) grayscale(0.2); /* Slight filter for visual consistency, not color change */
        transition: filter 0.3s ease;
        min-width: 200px; /* Ensure minimum size */
        min-height: 100px; /* Ensure minimum size */
    }

    .page-6ff2__logo-link:hover .page-6ff2__logo-image {
        filter: brightness(1) grayscale(0);
    }

    /* FAQ Section */
    .page-6ff2__faq-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 10px;
    }

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

    .page-6ff2__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 20px;
        background-color: #3a3a5a;
        cursor: pointer;
        user-select: none;
        color: #f0f0f0;
        font-size: 1.2em;
        font-weight: bold;
        transition: background-color 0.3s ease;
        border-radius: 8px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-6ff2__faq-question:hover {
        background-color: #4a4a6a;
    }

    .page-6ff2__faq-question-text {
        margin: 0;
        pointer-events: none; /* Prevent h3 from blocking click event */
        color: #f0f0f0; /* Ensure good contrast */
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-6ff2__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        margin-left: 15px;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent span from blocking click event */
        color: #e0b400; /* Gold accent */
    }

    .page-6ff2__faq-item.active .page-6ff2__faq-toggle {
        transform: rotate(45deg); /* Change '+' to 'x' or '-' */
    }

    .page-6ff2__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: #cccccc;
        font-size: 1em;
        background-color: #2d2d44;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

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

    .page-6ff2__faq-answer p {
        margin: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

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

    .page-6ff2__floating-button {
        background-color: #00aaff; /* Blue accent */
        color: #ffffff;
        padding: 12px 25px;
        border-radius: 25px;
        border: none;
        font-size: 1.1em;
        font-weight: bold;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transition: background-color 0.3s ease, transform 0.3s ease;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-6ff2__floating-button:hover {
        background-color: #0088cc;
        transform: translateY(-2px);
    }

    .page-6ff2__floating-button--register {
        background-color: #e0b400; /* Gold accent */
        color: #1a1a2e;
    }

    .page-6ff2__floating-button--register:hover {
        background-color: #ffc107;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
        .page-6ff2__hero-title {
            font-size: 3em;
        }
        .page-6ff2__section-title {
            font-size: 2em;
        }
        .page-6ff2__game-grid,
        .page-6ff2__news-grid,
        .page-6ff2__logos-grid {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }
    }

    @media (max-width: 768px) {
        .page-6ff2 {
            padding-top: 5px;
        }
        .page-6ff2__hero-section {
            padding: 40px 15px;
            min-height: 400px;
        }
        .page-6ff2__hero-title {
            font-size: 2.5em;
        }
        .page-6ff2__hero-description {
            font-size: 1.1em;
        }
        .page-6ff2__section-title {
            font-size: 1.8em;
            padding-top: 30px;
        }
        .page-6ff2__subsection-title {
            font-size: 1.6em;
        }
        .page-6ff2__section-description,
        .page-6ff2__subsection-description {
            font-size: 1em;
            margin-bottom: 20px;
        }

        /* Responsive list items */
        .page-6ff2__promotions-list,
        .page-6ff2__why-us-list {
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 10px !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
        }
        .page-6ff2__promotions-item,
        .page-6ff2__why-us-item {
            width: 100% !important;
            max-width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 12px 15px !important;
            font-size: 1em !important;
            box-sizing: border-box !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        .page-6ff2__promotions-content,
        .page-6ff2__why-us-content {
            flex-direction: column;
        }
        .page-6ff2__promotions-image,
        .page-6ff2__why-us-image {
            max-width: 100%;
        }

        .page-6ff2__payment-providers-wrapper {
            gap: 30px;
        }
        .page-6ff2__payment-section,
        .page-6ff2__providers-section {
            padding: 20px 15px;
        }
        .page-6ff2__logos-grid {
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); /* Smaller for mobile logos */
            gap: 15px;
        }
        .page-6ff2__logo-image {
            min-width: 100px; /* Adjust min size for mobile */
            min-height: 50px;
        }

        .page-6ff2__faq-question {
            font-size: 1.1em;
            padding: 15px;
        }
        .page-6ff2__faq-answer {
            padding: 15px !important;
        }
        .page-6ff2__faq-toggle {
            font-size: 1.3em;
        }

        .page-6ff2__floating-buttons {
            bottom: 15px;
            right: 15px;
        }
        .page-6ff2__floating-button {
            padding: 10px 20px;
            font-size: 1em;
        }
    }

    @media (max-width: 480px) {
        .page-6ff2__hero-title {
            font-size: 2em;
        }
        .page-6ff2__hero-description {
            font-size: 1em;
        }
        .page-6ff2__hero-cta,
        .page-6ff2__promotions-cta,
        .page-6ff2__cta-button {
            padding: 12px 25px;
            font-size: 1em;
        }
        .page-6ff2__section-title {
            font-size: 1.6em;
        }
        .page-6ff2__subsection-title {
            font-size: 1.4em;
        }
        .page-6ff2__game-card-title,
        .page-6ff2__news-card-title {
            font-size: 1.3em;
        }
        .page-6ff2__game-card-text {
            font-size: 0.95em;
        }
        .page-6ff2__faq-question {
            font-size: 1em;
            padding: 12px;
        }
        .page-6ff2__faq-answer {
            padding: 12px !important;
        }
    }
  