
    :root {
        --primary-color: #e44d26; /* A vibrant orange/red, common in iGaming */
        --secondary-color: #ffb300; /* Gold/yellow for highlights */
        --background-dark: #1a1a1a;
        --background-light: #2c2c2c;
        --text-color-light: #f0f0f0;
        --text-color-dark: #333;
        --border-color: #3a3a3a;
        --button-hover-color: #ff8c00;
    }

    /* Base styles for the page scope */
    .page-66f {
        font-family: 'Arial', sans-serif;
        color: var(--text-color-light);
        background-color: var(--background-dark);
        line-height: 1.6;
        padding-top: var(--header-offset, 122px); /* Fallback for body padding, if shared.css doesn't set it */
    }

    @media (max-width: 768px) {
        .page-66f {
            padding-top: var(--header-offset, 80px); /* Adjust for mobile header if needed */
        }
    }


    /* Hero Section */
    .page-66f__hero-section {
        position: relative;
        text-align: center;
        padding: 60px 20px;
        background: linear-gradient(135deg, var(--background-dark), var(--background-light));
        overflow: hidden;
        border-bottom: 2px solid var(--border-color);
        padding-top: 10px; /* Small decorative padding, assuming body handles main offset */
    }

    .page-66f__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
        opacity: 0.3;
    }

    .page-66f__hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
        margin: 0 auto;
    }

    .page-66f__hero-title {
        font-size: 3em;
        color: var(--secondary-color);
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-66f__hero-subtitle {
        font-size: 1.5em;
        color: var(--text-color-light);
        margin-bottom: 30px;
    }

    .page-66f__hero-cta-button {
        display: inline-block;
        background-color: var(--primary-color);
        color: var(--text-color-light);
        padding: 15px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.2em;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-66f__hero-cta-button:hover {
        background-color: var(--button-hover-color);
    }

    /* Section common styles */
    .page-66f__section {
        padding: 50px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }

    .page-66f__section:last-of-type {
        border-bottom: none;
    }

    .page-66f__section-title {
        font-size: 2.5em;
        color: var(--secondary-color);
        margin-bottom: 30px;
        text-align: center;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-66f__section-description {
        font-size: 1.1em;
        color: var(--text-color-light);
        max-width: 800px;
        margin: 0 auto 40px auto;
        text-align: center;
    }

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

    .page-66f__floating-button {
        background-color: var(--primary-color);
        color: var(--text-color-light);
        padding: 12px 25px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-align: center;
        border: none;
        cursor: pointer;
    }

    .page-66f__floating-button:hover {
        background-color: var(--button-hover-color);
        transform: translateY(-2px);
    }

    /* Game Categories / Product Display */
    .page-66f__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
        justify-content: center; /* Center items in the grid */
    }

    .page-66f__game-card {
        background-color: var(--background-light);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
        padding-bottom: 20px;
        box-sizing: border-box;
    }

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

    .page-66f__game-card-image-wrapper {
        width: 100%;
        height: 200px; /* Fixed height for images */
        overflow: hidden;
        position: relative;
    }

    .page-66f__game-card-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .page-66f__game-card:hover .page-66f__game-card-image {
        transform: scale(1.05);
    }

    .page-66f__game-card-title {
        font-size: 1.5em;
        color: var(--secondary-color);
        margin: 20px 15px 10px 15px;
    }

    .page-66f__game-card-description {
        font-size: 0.95em;
        color: var(--text-color-light);
        padding: 0 15px;
    }

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

    .page-66f__promo-card {
        background-color: var(--background-light);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: left;
        padding: 25px;
        box-sizing: border-box;
    }

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

    .page-66f__promo-card-title {
        font-size: 1.8em;
        color: var(--primary-color);
        margin-bottom: 15px;
    }

    .page-66f__promo-card-description {
        font-size: 1em;
        color: var(--text-color-light);
        margin-bottom: 20px;
    }

    .page-66f__promo-card-button {
        display: inline-block;
        background-color: var(--secondary-color);
        color: var(--background-dark);
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-66f__promo-card-button:hover {
        background-color: var(--primary-color);
        color: var(--text-color-light);
    }

    /* App Download Section */
    .page-66f__download-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-top: 40px;
    }

    .page-66f__download-image {
        width: 100%;
        max-width: 400px;
        height: auto;
        border-radius: 15px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-66f__download-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .page-66f__download-button {
        background-color: var(--primary-color);
        color: var(--text-color-light);
        padding: 15px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-66f__download-button:hover {
        background-color: var(--button-hover-color);
    }

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

    .page-66f__feature-item {
        background-color: var(--background-light);
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        text-align: center;
        box-sizing: border-box;
    }

    .page-66f__feature-title {
        font-size: 1.6em;
        color: var(--secondary-color);
        margin-bottom: 15px;
    }

    .page-66f__feature-description {
        font-size: 1em;
        color: var(--text-color-light);
    }

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

    .page-66f__faq-item {
        background-color: var(--background-light);
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .page-66f__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        background-color: var(--background-light);
        color: var(--text-color-light);
        cursor: pointer;
        user-select: none;
        font-size: 1.2em;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .page-66f__faq-question:hover {
        background-color: #3a3a3a;
    }

    .page-66f__faq-question h3 {
        margin: 0;
        color: var(--secondary-color);
        font-size: 1.2em;
        pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

    .page-66f__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: var(--primary-color);
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent span from blocking click on parent div */
    }

    .page-66f__faq-item.active .page-66f__faq-toggle {
        transform: rotate(45deg); /* Change + to X or similar */
        color: var(--secondary-color);
    }

    .page-66f__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px; /* Initial padding */
        color: var(--text-color-light);
        background-color: #333;
        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: 1em;
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-66f__hero-title {
            font-size: 2.2em;
        }

        .page-66f__hero-subtitle {
            font-size: 1.2em;
        }

        .page-66f__hero-cta-button,
        .page-66f__download-button {
            padding: 12px 25px;
            font-size: 1em;
        }

        .page-66f__section-title {
            font-size: 2em;
        }

        .page-66f__section-description {
            font-size: 0.95em;
        }

        .page-66f__game-grid,
        .page-66f__promo-grid,
        .page-66f__features-grid {
            grid-template-columns: 1fr;
        }

        .page-66f__game-card,
        .page-66f__promo-card,
        .page-66f__feature-item {
            margin: 0 auto;
            max-width: 95%;
        }

        .page-66f__floating-buttons {
            bottom: 15px;
            right: 15px;
            gap: 8px;
        }

        .page-66f__floating-button {
            padding: 10px 20px;
            font-size: 1em;
        }

        /* List item mobile responsiveness */
        .page-66f__game-grid > *,
        .page-66f__promo-grid > *,
        .page-66f__features-grid > * {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-66f__game-grid,
        .page-66f__promo-grid,
        .page-66f__features-grid {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 10px !important; /* Adjust padding for the grid container itself */
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

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

        .page-66f__faq-question h3 {
            font-size: 1.1em;
        }

        .page-66f__faq-answer {
            padding: 0 20px;
        }

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