
    .page-798be {
        font-family: 'Arial', sans-serif;
        color: #e0e0e0; /* Light text on dark background */
        background-color: #1a1a2e; /* Dark background */
        line-height: 1.6;
        padding-bottom: 50px; /* Add some padding at the bottom before footer placeholder */
        padding-top: 10px; /* Minimal top padding, assuming body padding from shared.css */
    }

    /* Hero Section */
    .page-798be__hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 10px 20px 40px; /* Adjusted top padding */
        background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
        overflow: hidden;
        position: relative;
    }

    .page-798be__hero-content {
        max-width: 900px;
        z-index: 1;
    }

    .page-798be__hero-title {
        font-size: 2.8em;
        color: #ffffff;
        margin-bottom: 20px;
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-798be__hero-description {
        font-size: 1.1em;
        color: #e0e0e0;
        margin-bottom: 30px;
    }

    .page-798be__cta-button {
        display: inline-block;
        background-color: #e94560;
        color: #1a1a2e; /* Dark text for contrast */
        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;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-798be__cta-button:hover {
        background-color: #ff6a81;
        transform: translateY(-3px);
    }

    .page-798be__hero-image-wrapper {
        margin-top: 30px;
        width: 100%;
        max-width: 800px;
        overflow: hidden;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }

    .page-798be__hero-image {
        max-width: 100%;
        height: auto;
        display: block;
        border-radius: 15px;
    }

    /* Section General */
    .page-798be__section-title {
        font-size: 2.2em;
        color: #e94560;
        text-align: center;
        margin-bottom: 40px;
        padding-top: 60px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    }

    .page-798be__section-description {
        text-align: center;
        max-width: 800px;
        margin: -20px auto 40px auto;
        color: #e0e0e0;
        font-size: 1.05em;
    }

    /* About Section */
    .page-798be__about-section {
        padding: 0 20px 60px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-798be__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .page-798be__feature-item {
        background-color: #2e2e4e;
        padding: 30px;
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box; /* Important for list items */
    }

    .page-798be__feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

    .page-798be__feature-icon {
        width: 200px; /* Minimum size requirement */
        height: auto;
        margin-bottom: 20px;
        border-radius: 8px;
        max-width: 100%;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .page-798be__feature-title {
        font-size: 1.5em;
        color: #ffffff;
        margin-bottom: 15px;
    }

    .page-798be__feature-text {
        font-size: 1em;
        color: #c0c0c0;
    }

    /* Games Section */
    .page-798be__games-section {
        padding: 0 20px 60px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-798be__games-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .page-798be__game-card {
        background-color: #2e2e4e;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box; /* Important for list items */
    }

    .page-798be__game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

    .page-798be__game-image {
        width: 100%;
        height: 200px; /* Fixed height for consistency */
        object-fit: cover;
        display: block;
        max-width: 100%;
    }

    .page-798be__game-card h3 {
        font-size: 1.4em;
        color: #ffffff;
        padding: 15px 20px 5px;
    }

    .page-798be__game-provider {
        color: #a0a0a0;
        font-size: 0.9em;
        padding: 0 20px 20px;
    }

    /* How-To Section */
    .page-798be__how-to-section {
        padding: 0 20px 60px;
        max-width: 900px;
        margin: 0 auto;
    }

    .page-798be__steps-list {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .page-798be__step-item {
        display: flex;
        align-items: flex-start;
        background-color: #2e2e4e;
        padding: 25px;
        border-radius: 12px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
        box-sizing: border-box; /* Important for list items */
    }

    .page-798be__step-number {
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        background-color: #e94560;
        color: #ffffff;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.4em;
        font-weight: bold;
        margin-right: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-798be__step-title {
        font-size: 1.3em;
        color: #ffffff;
        margin-top: 5px;
        margin-bottom: 10px;
    }

    .page-798be__step-text {
        color: #c0c0c0;
        font-size: 1em;
    }

    /* Promo Section */
    .page-798be__promo-section {
        padding: 0 20px 60px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-798be__promo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .page-798be__promo-card {
        background-color: #2e2e4e;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box; /* Important for list items */
    }

    .page-798be__promo-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

    .page-798be__promo-image {
        width: 100%;
        height: 250px;
        object-fit: cover;
        display: block;
        max-width: 100%;
    }

    .page-798be__promo-card h3 {
        font-size: 1.4em;
        color: #ffffff;
        padding: 15px 20px 5px;
    }

    .page-798be__promo-description {
        color: #c0c0c0;
        font-size: 0.95em;
        padding: 0 20px 20px;
    }

    .page-798be__cta-wrapper {
        text-align: center;
        margin-top: 50px;
    }

    .page-798be__cta-button--large {
        padding: 18px 40px;
        font-size: 1.2em;
    }

    /* FAQ Section */
    .page-798be__faq-section {
        padding: 0 20px 60px;
        max-width: 900px;
        margin: 0 auto;
    }

    .page-798be__faq-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .page-798be__faq-item {
        background-color: #2e2e4e;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
        box-sizing: border-box; /* Important for list items */
    }

    .page-798be__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-798be__faq-question:hover {
        background-color: #3f3f6a;
    }

    .page-798be__faq-q-text {
        font-size: 1.2em;
        color: #ffffff;
        margin: 0;
        pointer-events: none; /* Prevent h3 from blocking click */
        flex-grow: 1;
    }

    .page-798be__faq-toggle {
        font-size: 1.8em;
        color: #e94560;
        font-weight: bold;
        margin-left: 15px;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent span from blocking click */
    }

    .page-798be__faq-item.active .page-798be__faq-toggle {
        transform: rotate(45deg); /* Plus to X (minus) */
    }

    .page-798be__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        color: #c0c0c0;
        font-size: 1em;
    }

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

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

        .page-798be__hero-description {
            font-size: 1em;
        }

        .page-798be__section-title {
            font-size: 1.8em;
            margin-bottom: 30px;
            padding-top: 40px;
        }

        .page-798be__section-description {
            font-size: 0.95em;
            margin: -10px auto 30px auto;
        }

        /* List items for mobile */
        .page-798be__features-grid,
        .page-798be__games-grid,
        .page-798be__promo-grid {
            grid-template-columns: 1fr; /* Single column layout */
            gap: 20px;
        }

        .page-798be__feature-item,
        .page-798be__game-card,
        .page-798be__promo-card,
        .page-798be__step-item,
        .page-798be__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 for smaller screens */
            padding-right: 15px !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        
        .page-798be__feature-item { padding: 20px !important; }
        .page-798be__game-card h3 { padding: 10px 15px 5px !important; }
        .page-798be__game-provider { padding: 0 15px 15px !important; }
        .page-798be__promo-card h3 { padding: 10px 15px 5px !important; }
        .page-798be__promo-description { padding: 0 15px 15px !important; }
        .page-798be__step-item { padding: 20px !important; }
        .page-798be__faq-question { padding: 15px 20px !important; }
        .page-798be__faq-answer { padding: 0 20px !important; }
        .page-798be__faq-item.active .page-798be__faq-answer { padding: 15px 20px !important; }

        .page-798be__games-section,
        .page-798be__promo-section,
        .page-798be__about-section,
        .page-798be__how-to-section,
        .page-798be__faq-section {
            padding-left: 15px;
            padding-right: 15px;
        }

        .page-798be__step-number {
            width: 35px;
            height: 35px;
            font-size: 1.2em;
            margin-right: 15px;
        }

        .page-798be__step-title {
            font-size: 1.1em;
        }

        .page-798be__faq-q-text {
            font-size: 1.1em;
        }

        .page-798be__faq-toggle {
            font-size: 1.5em;
        }
    }

    /* Ensure images are responsive within their containers */
    .page-798be__hero-image,
    .page-798be__feature-icon,
    .page-798be__game-image,
    .page-798be__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    /* Image containers for mobile responsiveness */
    .page-798be__hero-image-wrapper,
    .page-798be__feature-item,
    .page-798be__game-card,
    .page-798be__promo-card {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
  