/* style/index-featured-games.css */
.page-index-featured-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    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, #1A237E, #3F51B5);
    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,geometric,pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-index-featured-games__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #FFB300;
    position: relative;
    z-index: 1;
}

.page-index-featured-games__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-index-featured-games__hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.page-index-featured-games__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1em;
    border: 2px solid transparent;
}

.page-index-featured-games__btn--primary {
    background-color: #FFB300;
    color: #1A237E;
    border-color: #FFB300;
}

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

.page-index-featured-games__btn--secondary {
    background-color: transparent;
    color: #FFB300;
    border-color: #FFB300;
}

.page-index-featured-games__btn--secondary:hover {
    background-color: #FFB300;
    color: #1A237E;
    transform: translateY(-3px);
}

.page-index-featured-games__section-title {
    font-size: 2.5em;
    color: #1A237E;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-index-featured-games__intro-section,
.page-index-featured-games__games-showcase,
.page-index-featured-games__cta-section,
.page-index-featured-games__responsible-gambling,
.page-index-featured-games__faq-section {
    padding: 80px 0;
}

.page-index-featured-games__intro-section {
    background-color: #FFFFFF;
}

.page-index-featured-games__text-content {
    font-size: 1.1em;
    color: #444;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
}

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

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

.page-index-featured-games__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

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

.page-index-featured-games__feature-title {
    font-size: 1.4em;
    color: #1A237E;
    margin-bottom: 10px;
}

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

.page-index-featured-games__games-showcase {
    background-color: #eef2f5;
}

.page-index-featured-games__game-category {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.page-index-featured-games__game-category:last-child {
    margin-bottom: 0;
}

.page-index-featured-games__game-category-title {
    font-size: 2em;
    color: #1A237E;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.page-index-featured-games__game-category-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: #FFB300;
    border-radius: 1.5px;
}

.page-index-featured-games__game-description {
    font-size: 1.05em;
    color: #555;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-featured-games__game-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-index-featured-games__cta-section {
    background: linear-gradient(135deg, #1A237E, #3F51B5);
    color: #FFFFFF;
    text-align: center;
    padding: 100px 0;
}

.page-index-featured-games__cta-section .page-index-featured-games__section-title {
    color: #FFB300;
}

.page-index-featured-games__cta-section .page-index-featured-games__text-content {
    color: #f0f0f0;
}

.page-index-featured-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 50px;
}

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

.page-index-featured-games__responsible-gambling {
    background-color: #fcfcfc;
    text-align: center;
    padding: 60px 0;
    border-top: 1px solid #eee;
}

.page-index-featured-games__responsible-gambling .page-index-featured-games__section-title {
    font-size: 2em;
    margin-bottom: 30px;
}

.page-index-featured-games__responsible-gambling .page-index-featured-games__text-content {
    max-width: 800px;
    margin-bottom: 40px;
}

.page-index-featured-games__btn--text {
    background: none;
    border: none;
    color: #1A237E;
    text-decoration: underline;
    padding: 0;
    font-size: 1em;
}

.page-index-featured-games__btn--text:hover {
    color: #FFB300;
    text-decoration: none;
    transform: none;
}

.page-index-featured-games__faq-section {
    background-color: #FFFFFF;
    padding-bottom: 100px;
}

.page-index-featured-games__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-featured-games__faq-question {
    font-size: 1.3em;
    color: #1A237E;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-index-featured-games__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    color: #FFB300;
    font-weight: bold;
}

.page-index-featured-games__faq-answer {
    font-size: 1em;
    color: #666;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

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

.page-index-featured-games__faq-item.active .page-index-featured-games__faq-question::after {
    content: '-';
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-featured-games__hero-title {
        font-size: 2.8em;
    }
    .page-index-featured-games__section-title {
        font-size: 2em;
    }
    .page-index-featured-games__game-category-title {
        font-size: 1.8em;
    }
    .page-index-featured-games__features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-index-featured-games__hero-title {
        font-size: 2.2em;
    }
    .page-index-featured-games__hero-subtitle {
        font-size: 1.1em;
    }
    .page-index-featured-games__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-featured-games__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-index-featured-games__section-title {
        font-size: 1.8em;
    }
    .page-index-featured-games__text-content {
        font-size: 1em;
    }
    .page-index-featured-games__game-category {
        padding: 30px;
    }
    .page-index-featured-games__game-category-title {
        font-size: 1.6em;
    }
    .page-index-featured-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .page-index-featured-games__hero-title {
        font-size: 1.8em;
    }
    .page-index-featured-games__hero-subtitle {
        font-size: 1em;
    }
    .page-index-featured-games__hero-section,
    .page-index-featured-games__cta-section {
        padding: 60px 0;
    }
    .page-index-featured-games__section-title {
        font-size: 1.5em;
    }
    .page-index-featured-games__intro-section,
    .page-index-featured-games__games-showcase,
    .page-index-featured-games__responsible-gambling,
    .page-index-featured-games__faq-section {
        padding: 40px 0;
    }
    .page-index-featured-games__game-category {
        padding: 20px;
    }
    .page-index-featured-games__game-category-title {
        font-size: 1.4em;
    }
    .page-index-featured-games__faq-question {
        font-size: 1.1em;
    }
}