
    /* General Styling */
    :root {
        --page-8k8-4-primary-color: #e6b800; /* Gold/Yellow */
        --page-8k8-4-secondary-color: #333; /* Dark Grey */
        --page-8k8-4-text-color: #fff; /* White */
        --page-8k8-4-background-dark: #1a1a1a; /* Very Dark Grey */
        --page-8k8-4-background-light: #2c2c2c; /* Slightly Lighter Dark Grey */
        --page-8k8-4-accent-color: #ff4500; /* Orange-Red for highlights */
    }

    .page-8k8-4 {
        font-family: 'Arial', sans-serif;
        color: var(--page-8k8-4-text-color);
        background-color: var(--page-8k8-4-background-dark);
        line-height: 1.6;
        padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    .page-8k8-4__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        box-sizing: border-box;
    }

    .page-8k8-4__section {
        padding: 60px 0;
        text-align: center;
    }

    .page-8k8-4__section--dark {
        background-color: var(--page-8k8-4-background-light);
    }

    .page-8k8-4__section-title {
        font-size: 2.8em;
        color: var(--page-8k8-4-primary-color);
        margin-bottom: 30px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
    }

    .page-8k8-4__section-subtitle {
        font-size: 1.2em;
        color: #ccc;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Hero Section */
    .page-8k8-4__hero-section {
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 600px; /* Adjust height as needed */
        text-align: center;
        padding-top: 10px; /* Decorative top padding, body handles main offset */
    }

    .page-8k8-4__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
        filter: brightness(0.5); /* Darken background for text readability */
    }

    .page-8k8-4__hero-content {
        z-index: 1;
        max-width: 900px;
        padding: 20px;
        background-color: rgba(0, 0, 0, 0.4);
        border-radius: 10px;
    }

    .page-8k8-4__hero-title {
        font-size: 4em;
        color: var(--page-8k8-4-primary-color);
        margin-bottom: 20px;
        line-height: 1.1;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-4__hero-description {
        font-size: 1.5em;
        color: var(--page-8k8-4-text-color);
        margin-bottom: 40px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-4__primary-button {
        display: inline-block;
        background-color: var(--page-8k8-4-primary-color);
        color: var(--page-8k8-4-background-dark);
        padding: 15px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-size: 1.2em;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-8k8-4__primary-button:hover {
        background-color: #ffd700; /* Lighter gold */
        transform: translateY(-3px);
    }

    /* Features/Benefits Section */
    .page-8k8-4__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .page-8k8-4__feature-item {
        background-color: var(--page-8k8-4-background-dark);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        text-align: left;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box;
    }

    .page-8k8-4__feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-4__feature-icon {
        width: 100%; /* Ensure max-width: 100% is handled by the placeholder system */
        height: auto;
        max-width: 250px; /* Example size, min 200x200 enforced by prompt */
        margin-bottom: 20px;
        border-radius: 8px;
    }

    .page-8k8-4__feature-title {
        font-size: 1.8em;
        color: var(--page-8k8-4-primary-color);
        margin-bottom: 15px;
    }

    .page-8k8-4__feature-description {
        font-size: 1em;
        color: #ccc;
    }

    /* How To Register Section */
    .page-8k8-4__steps-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 40px;
        margin-top: 50px;
    }

    .page-8k8-4__step-item {
        background-color: var(--page-8k8-4-background-dark);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        text-align: center;
        box-sizing: border-box;
        position: relative;
    }

    .page-8k8-4__step-number {
        display: inline-block;
        width: 60px;
        height: 60px;
        line-height: 60px;
        border-radius: 50%;
        background-color: var(--page-8k8-4-primary-color);
        color: var(--page-8k8-4-background-dark);
        font-size: 2em;
        font-weight: bold;
        margin-bottom: 20px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-4__step-image {
        width: 100%;
        height: auto;
        max-width: 300px; /* Example size */
        margin-bottom: 20px;
        border-radius: 8px;
    }

    .page-8k8-4__step-title {
        font-size: 1.5em;
        color: var(--page-8k8-4-primary-color);
        margin-bottom: 15px;
    }

    .page-8k8-4__step-description {
        font-size: 1em;
        color: #ccc;
    }

    /* Promotions Section */
    .page-8k8-4__promotions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .page-8k8-4__promo-card {
        background-color: var(--page-8k8-4-background-dark);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        text-align: left;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box;
    }

    .page-8k8-4__promo-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-4__promo-image {
        width: 100%;
        height: 250px; /* Fixed height for consistency */
        object-fit: cover;
        display: block;
    }

    .page-8k8-4__promo-content {
        padding: 25px;
    }

    .page-8k8-4__promo-title {
        font-size: 1.8em;
        color: var(--page-8k8-4-primary-color);
        margin-bottom: 10px;
    }

    .page-8k8-4__promo-description {
        font-size: 1em;
        color: #ccc;
        margin-bottom: 20px;
    }

    /* Payment Methods Section */
    .page-8k8-4__payment-methods-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-top: 50px;
        justify-content: center;
    }

    .page-8k8-4__payment-item {
        background-color: var(--page-8k8-4-background-dark);
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 120px;
        box-sizing: border-box;
    }

    .page-8k8-4__payment-icon {
        width: 100%;
        height: auto;
        max-width: 150px; /* Example size, min 200x200 is for actual content images, these are logos, but I will still use a large placeholder */
        margin-bottom: 10px;
    }
    
    .page-8k8-4__payment-name {
        font-size: 0.9em;
        color: var(--page-8k8-4-text-color);
        font-weight: bold;
    }

    /* FAQ Section */
    .page-8k8-4__faq-list {
        margin-top: 50px;
        text-align: left;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .page-8k8-4__faq-question:hover {
        background-color: #ffd700;
    }

    .page-8k8-4__faq-question h3 {
        margin: 0;
        flex-grow: 1;
        font-size: 1.2em; /* Ensure h3 font size matches */
        color: var(--page-8k8-4-background-dark);
        pointer-events: none; /* Prevent h3 from blocking click event on parent */
    }

    .page-8k8-4__faq-toggle {
        font-size: 1.8em;
        margin-left: 15px;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from blocking click event on parent */
    }

    .page-8k8-4__faq-item.active .page-8k8-4__faq-toggle {
        transform: rotate(45deg); /* Change + to X or - */
    }

    .page-8k8-4__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px; /* Initial padding */
        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(--page-8k8-4-text-color);
        background-color: var(--page-8k8-4-background-dark);
        font-size: 1em;
    }

    .page-8k8-4__faq-item.active .page-8k8-4__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to contain content */
        padding: 20px 25px !important; /* Active padding */
        opacity: 1;
    }

    /* Call to Action Section */
    .page-8k8-4__cta-section {
        background-color: var(--page-8k8-4-primary-color);
        color: var(--page-8k8-4-background-dark);
        padding: 80px 0;
        text-align: center;
    }

    .page-8k8-4__cta-title {
        font-size: 3em;
        margin-bottom: 20px;
        color: var(--page-8k8-4-background-dark);
    }

    .page-8k8-4__cta-description {
        font-size: 1.3em;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .page-8k8-4__hero-title {
            font-size: 3.5em;
        }
        .page-8k8-4__hero-description {
            font-size: 1.3em;
        }
        .page-8k8-4__section-title {
            font-size: 2.2em;
        }
        .page-8k8-4__cta-title {
            font-size: 2.5em;
        }
    }

    @media (max-width: 768px) {
        .page-8k8-4 {
            padding-top: var(--header-offset, 122px) !important; /* Ensure header offset on mobile */
        }
        .page-8k8-4__hero-section {
            height: 450px;
            padding-top: 10px !important;
        }
        .page-8k8-4__hero-title {
            font-size: 2.5em;
        }
        .page-8k8-4__hero-description {
            font-size: 1.1em;
        }
        .page-8k8-4__primary-button {
            padding: 12px 25px;
            font-size: 1em;
        }
        .page-8k8-4__section {
            padding: 40px 0;
        }
        .page-8k8-4__section-title {
            font-size: 2em;
        }
        .page-8k8-4__section-subtitle {
            font-size: 1em;
        }
        .page-8k8-4__features-grid,
        .page-8k8-4__steps-grid,
        .page-8k8-4__promotions-grid,
        .page-8k8-4__payment-methods-grid {
            grid-template-columns: 1fr;
            gap: 20px;
            padding: 0 15px; /* Add padding to grid containers */
        }

        /* List item responsiveness for all grid/flex items */
        .page-8k8-4__feature-item,
        .page-8k8-4__step-item,
        .page-8k8-4__promo-card,
        .page-8k8-4__payment-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 20px !important; /* Adjust padding for mobile */
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-8k8-4__feature-title,
        .page-8k8-4__step-title,
        .page-8k8-4__promo-title {
            font-size: 1.5em;
        }
        .page-8k8-4__feature-description,
        .page-8k8-4__step-description,
        .page-8k8-4__promo-description {
            font-size: 0.95em;
        }
        .page-8k8-4__promo-image {
            height: 200px;
        }
        .page-8k8-4__faq-question {
            font-size: 1.1em;
            padding: 15px 20px;
        }
        .page-8k8-4__faq-question h3 {
            font-size: 1.1em;
        }
        .page-8k8-4__faq-answer {
            padding: 0 20px;
            font-size: 0.95em;
        }
        .page-8k8-4__faq-item.active .page-8k8-4__faq-answer {
            padding: 15px 20px !important;
        }
        .page-8k8-4__cta-section {
            padding: 50px 20px;
        }
        .page-8k8-4__cta-title {
            font-size: 2em;
        }
        .page-8k8-4__cta-description {
            font-size: 1.1em;
        }
    }

    @media (max-width: 480px) {
        .page-8k8-4__hero-title {
            font-size: 2em;
        }
        .page-8k8-4__hero-description {
            font-size: 1em;
        }
        .page-8k8-4__section-title {
            font-size: 1.8em;
        }
        .page-8k8-4__faq-question {
            font-size: 1em;
        }
        .page-8k8-4__faq-question h3 {
            font-size: 1em;
        }
        .page-8k8-4__faq-toggle {
            font-size: 1.5em;
        }
        .page-8k8-4__cta-title {
            font-size: 1.8em;
        }
        .page-8k8-4__cta-description {
            font-size: 1em;
        }
    }
  