/* style/index-game-highlights.css */
.page-index-game-highlights {
    font-family: 'Arial', sans-serif;
    color: #e5d1bb; /* Light contrast to dark blue primary */
    background-color: #1A2E44; /* Primary dark blue */
    line-height: 1.6;
}

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

.page-index-game-highlights__hero-section {
    background: linear-gradient(135deg, #1A2E44 0%, #3a5c7c 100%);
    color: #FFD700; /* Gold for hero title */
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-index-game-highlights__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

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

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

.page-index-game-highlights__btn--primary {
    background-color: #FFD700;
    color: #1A2E44;
    border: 2px solid #FFD700;
}

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

.page-index-game-highlights__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-index-game-highlights__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A2E44;
    transform: translateY(-2px);
}

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

.page-index-game-highlights__btn--large {
    padding: 15px 35px;
    font-size: 1.3em;
}

.page-index-game-highlights__section {
    padding: 60px 0;
    text-align: center;
}

.page-index-game-highlights__section--intro {
    background-color: #1A2E44;
    color: #e5d1bb;
}

.page-index-game-highlights__section-title {
    font-size: 2.2em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-index-game-highlights__section-subtitle {
    font-size: 1.1em;
    color: #b0c4de; /* Lighter blue for subtitle */
    margin-bottom: 40px;
}

.page-index-game-highlights__content-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    margin-top: 40px;
}

.page-index-game-highlights__content-grid .page-index-game-highlights__text-content {
    flex: 1;
}

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

.page-index-game-highlights__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-game-highlights__section--games {
    background-color: #2a4561; /* Slightly lighter dark blue */
    color: #e5d1bb;
}

.page-index-game-highlights__game-category {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    text-align: left;
}

.page-index-game-highlights__game-category--reverse {
    flex-direction: row-reverse;
}

.page-index-game-highlights__game-category-image {
    flex: 1;
    min-width: 300px;
}

.page-index-game-highlights__game-category-content {
    flex: 2;
}

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

.page-index-game-highlights__game-category-content p {
    margin-bottom: 15px;
}

.page-index-game-highlights__section--advantages {
    background-color: #1A2E44;
    color: #e5d1bb;
}

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

.page-index-game-highlights__advantage-item {
    background-color: #2a4561;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.page-index-game-highlights__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-index-game-highlights__advantage-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-index-game-highlights__cta-bottom {
    margin-top: 50px;
}

.page-index-game-highlights__section--promotions {
    background-color: #2a4561;
    color: #e5d1bb;
}

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

.page-index-game-highlights__promo-item {
    background-color: #1A2E44;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-game-highlights__promo-item .page-index-game-highlights__image {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.page-index-game-highlights__promo-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-index-game-highlights__promo-note {
    margin-top: 40px;
    font-style: italic;
    color: #b0c4de;
}

.page-index-game-highlights__section--how-to {
    background-color: #1A2E44;
    color: #e5d1bb;
}

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

.page-index-game-highlights__step-item {
    background-color: #2a4561;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-game-highlights__step-number {
    background-color: #FFD700;
    color: #1A2E44;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
    margin: 0 auto 20px;
}

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

.page-index-game-highlights__section--responsible {
    background-color: #2a4561;
    color: #e5d1bb;
}

.page-index-game-highlights__section--cta-final {
    background: linear-gradient(45deg, #FFD700, #e5c100);
    color: #1A2E44;
    padding: 80px 0;
}

.page-index-game-highlights__section--cta-final .page-index-game-highlights__section-title,
.page-index-game-highlights__section--cta-final .page-index-game-highlights__section-subtitle {
    color: #1A2E44;
}

.page-index-game-highlights__section--cta-final .page-index-game-highlights__btn--primary {
    background-color: #1A2E44;
    color: #FFD700;
    border-color: #1A2E44;
}

.page-index-game-highlights__section--cta-final .page-index-game-highlights__btn--primary:hover {
    background-color: #0d1a2b;
    border-color: #0d1a2b;
    color: #FFD700;
}

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

.page-index-game-highlights .keyword {
    font-weight: bold;
    color: #FFD700;
}

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

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

    .page-index-game-highlights__content-grid,
    .page-index-game-highlights__game-category {
        flex-direction: column;
        text-align: center;
    }

    .page-index-game-highlights__game-category--reverse {
        flex-direction: column;
    }

    .page-index-game-highlights__content-grid .page-index-game-highlights__text-content,
    .page-index-game-highlights__game-category-content {
        order: 2;
    }

    .page-index-game-highlights__content-grid .page-index-game-highlights__image-wrapper,
    .page-index-game-highlights__game-category-image {
        order: 1;
        margin-bottom: 30px;
    }
}

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

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

    .page-index-game-highlights__section-title {
        font-size: 1.6em;
    }

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

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

    .page-index-game-highlights__btn--large {
        padding: 12px 25px;
        font-size: 1.1em;
    }

    .page-index-game-highlights__advantages-grid,
    .page-index-game-highlights__promo-grid,
    .page-index-game-highlights__steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-index-game-highlights__hero-section,
    .page-index-game-highlights__section {
        padding: 40px 0;
    }

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

    .page-index-game-highlights__section-title {
        font-size: 1.4em;
    }

    .page-index-game-highlights__game-category-title {
        font-size: 1.3em;
    }
}