/* style/index-featured-games.css */
.page-index-featured-games {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-index-featured-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index-featured-games__hero-section {
    background: linear-gradient(135deg, #0A6847 0%, #1A9260 100%); /* Darker green gradient */
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-featured-games__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_pattern,geometric,dark_green_gold]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-index-featured-games__hero-section > .page-index-featured-games__container {
    position: relative;
    z-index: 1;
}

.page-index-featured-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #FFD700; /* Gold for title for strong contrast */
}

.page-index-featured-games__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-index-featured-games__hero-actions .page-index-featured-games__btn {
    margin: 0 10px;
}

.page-index-featured-games__btn {
    display: inline-block;
    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;
    cursor: pointer;
}

.page-index-featured-games__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A6847; /* Dark green */
    border: 2px solid #FFD700;
}

.page-index-featured-games__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-index-featured-games__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-index-featured-games__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A6847;
    transform: translateY(-3px);
}

.page-index-featured-games__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-index-featured-games__btn--large {
    padding: 20px 40px;
    font-size: 1.3em;
}

.page-index-featured-games__btn--inline {
    padding: 8px 15px;
    font-size: 0.9em;
    margin-top: 15px;
    border-radius: 5px;
}

.page-index-featured-games__section {
    padding: 80px 0;
    text-align: center;
}

.page-index-featured-games__section--about {
    background-color: #F0F2F5;
}

.page-index-featured-games__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #0A6847;
    font-weight: 700;
}

.page-index-featured-games__section-description {
    font-size: 1.1em;
    color: #555;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.page-index-featured-games__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-featured-games__feature-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-featured-games__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-index-featured-games__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-index-featured-games__feature-title {
    font-size: 1.6em;
    color: #0A6847;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-index-featured-games__feature-description {
    font-size: 1em;
    color: #666;
}

.page-index-featured-games__section--games {
    background-color: #FFFFFF;
}

.page-index-featured-games__game-category {
    margin-bottom: 60px;
    text-align: left;
}

.page-index-featured-games__category-title {
    font-size: 2em;
    color: #0A6847;
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

.page-index-featured-games__category-description {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 30px;
    text-align: center;
}

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

.page-index-featured-games__game-card {
    background-color: #F0F2F5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding-bottom: 20px;
}

.page-index-featured-games__game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-index-featured-games__game-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 15px;
}

.page-index-featured-games__game-name {
    font-size: 1.5em;
    color: #0A6847;
    margin-bottom: 10px;
    font-weight: 600;
    padding: 0 15px;
}

.page-index-featured-games__game-short-desc {
    font-size: 0.95em;
    color: #777;
    margin-bottom: 20px;
    padding: 0 15px;
}

.page-index-featured-games__section--guide {
    background-color: #F0F2F5;
}

.page-index-featured-games__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-featured-games__step-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-index-featured-games__step-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-index-featured-games__step-title {
    font-size: 1.4em;
    color: #0A6847;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-index-featured-games__step-description {
    font-size: 0.95em;
    color: #666;
}

.page-index-featured-games__section--promotions {
    background-color: #E6F3EE; /* Lighter green background for promotions */
}

.page-index-featured-games__promotion-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-featured-games__promotion-card {
    background-color: #FFFFFF;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-featured-games__promotion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-index-featured-games__promotion-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-index-featured-games__promotion-title {
    font-size: 1.4em;
    color: #0A6847;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-index-featured-games__promotion-desc {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 20px;
}

.page-index-featured-games__section--faq {
    background-color: #FFFFFF;
}

.page-index-featured-games__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
    text-align: left;
}

.page-index-featured-games__faq-item {
    background-color: #F9F9F9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-index-featured-games__faq-item:hover {
    border-color: #0A6847;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-index-featured-games__faq-question {
    font-size: 1.2em;
    color: #0A6847;
    margin-bottom: 10px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-index-featured-games__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-index-featured-games__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-index-featured-games__faq-answer {
    font-size: 1em;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
    padding-top: 0;
}

.page-index-featured-games__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    opacity: 1;
    padding-top: 15px;
}

.page-index-featured-games__section--cta {
    background-color: #0A6847;
    color: #FFFFFF;
    padding: 80px 0;
}

.page-index-featured-games__section--cta .page-index-featured-games__section-title {
    color: #FFD700;
}

.page-index-featured-games__section--cta .page-index-featured-games__section-description {
    color: #e0e0e0;
}

.highlight {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-featured-games__hero-title {
        font-size: 2.8em;
    }
    .page-index-featured-games__hero-subtitle {
        font-size: 1.1em;
    }
    .page-index-featured-games__section-title {
        font-size: 2em;
    }
    .page-index-featured-games__game-grid, .page-index-featured-games__grid, .page-index-featured-games__guide-steps, .page-index-featured-games__promotion-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-index-featured-games__hero-title {
        font-size: 2.2em;
    }
    .page-index-featured-games__hero-subtitle {
        font-size: 1em;
    }
    .page-index-featured-games__hero-actions .page-index-featured-games__btn {
        display: block;
        margin: 15px auto;
        max-width: 280px;
    }
    .page-index-featured-games__section {
        padding: 60px 0;
    }
    .page-index-featured-games__section-title {
        font-size: 1.8em;
    }
    .page-index-featured-games__category-title {
        font-size: 1.6em;
    }
    .page-index-featured-games__game-grid, .page-index-featured-games__grid, .page-index-featured-games__guide-steps, .page-index-featured-games__promotion-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-index-featured-games__hero-title {
        font-size: 1.8em;
    }
    .page-index-featured-games__hero-subtitle {
        font-size: 0.9em;
    }
    .page-index-featured-games__btn {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-index-featured-games__section-title {
        font-size: 1.5em;
    }
    .page-index-featured-games__category-title {
        font-size: 1.4em;
    }
    .page-index-featured-games__game-card, .page-index-featured-games__feature-item, .page-index-featured-games__step-item, .page-index-featured-games__promotion-card {
        padding: 20px;
    }
    .page-index-featured-games__faq-item {
        padding: 15px 20px;
    }
    .page-index-featured-games__faq-question {
        font-size: 1.1em;
    }
}