
    /* General styles for the page */
.page-8day-80k {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-8day-80k__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-8day-80k__section-title {
    font-size: 2.5em;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-8day-80k__section-description {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-8day-80k__hero-section {
    position: relative;
    background: linear-gradient(135deg, #001f3f, #004080); /* Dark blue gradient */
    color: #ffffff;
    padding: 10px 20px 80px; /* Small padding-top as per instruction */
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.page-8day-80k__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-8day-80k__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle background image */
}

.page-8day-80k__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.page-8day-80k__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    color: #ffcc00; /* Gold/yellow for title */
}

.page-8day-80k__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-8day-80k__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-8day-80k__primary-button,
.page-8day-80k__secondary-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.1em;
}

.page-8day-80k__primary-button {
    background-color: #ffcc00; /* Gold */
    color: #001f3f; /* Dark blue */
    border: 2px solid #ffcc00;
}

.page-8day-80k__primary-button:hover {
    background-color: #e6b800;
    border-color: #e6b800;
}

.page-8day-80k__secondary-button {
    background-color: transparent;
    color: #ffcc00;
    border: 2px solid #ffcc00;
}

.page-8day-80k__secondary-button:hover {
    background-color: #ffcc00;
    color: #001f3f;
}

/* About Bonus Section */
.page-8day-80k__about-bonus-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-8day-80k__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.page-8day-80k__feature-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-8day-80k__feature-item:hover {
    transform: translateY(-10px);
}

.page-8day-80k__feature-icon {
    width: 250px; /* Min 200px */
    height: 250px; /* Min 200px */
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
    max-width: 100%;
    height: auto;
}

.page-8day-80k__feature-title {
    font-size: 1.5em;
    color: #001f3f;
    margin-bottom: 10px;
}

.page-8day-80k__feature-text {
    color: #666;
}

/* Games Section */
.page-8day-80k__games-section {
    padding: 60px 0;
    background-color: #eef4f8;
}

.page-8day-80k__game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-8day-80k__game-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-8day-80k__game-card:hover {
    transform: translateY(-10px);
}

.page-8day-80k__game-image {
    width: 100%;
    height: 200px; /* Ensure images are not too small */
    object-fit: cover;
    max-width: 100%;
    height: auto;
}

.page-8day-80k__game-title {
    font-size: 1.4em;
    color: #001f3f;
    margin: 20px 15px 10px;
}

.page-8day-80k__game-text {
    color: #666;
    padding: 0 15px 20px;
}

.page-8day-80k__providers-text {
    text-align: center;
    margin-top: 40px;
    font-size: 1em;
    color: #777;
}

/* Why Choose Section */
.page-8day-80k__why-choose-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-8day-80k__advantage-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    list-style: none;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
}

.page-8day-80k__advantage-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
    box-sizing: border-box; /* Crucial for list item responsiveness */
}

.page-8day-80k__advantage-item:hover {
    transform: translateY(-10px);
}

.page-8day-80k__advantage-icon {
    width: 250px; /* Min 200px */
    height: 250px; /* Min 200px */
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
    max-width: 100%;
    height: auto;
}

.page-8day-80k__advantage-title {
    font-size: 1.5em;
    color: #001f3f;
    margin-bottom: 10px;
}

.page-8day-80k__advantage-description {
    color: #666;
}

/* How to Register Section */
.page-8day-80k__how-to-register-section {
    padding: 60px 0;
    background-color: #eef4f8;
}

.page-8day-80k__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.page-8day-80k__step-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.page-8day-80k__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #001f3f;
    color: #ffcc00;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
}

.page-8day-80k__step-title {
    font-size: 1.5em;
    color: #001f3f;
    margin-bottom: 10px;
}

.page-8day-80k__step-text {
    color: #666;
}

/* Promotion Section */
.page-8day-80k__promo-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-8day-80k__promo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-8day-80k__promo-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-8day-80k__promo-card:hover {
    transform: translateY(-10px);
}

.page-8day-80k__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    max-width: 100%;
    height: auto;
}

.page-8day-80k__promo-title {
    font-size: 1.4em;
    color: #001f3f;
    margin: 20px 15px 10px;
}

.page-8day-80k__promo-text {
    color: #666;
    padding: 0 15px 20px;
}

.page-8day-80k__promo-note {
    text-align: center;
    margin-top: 40px;
    font-size: 1em;
    color: #777;
}

/* FAQ Section */
.page-8day-80k__faq-section {
    padding: 60px 0;
    background-color: #eef4f8;
}

.page-8day-80k__faq-list {
    max-width: 900px;
    margin: 40px auto 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.page-8day-80k__faq-item {
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.page-8day-80k__faq-item:last-child {
    border-bottom: none;
}

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

.page-8day-80k__faq-question:hover {
    background-color: #f0f0f0;
}

.page-8day-80k__faq-question-text {
    font-size: 1.2em;
    color: #001f3f;
    margin: 0;
    pointer-events: none; /* Prevent text from blocking click event */
}

.page-8day-80k__faq-toggle {
    font-size: 1.8em;
    color: #ffcc00;
    font-weight: bold;
    line-height: 1;
    transition: transform 0.3s ease;
    pointer-events: none; /* Prevent toggle icon from blocking click event */
}

.page-8day-80k__faq-item.active .page-8day-80k__faq-toggle {
    transform: rotate(45deg); /* Plus sign rotates to form an X or minus */
}

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

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

/* Call to Action Section */
.page-8day-80k__cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #001f3f, #004080);
    color: #ffffff;
    text-align: center;
}

.page-8day-80k__cta-button {
    margin-top: 30px;
    background-color: #ffcc00;
    color: #001f3f;
    border-color: #ffcc00;
}

.page-8day-80k__cta-button:hover {
    background-color: #e6b800;
    border-color: #e6b800;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-8day-80k__hero-title {
        font-size: 3em;
    }
    .page-8day-80k__hero-description {
        font-size: 1.2em;
    }
    .page-8day-80k__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-8day-80k__hero-section {
        padding-top: 10px; /* Ensure small padding-top on mobile too */
        min-height: 70vh;
    }
    .page-8day-80k__hero-title {
        font-size: 2.5em;
    }
    .page-8day-80k__hero-description {
        font-size: 1em;
    }
    .page-8day-80k__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-8day-80k__primary-button,
    .page-8day-80k__secondary-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-8day-80k__section-title {
        font-size: 1.8em;
    }
    .page-8day-80k__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-8day-80k__container {
        padding: 15px;
    }

    /* List item responsive requirements */
    .page-8day-80k__advantage-list,
    .page-8day-80k__game-categories,
    .page-8day-80k__features-grid,
    .page-8day-80k__steps-grid,
    .page-8day-80k__promo-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }

    .page-8day-80k__advantage-item,
    .page-8day-80k__game-card,
    .page-8day-80k__feature-item,
    .page-8day-80k__step-item,
    .page-8day-80k__promo-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .page-8day-80k__advantage-description,
    .page-8day-80k__game-text,
    .page-8day-80k__feature-text,
    .page-8day-80k__step-text,
    .page-8day-80k__promo-text {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    .page-8day-80k__faq-question {
        padding: 15px 20px;
    }
    .page-8day-80k__faq-question-text {
        font-size: 1.1em;
    }
    .page-8day-80k__faq-answer {
        padding: 0 20px;
    }
    .page-8day-80k__faq-item.active .page-8day-80k__faq-answer {
        padding: 15px 20px !important;
    }
    .page-8day-80k__cta-section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .page-8day-80k__hero-title {
        font-size: 2em;
    }
    .page-8day-80k__hero-description {
        font-size: 0.9em;
    }
    .page-8day-80k__primary-button,
    .page-8day-80k__secondary-button {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-8day-80k__section-title {
        font-size: 1.6em;
    }
    .page-8day-80k__section-description {
        font-size: 0.9em;
    }
}
  