/* style/index-game-features.css */
.page-index-game-features {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark background */
    line-height: 1.6;
}

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

.page-index-game-features__section {
    padding: 80px 0;
    background-color: #0A192F;
}

.page-index-game-features__section:nth-of-type(even) {
    background-color: #0F1F3F; /* Slightly lighter dark blue for variety */
}

.page-index-game-features__hero {
    background: linear-gradient(135deg, #0A192F 0%, #1A3A6A 100%); /* Deeper blue gradient */
    color: #FFFFFF;
    text-align: center;
    padding: 100px 0;
}

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

.page-index-game-features__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

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

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

.page-index-game-features__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark blue text on gold */
    border-color: #FFD700;
}

.page-index-game-features__btn--primary:hover {
    background-color: #E6C200;
    border-color: #E6C200;
    transform: translateY(-2px);
}

.page-index-game-features__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border-color: #FFD700;
}

.page-index-game-features__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-2px);
}

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

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

.page-index-game-features__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 20px;
}

.page-index-game-features__section-subtitle {
    font-size: 1.2em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
    color: #C0C0C0;
}

.page-index-game-features__content-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

.page-index-game-features__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-index-game-features__text-content {
    flex: 1;
}

.page-index-game-features__text-content p {
    margin-bottom: 20px;
    font-size: 1.1em;
}

.page-index-game-features__image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-index-game-features__image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

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

.page-index-game-features__feature-card, .page-index-game-features__promo-card {
    background-color: #0F1F3F;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-index-game-features__feature-card:hover, .page-index-game-features__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-index-game-features__card-image {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-index-game-features__card-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-index-game-features__card-description {
    font-size: 1em;
    color: #C0C0C0;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-index-game-features__cta {
    background: linear-gradient(90deg, #0A192F, #1A3A6A);
    text-align: center;
    padding: 80px 0;
}

.page-index-game-features__cta-content {
    max-width: 900px;
}

.page-index-game-features__cta-actions {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.page-index-game-features__cta-note {
    margin-top: 30px;
    font-size: 0.95em;
    color: #A0A0A0;
}

.page-index-game-features__inline-link {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-index-game-features__inline-link:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.page-index-game-features .highlight {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-game-features__hero-title {
        font-size: 2.8em;
    }

    .page-index-game-features__section-title {
        font-size: 2.2em;
    }

    .page-index-game-features__content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .page-index-game-features__content-wrapper--reverse {
        flex-direction: column-reverse;
    }

    .page-index-game-features__image-wrapper {
        margin-top: 30px;
    }

    .page-index-game-features__feature-grid, .page-index-game-features__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .page-index-game-features__cta-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-index-game-features__btn--large {
        width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .page-index-game-features__hero-title {
        font-size: 2.2em;
    }

    .page-index-game-features__hero-description {
        font-size: 1em;
    }

    .page-index-game-features__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-index-game-features__btn {
        width: 90%;
        margin: 0 auto;
    }

    .page-index-game-features__section {
        padding: 60px 0;
    }

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

    .page-index-game-features__section-subtitle {
        font-size: 1em;
        margin-bottom: 40px;
    }

    .page-index-game-features__card-title {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .page-index-game-features__hero-title {
        font-size: 1.8em;
    }

    .page-index-game-features__hero {
        padding: 80px 0;
    }

    .page-index-game-features__section {
        padding: 40px 0;
    }

    .page-index-game-features__feature-grid, .page-index-game-features__promo-grid {
        grid-template-columns: 1fr;
    }
}