/* style/index-top-games-overview.css */

/* Base styles for the page content */
.page-index-top-games-overview {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #0d1a26; /* Darker background to complement main color */
    line-height: 1.6;
    padding-bottom: 50px;
}

.page-index-top-games-overview__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index-top-games-overview__highlight {
    color: #FFCC00; /* Accent color for highlights */
    font-weight: bold;
}

.page-index-top-games-overview__section-title {
    font-size: 2.5em;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.page-index-top-games-overview__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFCC00;
    border-radius: 2px;
}

.page-index-top-games-overview__text-content {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #e0e0e0;
}

/* Buttons */
.page-index-top-games-overview__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.page-index-top-games-overview__btn--primary {
    background-color: #FFCC00; /* Accent color for primary actions */
    color: #003366;
}

.page-index-top-games-overview__btn--primary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-index-top-games-overview__btn--secondary {
    background-color: transparent;
    color: #FFCC00;
    border: 2px solid #FFCC00;
}

.page-index-top-games-overview__btn--secondary:hover {
    background-color: #FFCC00;
    color: #003366;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-index-top-games-overview__btn--center {
    display: block;
    margin: 40px auto;
}

.page-index-top-games-overview__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

/* Hero Section */
.page-index-top-games-overview__hero-section {
    background: linear-gradient(135deg, #003366, #001a33);
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
}

.page-index-top-games-overview__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.page-index-top-games-overview__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 50px;
    opacity: 0.9;
}

.page-index-top-games-overview__hero-actions .page-index-top-games-overview__btn {
    margin: 0 15px;
}

/* Intro Section */
.page-index-top-games-overview__intro-section {
    padding: 80px 0;
    background-color: #002244;
}

.page-index-top-games-overview__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.page-index-top-games-overview__feature-item {
    background-color: #003366;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-top-games-overview__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-index-top-games-overview__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 204, 0, 0.5));
}

.page-index-top-games-overview__feature-title {
    font-size: 1.8em;
    color: #FFCC00;
    margin-bottom: 15px;
}

.page-index-top-games-overview__feature-description {
    font-size: 1em;
    color: #c0c0c0;
}

/* Games Overview Section */
.page-index-top-games-overview__games-overview {
    padding: 80px 0;
    background-color: #0d1a26;
}

.page-index-top-games-overview__game-category {
    margin-bottom: 70px;
    background-color: #002244;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-top-games-overview__category-title {
    font-size: 2.2em;
    color: #FFCC00;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.page-index-top-games-overview__category-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-index-top-games-overview__category-content--reverse {
    flex-direction: row-reverse;
}

.page-index-top-games-overview__category-image {
    width: 45%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.page-index-top-games-overview__category-text {
    flex-grow: 1;
    font-size: 1.05em;
    color: #e0e0e0;
}

.page-index-top-games-overview__category-text p {
    margin-bottom: 25px;
}

/* Promo Section */
.page-index-top-games-overview__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-index-top-games-overview__promo-item {
    background-color: #003366;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-index-top-games-overview__promo-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-index-top-games-overview__promo-title {
    font-size: 1.8em;
    color: #FFCC00;
    margin-bottom: 15px;
}

.page-index-top-games-overview__promo-description {
    font-size: 1em;
    color: #c0c0c0;
    margin-bottom: 25px;
}

/* CTA Section */
.page-index-top-games-overview__cta-section {
    background: linear-gradient(45deg, #003366, #004488);
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
    margin-top: 50px;
}

.page-index-top-games-overview__cta-actions .page-index-top-games-overview__btn {
    margin: 0 15px;
}

/* FAQ Section */
.page-index-top-games-overview__faq-section {
    padding: 80px 0;
    background-color: #002244;
}

.page-index-top-games-overview__faq-item {
    background-color: #003366;
    border-radius: 10px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-index-top-games-overview__faq-question {
    font-size: 1.5em;
    color: #FFCC00;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-index-top-games-overview__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    color: #FFCC00;
    transition: transform 0.3s ease;
}

.page-index-top-games-overview__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-index-top-games-overview__faq-answer {
    font-size: 1em;
    color: #c0c0c0;
    display: none;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 204, 0, 0.2);
    margin-top: 15px;
}

/* Contact Section */
.page-index-top-games-overview__contact-section {
    padding: 80px 0;
    background-color: #0d1a26;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-index-top-games-overview__hero-title {
        font-size: 3em;
    }
    .page-index-top-games-overview__hero-subtitle {
        font-size: 1.2em;
    }
    .page-index-top-games-overview__section-title {
        font-size: 2em;
    }
    .page-index-top-games-overview__game-category {
        padding: 30px;
    }
    .page-index-top-games-overview__category-content {
        flex-direction: column;
        text-align: center;
    }
    .page-index-top-games-overview__category-content--reverse {
        flex-direction: column;
    }
    .page-index-top-games-overview__category-image {
        width: 80%;
        margin-bottom: 30px;
    }
    .page-index-top-games-overview__category-text {
        width: 100%;
    }
    .page-index-top-games-overview__feature-grid, .page-index-top-games-overview__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-index-top-games-overview__cta-actions .page-index-top-games-overview__btn {
        margin: 10px auto;
        display: block;
        width: fit-content;
    }
}

@media (max-width: 768px) {
    .page-index-top-games-overview__hero-title {
        font-size: 2.5em;
    }
    .page-index-top-games-overview__hero-subtitle {
        font-size: 1em;
    }
    .page-index-top-games-overview__hero-actions .page-index-top-games-overview__btn {
        margin: 10px auto;
        display: block;
        width: fit-content;
    }
    .page-index-top-games-overview__section-title {
        font-size: 1.8em;
    }
    .page-index-top-games-overview__text-content {
        font-size: 1em;
    }
    .page-index-top-games-overview__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-index-top-games-overview__faq-question {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .page-index-top-games-overview__hero-title {
        font-size: 2em;
    }
    .page-index-top-games-overview__hero-section, .page-index-top-games-overview__intro-section, .page-index-top-games-overview__games-overview, .page-index-top-games-overview__cta-section, .page-index-top-games-overview__faq-section, .page-index-top-games-overview__contact-section {
        padding: 50px 0;
    }
    .page-index-top-games-overview__section-title {
        font-size: 1.5em;
        margin-bottom: 30px;
    }
    .page-index-top-games-overview__text-content {
        margin-bottom: 30px;
    }
    .page-index-top-games-overview__game-category {
        padding: 20px;
    }
    .page-index-top-games-overview__category-title {
        font-size: 1.6em;
        margin-bottom: 25px;
    }
    .page-index-top-games-overview__category-image {
        width: 100%;
    }
    .page-index-top-games-overview__faq-question {
        font-size: 1.1em;
    }
    .page-index-top-games-overview__btn {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-index-top-games-overview__btn--large {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}