
    :root {
        --primary-color: #FFD700; /* Gold/Yellow */
        --secondary-color: #00008B; /* Dark Blue */
        --accent-color: #DC143C; /* Crimson/Red */
        --text-color: #333333;
        --light-text-color: #FFFFFF;
        --background-light: #F8F8F8;
        --background-dark: #222222;
        --border-color: #DDDDDD;
    }

    /* Base styles for the page */
    .page-566-app {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: var(--text-color);
        background-color: var(--background-light);
    }

    .page-566-app__section {
        padding: 40px 15px;
        margin: 0 auto;
        max-width: 1200px;
        box-sizing: border-box;
    }

    .page-566-app__section--dark {
        background-color: var(--background-dark);
        color: var(--light-text-color);
    }

    .page-566-app__section-title {
        font-size: 2.2em;
        color: var(--secondary-color);
        text-align: center;
        margin-bottom: 30px;
        font-weight: bold;
    }

    .page-566-app__section--dark .page-566-app__section-title {
        color: var(--primary-color);
    }

    /* Hero Section */
    .page-566-app__hero-section {
        background-color: var(--background-dark);
        color: var(--light-text-color);
        text-align: center;
        padding: 10px 15px 60px; /* Small padding-top as shared.css handles header offset */
        position: relative;
        overflow: hidden;
    }

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

    .page-566-app__hero-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        margin: 0 auto;
    }

    .page-566-app__hero-title {
        font-size: 2.8em;
        margin-bottom: 15px;
        color: var(--primary-color);
        line-height: 1.2;
    }

    .page-566-app__hero-description {
        font-size: 1.2em;
        margin-bottom: 30px;
    }

    .page-566-app__button {
        display: inline-block;
        background-color: var(--accent-color);
        color: var(--light-text-color);
        padding: 15px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-566-app__button:hover {
        background-color: #B2002A;
    }

    /* Feature List */
    .page-566-app__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }

    .page-566-app__feature-item {
        background-color: var(--light-text-color);
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: transform 0.3s ease;
        box-sizing: border-box; /* Crucial for mobile responsiveness */
    }

    .page-566-app__feature-item:hover {
        transform: translateY(-5px);
    }

    .page-566-app__feature-icon {
        width: 200px; /* Min size */
        height: auto;
        margin-bottom: 15px;
        border-radius: 8px;
        max-width: 100%; /* Responsive image */
    }

    .page-566-app__feature-title {
        font-size: 1.4em;
        color: var(--secondary-color);
        margin-bottom: 10px;
    }

    .page-566-app__feature-description {
        font-size: 0.95em;
        color: var(--text-color);
    }

    /* How-to Guide */
    .page-566-app__guide-steps {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }

    .page-566-app__guide-step {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        background-color: var(--light-text-color);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        box-sizing: border-box; /* Crucial for mobile responsiveness */
    }

    .page-566-app__step-number {
        background-color: var(--primary-color);
        color: var(--secondary-color);
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: bold;
        font-size: 1.2em;
    }

    .page-566-app__step-content h3 {
        margin-top: 0;
        color: var(--secondary-color);
        font-size: 1.2em;
    }

    .page-566-app__step-content p {
        margin-bottom: 0;
        font-size: 0.95em;
    }

    .page-566-app__guide-image-wrapper {
        text-align: center;
        margin-top: 30px;
    }

    .page-566-app__guide-image {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        min-width: 200px; /* Min size */
        min-height: 200px; /* Min size */
    }

    /* Game Categories */
    .page-566-app__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .page-566-app__game-card {
        background-color: var(--light-text-color);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: transform 0.3s ease;
        box-sizing: border-box; /* Crucial for mobile responsiveness */
    }

    .page-566-app__game-card:hover {
        transform: translateY(-5px);
    }

    .page-566-app__game-image {
        width: 100%;
        height: 200px; /* Fixed height for consistency */
        object-fit: cover;
        min-width: 200px; /* Min size */
        min-height: 200px; /* Min size */
        max-width: 100% !important; /* Responsive image */
    }

    .page-566-app__game-title {
        font-size: 1.3em;
        color: var(--secondary-color);
        padding: 15px;
        margin: 0;
    }

    /* Promotions */
    .page-566-app__promotions-list {
        list-style: none;
        padding: 0;
        margin-top: 30px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .page-566-app__promotion-item {
        background-color: var(--light-text-color);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        display: flex;
        align-items: center;
        gap: 15px;
        box-sizing: border-box; /* Crucial for mobile responsiveness */
    }

    .page-566-app__promotion-icon {
        color: var(--accent-color);
        font-size: 1.8em;
        flex-shrink: 0;
    }

    .page-566-app__promotion-text {
        font-size: 1.0em;
        color: var(--text-color);
        margin: 0;
    }

    .page-566-app__promotions-image-wrapper {
        text-align: center;
        margin-top: 30px;
    }

    .page-566-app__promotions-image {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        min-width: 200px; /* Min size */
        min-height: 200px; /* Min size */
    }

    /* FAQ Section */
    .page-566-app__faq-container {
        margin-top: 30px;
    }

    .page-566-app__faq-item {
        background-color: var(--light-text-color);
        margin-bottom: 10px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        box-sizing: border-box; /* Crucial for mobile responsiveness */
    }

    .page-566-app__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 20px;
        cursor: pointer;
        background-color: #f0f0f0;
        border-bottom: 1px solid var(--border-color);
        transition: background-color 0.3s ease;
    }

    .page-566-app__faq-question:hover {
        background-color: #e5e5e5;
    }

    .page-566-app__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        color: var(--secondary-color);
        pointer-events: none; /* Prevents text selection from interfering with click */
    }

    .page-566-app__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: var(--accent-color);
        pointer-events: none; /* Prevents icon from interfering with click */
        transition: transform 0.3s ease;
    }

    .page-566-app__faq-item.active .page-566-app__faq-toggle {
        transform: rotate(45deg);
    }

    .page-566-app__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: var(--text-color);
        font-size: 0.95em;
    }

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

    /* Call to Action Final */
    .page-566-app__cta-final {
        text-align: center;
        margin-top: 50px;
        padding: 40px 15px;
        background-color: var(--secondary-color);
        color: var(--light-text-color);
        border-radius: 10px;
    }

    .page-566-app__cta-final-title {
        font-size: 2em;
        color: var(--primary-color);
        margin-bottom: 20px;
    }

    .page-566-app__cta-final-description {
        font-size: 1.1em;
        margin-bottom: 30px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-566-app__section {
            padding: 30px 15px;
        }

        .page-566-app__section-title {
            font-size: 1.8em;
            margin-bottom: 20px;
        }

        .page-566-app__hero-title {
            font-size: 2em;
        }

        .page-566-app__hero-description {
            font-size: 1em;
        }

        .page-566-app__button {
            padding: 12px 25px;
            font-size: 1em;
        }

        .page-566-app__features-grid,
        .page-566-app__game-grid,
        .page-566-app__promotions-list {
            grid-template-columns: 1fr; /* Single column on mobile */
            gap: 20px;
        }
        
        /* List items mobile responsiveness */
        .page-566-app__feature-item,
        .page-566-app__guide-step,
        .page-566-app__game-card,
        .page-566-app__promotion-item,
        .page-566-app__faq-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding-left: 15px !important; /* Adjust padding to avoid excessive inner spacing */
            padding-right: 15px !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-566-app__guide-step {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .page-566-app__step-number {
            margin-bottom: 10px;
        }

        .page-566-app__game-image {
            height: 180px;
        }

        .page-566-app__faq-question {
            padding: 15px 18px;
        }

        .page-566-app__faq-question h3 {
            font-size: 1em;
        }

        .page-566-app__faq-answer {
            padding: 15px 18px !important; /* Adjusted for mobile */
        }

        .page-566-app__cta-final-title {
            font-size: 1.6em;
        }

        .page-566-app__cta-final-description {
            font-size: 1em;
        }
        
        /* Image responsiveness */
        .page-566-app__hero-background,
        .page-566-app__feature-icon,
        .page-566-app__guide-image,
        .page-566-app__game-image,
        .page-566-app__promotions-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
            overflow: hidden !important;
        }
    }

    @media (max-width: 480px) {
        .page-566-app__hero-title {
            font-size: 1.8em;
        }
        .page-566-app__section-title {
            font-size: 1.6em;
        }
    }
  