/* style/index-featured-games.css */
.page-index-featured-games {
    font-family: 'Arial', sans-serif;
    color: #F8F8F8; /* Light text for dark backgrounds */
    line-height: 1.6;
}

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

.page-index-featured-games__hero {
    background: linear-gradient(135deg, #1A0D3B 0%, #3a1a70 100%); /* Dark purple/blue gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero text to stand out */
    position: relative;
    overflow: hidden;
}

.page-index-featured-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    font-weight: bold;
    line-height: 1.2;
}

.page-index-featured-games__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0; /* Slightly lighter for readability */
}

.page-index-featured-games__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.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;
    border: none;
}

.page-index-featured-games__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #1A0D3B; /* Dark text for gold background */
}

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

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

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

.page-index-featured-games__btn--center {
    display: block;
    margin: 40px auto 20px auto;
    max-width: 300px;
    text-align: center;
}

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

.page-index-featured-games__section {
    padding: 60px 0;
    background-color: #2A1A4E; /* Slightly lighter dark background */
    color: #F8F8F8;
}

.page-index-featured-games__section:nth-of-type(even) {
    background-color: #1A0D3B; /* Main dark background */
}

.page-index-featured-games__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for section titles */
    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: #FFD700;
    border-radius: 2px;
}

.page-index-featured-games__sub-title {
    font-size: 2em;
    color: #FFD700; /* Gold for sub titles */
    margin-top: 50px;
    margin-bottom: 25px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 10px;
}

.page-index-featured-games__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-index-featured-games__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-featured-games__image--full-width {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

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

.page-index-featured-games__feature-item {
    background-color: #1A0D3B; /* Main dark background */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-index-featured-games__feature-item:hover {
    transform: translateY(-10px);
}

.page-index-featured-games__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-index-featured-games__feature-title {
    font-size: 1.5em;
    color: #FFD700; /* Gold for feature titles */
    margin-bottom: 15px;
}

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

.page-index-featured-games__steps-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 40px 0;
}

.page-index-featured-games__steps-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
    padding-left: 70px;
}

.page-index-featured-games__steps-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: #FFD700; /* Gold */
    color: #1A0D3B; /* Dark text for gold background */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-featured-games__step-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for step titles */
    margin-top: 0;
    margin-bottom: 10px;
}

.page-index-featured-games .highlight {
    color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-index-featured-games__hero-title {
        font-size: 2.8em;
    }
    .page-index-featured-games__section-title {
        font-size: 2.2em;
    }
    .page-index-featured-games__sub-title {
        font-size: 1.7em;
    }
    .page-index-featured-games__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-featured-games__btn {
        width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .page-index-featured-games__hero {
        padding: 80px 0;
    }
    .page-index-featured-games__hero-title {
        font-size: 2.2em;
    }
    .page-index-featured-games__hero-subtitle {
        font-size: 1.1em;
    }
    .page-index-featured-games__section {
        padding: 40px 0;
    }
    .page-index-featured-games__section-title {
        font-size: 1.8em;
    }
    .page-index-featured-games__sub-title {
        font-size: 1.5em;
    }
    .page-index-featured-games__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-index-featured-games__steps-list li {
        padding-left: 60px;
    }
    .page-index-featured-games__steps-list li::before {
        width: 45px;
        height: 45px;
        font-size: 1.5em;
    }
    .page-index-featured-games__step-title {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .page-index-featured-games__hero-title {
        font-size: 1.8em;
    }
    .page-index-featured-games__hero-subtitle {
        font-size: 1em;
    }
    .page-index-featured-games__btn {
        width: 90%;
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-index-featured-games__section-title {
        font-size: 1.5em;
    }
    .page-index-featured-games__sub-title {
        font-size: 1.3em;
    }
    .page-index-featured-games__text-content {
        font-size: 0.95em;
    }
    .page-index-featured-games__feature-icon {
        width: 60px;
        height: 60px;
    }
    .page-index-featured-games__feature-title {
        font-size: 1.3em;
    }
    .page-index-featured-games__steps-list li {
        padding-left: 50px;
    }
    .page-index-featured-games__steps-list li::before {
        width: 40px;
        height: 40px;
        font-size: 1.3em;
    }
    .page-index-featured-games__step-title {
        font-size: 1.3em;
    }
}