/* style/index-featured-games.css */
.page-index-featured-games {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

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

.page-index-featured-games__hero {
    background: linear-gradient(135deg, #000080 0%, #000040 100%); /* Dark blue gradient */
    padding: 80px 0;
    text-align: center;
    color: #FFD700; /* Gold text for contrast */
}

.page-index-featured-games__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold */
}

.page-index-featured-games__hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0; /* Lighter grey for readability */
}

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

.page-index-featured-games__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

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

.page-index-featured-games__btn--primary:hover {
    background-color: #e6c200; /* Darker gold */
    color: #000050;
}

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

.page-index-featured-games__btn--secondary:hover {
    background-color: #FFD700;
    color: #000080;
}

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

.page-index-featured-games__section {
    padding: 60px 0;
    text-align: center;
    background-color: #f9f9f9; /* Light background */
    color: #000080; /* Dark blue text for contrast */
}

.page-index-featured-games__section--dark {
    background-color: #000080; /* Dark blue background */
    color: #FFD700; /* Gold text for contrast */
}

.page-index-featured-games__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
}

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

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

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

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

.page-index-featured-games__game-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    color: #000080; /* Dark blue text */
}

.page-index-featured-games__section--dark .page-index-featured-games__game-card {
    background-color: #000050; /* Slightly lighter dark blue */
    color: #FFD700;
}

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

.page-index-featured-games__game-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid #FFD700; /* Gold separator */
}

.page-index-featured-games__game-title {
    font-size: 1.5em;
    padding: 15px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #000080;
}

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

.page-index-featured-games__game-text {
    padding: 0 15px 15px;
    font-size: 0.95em;
    flex-grow: 1;
    color: #555;
}

.page-index-featured-games__section--dark .page-index-featured-games__game-text {
    color: #e0e0e0;
}

.page-index-featured-games__game-card .page-index-featured-games__btn {
    margin: 0 15px 15px;
    align-self: flex-start;
}

.page-index-featured-games__features-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: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    color: #000080;
}

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

.page-index-featured-games__feature-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-index-featured-games__feature-title {
    font-size: 1.8em;
    margin-bottom: 10px;
    font-weight: bold;
    color: #000080;
}

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

.page-index-featured-games__center-cta {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-index-featured-games__offer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    background-color: #000050; /* Slightly lighter dark blue */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.page-index-featured-games__offer-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    border: 3px solid #FFD700;
}

.page-index-featured-games__offer-content {
    text-align: center;
    color: #FFD700;
}

.page-index-featured-games__offer-title {
    font-size: 2em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #FFD700;
}

.page-index-featured-games__offer-text {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: #e0e0e0;
}

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

.page-index-featured-games__step-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    color: #000080;
}

.page-index-featured-games__step-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 50%;
    border: 3px solid #FFD700;
}

.page-index-featured-games__step-title {
    font-size: 1.6em;
    margin-bottom: 10px;
    font-weight: bold;
    color: #000080;
}

.page-index-featured-games__step-text {
    font-size: 1em;
    color: #555;
}

.page-index-featured-games__cta-final {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #000080 0%, #000040 100%); /* Dark blue gradient */
    color: #FFD700;
}

.page-index-featured-games__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700;
}

.page-index-featured-games__cta-text {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

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

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

/* Responsive Design */
@media (min-width: 768px) {
    .page-index-featured-games__offer-block {
        flex-direction: row;
        text-align: left;
    }

    .page-index-featured-games__offer-content {
        text-align: left;
        flex: 1;
    }

    .page-index-featured-games__offer-img {
        max-width: 50%;
    }

    .page-index-featured-games__hero-title {
        font-size: 3.5em;
    }

    .page-index-featured-games__section-title {
        font-size: 3em;
    }
}

@media (max-width: 767px) {
    .page-index-featured-games__hero {
        padding: 60px 0;
    }

    .page-index-featured-games__hero-title {
        font-size: 2.5em;
    }

    .page-index-featured-games__hero-subtitle {
        font-size: 1em;
    }

    .page-index-featured-games__hero-actions, .page-index-featured-games__center-cta {
        flex-direction: column;
        gap: 15px;
    }

    .page-index-featured-games__btn {
        width: 80%;
        margin: 0 auto;
    }

    .page-index-featured-games__section {
        padding: 40px 0;
    }

    .page-index-featured-games__section-title {
        font-size: 2em;
    }

    .page-index-featured-games__section-description {
        font-size: 0.9em;
    }

    .page-index-featured-games__game-grid, .page-index-featured-games__features-grid, .page-index-featured-games__guide-steps {
        grid-template-columns: 1fr;
    }

    .page-index-featured-games__cta-title {
        font-size: 2.5em;
    }

    .page-index-featured-games__cta-text {
        font-size: 1em;
    }

    .page-index-featured-games__offer-block {
        flex-direction: column;
    }
}