/* style/resources-8day8-platform-features.css */

:root {
    --primary-color: #0A1931; /* Deep Navy Blue */
    --secondary-color: #FFD700; /* Gold */
    --text-light: #F0F2F5; /* Light Grey for text on dark background */
    --text-dark: #333333; /* Dark Grey for text on light background */
    --background-light: #ffffff; /* White background */
    --background-dark: #1A2E47; /* Slightly lighter than primary for sections */
    --border-color: #e0e0e0;
}

.page-resources-8day8-platform-features {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--background-light);
}

.page-resources-8day8-platform-features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-resources-8day8-platform-features__hero {
    background: linear-gradient(135deg, var(--primary-color), #2c3e50);
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-8day8-platform-features__hero-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-resources-8day8-platform-features__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.page-resources-8day8-platform-features__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: var(--text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-8day8-platform-features__cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-resources-8day8-platform-features__cta-button:hover {
    background-color: #ffe033;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* General Section Styling */
.page-resources-8day8-platform-features__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-8day8-platform-features__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.page-resources-8day8-platform-features__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: var(--text-dark);
}

.page-resources-8day8-platform-features__intro,
.page-resources-8day8-platform-features__features,
.page-resources-8day8-platform-features__games,
.page-resources-8day8-platform-features__promotions,
.page-resources-8day8-platform-features__registration,
.page-resources-8day8-platform-features__safety,
.page-resources-8day8-platform-features__faq,
.page-resources-8day8-platform-features__conclusion {
    padding: 80px 0;
    background-color: var(--background-light);
}

.page-resources-8day8-platform-features__intro {
    background-color: #f8f8f8;
}

.page-resources-8day8-platform-features__intro-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-resources-8day8-platform-features__intro-text {
    flex: 1;
    font-size: 1.05em;
}

.page-resources-8day8-platform-features__intro-text p {
    margin-bottom: 1em;
}

.page-resources-8day8-platform-features__intro-image {
    flex: 1;
    text-align: center;
}

.page-resources-8day8-platform-features__image-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Features Section */
.page-resources-8day8-platform-features__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-resources-8day8-platform-features__feature-item {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-resources-8day8-platform-features__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-8day8-platform-features__feature-icon {
    width: 150px; /* Min size 200x200, but these are conceptual icons */
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-resources-8day8-platform-features__feature-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-resources-8day8-platform-features__feature-item p {
    font-size: 1em;
    color: var(--text-dark);
}

/* Games Section */
.page-resources-8day8-platform-features__games {
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-resources-8day8-platform-features__games .page-resources-8day8-platform-features__section-title {
    color: var(--secondary-color);
}

.page-resources-8day8-platform-features__games .page-resources-8day8-platform-features__section-description {
    color: var(--text-light);
}

.page-resources-8day8-platform-features__game-category {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
}

.page-resources-8day8-platform-features__game-category:last-child {
    margin-bottom: 0;
}

.page-resources-8day8-platform-features__game-category--reverse {
    flex-direction: row-reverse;
}

.page-resources-8day8-platform-features__game-image-wrapper {
    flex: 1;
}

.page-resources-8day8-platform-features__game-content {
    flex: 1;
}

.page-resources-8day8-platform-features__game-title {
    font-size: 2em;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-resources-8day8-platform-features__game-content p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--text-light);
}

.page-resources-8day8-platform-features__cta-link {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 5px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.page-resources-8day8-platform-features__cta-link:hover {
    color: #ffe033;
    border-color: #ffe033;
}

/* Promotions Section */
.page-resources-8day8-platform-features__promotions {
    background-color: #f8f8f8;
}

.page-resources-8day8-platform-features__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-resources-8day8-platform-features__promo-card {
    background-color: var(--background-light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid var(--border-color);
}

.page-resources-8day8-platform-features__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-8day8-platform-features__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.page-resources-8day8-platform-features__promo-card h3 {
    font-size: 1.4em;
    color: var(--primary-color);
    margin: 20px 15px 10px 15px;
}

.page-resources-8day8-platform-features__promo-card p {
    font-size: 0.95em;
    color: var(--text-dark);
    padding: 0 15px 20px 15px;
}

.page-resources-8day8-platform-features__promo-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-resources-8day8-platform-features__promo-button:hover {
    background-color: #1A2E47;
    color: #ffe033;
}

.page-resources-8day8-platform-features__action-area {
    text-align: center;
    margin-top: 50px;
}

.page-resources-8day8-platform-features__cta-button--secondary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(10, 25, 49, 0.4);
}

.page-resources-8day8-platform-features__cta-button--secondary:hover {
    background-color: #1A2E47;
    color: #ffe033;
    box-shadow: 0 6px 20px rgba(10, 25, 49, 0.6);
}

/* Registration Section */
.page-resources-8day8-platform-features__registration {
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-resources-8day8-platform-features__registration .page-resources-8day8-platform-features__section-title {
    color: var(--secondary-color);
}

.page-resources-8day8-platform-features__registration .page-resources-8day8-platform-features__section-description {
    color: var(--text-light);
}

.page-resources-8day8-platform-features__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    counter-reset: step-counter;
}

.page-resources-8day8-platform-features__step-item {
    background-color: #2c3e50; /* Darker background for steps */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-top: 60px;
}

.page-resources-8day8-platform-features__step-item::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--secondary-color);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    border: 3px solid var(--text-light);
}

.page-resources-8day8-platform-features__step-title {
    font-size: 1.5em;
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-align: center;
}

.page-resources-8day8-platform-features__step-item p {
    font-size: 1em;
    color: var(--text-light);
    text-align: center;
}

/* Safety Section */
.page-resources-8day8-platform-features__safety {
    background-color: #f0f0f0;
}

.page-resources-8day8-platform-features__safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-resources-8day8-platform-features__safety-item {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid var(--border-color);
}

.page-resources-8day8-platform-features__safety-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-resources-8day8-platform-features__safety-item p {
    font-size: 1em;
    color: var(--text-dark);
}

/* FAQ Section */
.page-resources-8day8-platform-features__faq {
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-resources-8day8-platform-features__faq .page-resources-8day8-platform-features__section-title {
    color: var(--secondary-color);
}

.page-resources-8day8-platform-features__faq .page-resources-8day8-platform-features__section-description {
    color: var(--text-light);
}

.page-resources-8day8-platform-features__faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #2c3e50;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: var(--primary-color);
    color: var(--text-light);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #1A2E47;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: var(--secondary-color);
}

.faq-toggle {
    font-size: 2em;
    font-weight: bold;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed */
    padding: 25px;
    background: #2c3e50;
}

.faq-answer p {
    margin: 0;
    font-size: 1em;
}

/* Conclusion Section */
.page-resources-8day8-platform-features__conclusion {
    text-align: center;
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-resources-8day8-platform-features__conclusion .page-resources-8day8-platform-features__section-title {
    color: var(--secondary-color);
}

.page-resources-8day8-platform-features__conclusion .page-resources-8day8-platform-features__section-description {
    color: var(--text-light);
    margin-bottom: 30px;
}

.page-resources-8day8-platform-features__conclusion p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-8day8-platform-features__hero-title {
        font-size: 2.5em;
    }
    .page-resources-8day8-platform-features__section-title {
        font-size: 2em;
    }
    .page-resources-8day8-platform-features__intro-content,
    .page-resources-8day8-platform-features__game-category {
        flex-direction: column;
        gap: 30px;
    }
    .page-resources-8day8-platform-features__game-category--reverse {
        flex-direction: column;
    }
    .page-resources-8day8-platform-features__game-image-wrapper,
    .page-resources-8day8-platform-features__game-content {
        flex: none;
        width: 100%;
    }
    .page-resources-8day8-platform-features__feature-grid,
    .page-resources-8day8-platform-features__promo-grid,
    .page-resources-8day8-platform-features__safety-grid,
    .page-resources-8day8-platform-features__steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-resources-8day8-platform-features__hero,
    .page-resources-8day8-platform-features__intro,
    .page-resources-8day8-platform-features__features,
    .page-resources-8day8-platform-features__games,
    .page-resources-8day8-platform-features__promotions,
    .page-resources-8day8-platform-features__registration,
    .page-resources-8day8-platform-features__safety,
    .page-resources-8day8-platform-features__faq,
    .page-resources-8day8-platform-features__conclusion {
        padding: 60px 0;
    }
    .page-resources-8day8-platform-features__section-description {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .page-resources-8day8-platform-features__hero-title {
        font-size: 2em;
    }
    .page-resources-8day8-platform-features__hero-subtitle {
        font-size: 1.1em;
    }
    .page-resources-8day8-platform-features__cta-button {
        padding: 15px 30px;
        font-size: 1em;
    }
    .page-resources-8day8-platform-features__section-title {
        font-size: 1.8em;
    }
    .page-resources-8day8-platform-features__feature-grid,
    .page-resources-8day8-platform-features__promo-grid,
    .page-resources-8day8-platform-features__safety-grid,
    .page-resources-8day8-platform-features__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-resources-8day8-platform-features__intro-text,
    .page-resources-8day8-platform-features__intro-image,
    .page-resources-8day8-platform-features__game-content {
        text-align: center;
    }
    .page-resources-8day8-platform-features__cta-link {
        margin-top: 15px;
    }
    .faq-question h3 {
        font-size: 1.1em;
    }
    .faq-question {
        padding: 15px 20px;
    }
    .faq-answer {
        padding: 15px 20px;
    }
    .page-resources-8day8-platform-features__step-item::before {
        width: 45px;
        height: 45px;
        font-size: 1.6em;
    }
    .page-resources-8day8-platform-features__step-item {
        padding-top: 50px;
    }
}

@media (max-width: 480px) {
    .page-resources-8day8-platform-features__hero-title {
        font-size: 1.8em;
    }
    .page-resources-8day8-platform-features__hero-subtitle {
        font-size: 1em;
    }
    .page-resources-8day8-platform-features__section-title {
        font-size: 1.5em;
    }
    .page-resources-8day8-platform-features__cta-button {
        padding: 12px 25px;
        font-size: 0.9em;
    }
    .page-resources-8day8-platform-features__feature-icon {
        width: 120px;
        height: 120px;
    }
    .page-resources-8day8-platform-features__feature-title,
    .page-resources-8day8-platform-features__game-title,
    .page-resources-8day8-platform-features__promo-title,
    .page-resources-8day8-platform-features__safety-title,
    .page-resources-8day8-platform-features__step-title {
        font-size: 1.3em;
    }
    .page-resources-8day8-platform-features__promo-image {
        height: 180px;
    }
    .page-resources-8day8-platform-features__promo-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}