/* style/e-games-game-features.css */
.page-e-games-game-features {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark backgrounds */
    background-color: #0F1A2D; /* A darker variant of main color for overall background */
}

.page-e-games-game-features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-e-games-game-features__hero {
    background: linear-gradient(135deg, #1A2B4C, #0F1A2D);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-e-games-game-features__hero-title {
    font-size: 3.2em;
    color: #F0B90B; /* Auxiliary color for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-e-games-game-features__hero-subtitle {
    font-size: 1.4em;
    color: #C0C0C0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-e-games-game-features__hero-image {
    width: 90%;
    max-width: 900px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-e-games-game-features__section {
    padding: 60px 0;
    background-color: #1A2B4C;
    border-bottom: 1px solid rgba(240, 185, 11, 0.2);
}

.page-e-games-game-features__section--dark {
    background-color: #0F1A2D;
}

.page-e-games-game-features__section-title {
    font-size: 2.5em;
    color: #F0B90B;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-e-games-game-features__text {
    font-size: 1.1em;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: #E0E0E0;
}

.page-e-games-game-features__feature-grid, .page-e-games-game-features__step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-e-games-game-features__feature-item, .page-e-games-game-features__step-item, .page-e-games-game-features__cta-item {
    background-color: #2A3E5C; /* Slightly lighter dark blue for cards */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-e-games-game-features__feature-item:hover, .page-e-games-game-features__step-item:hover, .page-e-games-game-features__cta-item:hover {
    transform: translateY(-10px);
    background-color: #3B527A; /* Even lighter on hover */
}

.page-e-games-game-features__feature-icon, .page-e-games-game-features__step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #F0B90B);
}

.page-e-games-game-features__feature-title, .page-e-games-game-features__step-title, .page-e-games-game-features__cta-title {
    font-size: 1.5em;
    color: #F0B90B;
    margin-bottom: 15px;
}

.page-e-games-game-features__list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
}

.page-e-games-game-features__list li {
    background-color: #2A3E5C;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #F0B90B;
    border-radius: 5px;
    font-size: 1.1em;
    color: #E0E0E0;
    line-height: 1.6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-e-games-game-features__list li strong {
    color: #F0B90B;
}

.page-e-games-game-features__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
    cursor: pointer;
}

.page-e-games-game-features__btn--primary {
    background-color: #F0B90B;
    color: #1A2B4C;
    border: 2px solid #F0B90B;
}

.page-e-games-game-features__btn--primary:hover {
    background-color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(240, 185, 11, 0.4);
}

.page-e-games-game-features__btn--secondary {
    background-color: transparent;
    color: #F0B90B;
    border: 2px solid #F0B90B;
}

.page-e-games-game-features__btn--secondary:hover {
    background-color: #F0B90B;
    color: #1A2B4C;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(240, 185, 11, 0.4);
}

.page-e-games-game-features__cta-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-e-games-game-features__cta-item {
    background-color: #2A3E5C;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-e-games-game-features__final-cta {
    font-size: 1.2em;
    text-align: center;
    margin-top: 60px;
    color: #E0E0E0;
}

.page-e-games-game-features__link {
    color: #F0B90B;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-e-games-game-features__link:hover {
    color: #FFD700;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-e-games-game-features__hero-title {
        font-size: 2.5em;
    }

    .page-e-games-game-features__hero-subtitle {
        font-size: 1.2em;
    }

    .page-e-games-game-features__section-title {
        font-size: 2em;
    }

    .page-e-games-game-features__text {
        font-size: 1em;
    }

    .page-e-games-game-features__feature-grid, .page-e-games-game-features__step-grid, .page-e-games-game-features__cta-group {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-e-games-game-features__hero {
        padding: 60px 0;
    }

    .page-e-games-game-features__hero-title {
        font-size: 2em;
    }

    .page-e-games-game-features__hero-subtitle {
        font-size: 1em;
    }

    .page-e-games-game-features__section-title {
        font-size: 1.8em;
    }

    .page-e-games-game-features__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-e-games-game-features__feature-item, .page-e-games-game-features__step-item, .page-e-games-game-features__cta-item {
        padding: 20px;
    }

    .page-e-games-game-features__feature-title, .page-e-games-game-features__step-title, .page-e-games-game-features__cta-title {
        font-size: 1.3em;
    }
}