/* style/index-popular-games.css */
.page-index-popular-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text on dark background */
    background-color: #0A203C; /* Main dark background */
}

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

.page-index-popular-games__hero-section {
    background: linear-gradient(135deg, #0A203C 0%, #30476e 100%); /* Dark blue gradient */
    color: #FFD700;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-popular-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-index-popular-games__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-index-popular-games__hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-index-popular-games__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.page-index-popular-games__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A203C; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-index-popular-games__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

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

.page-index-popular-games__btn--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

.page-index-popular-games__btn--inline {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    background-color: #FFD700;
    color: #0A203C;
    border: none;
}

.page-index-popular-games__btn--inline:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-index-popular-games__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

.page-index-popular-games__content-section {
    padding: 60px 0;
}

.page-index-popular-games__bg-dark {
    background-color: #1a324d; /* Slightly lighter dark blue for contrast */
}

.page-index-popular-games__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-index-popular-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-popular-games__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #f0f0f0;
    text-align: justify;
}

.page-index-popular-games__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-index-popular-games__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 3px solid #FFD700;
}

.page-index-popular-games__list,
.page-index-popular-games__numbered-list,
.page-index-popular-games__promo-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    margin-bottom: 30px;
}

.page-index-popular-games__list li,
.page-index-popular-games__promo-list li {
    background-color: rgba(255, 215, 0, 0.08); /* Light gold tint for list items */
    margin-bottom: 15px;
    padding: 15px 25px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    font-size: 1.05em;
    color: #f0f0f0;
}

.page-index-popular-games__list li strong,
.page-index-popular-games__promo-list li strong {
    color: #FFD700;
}

.page-index-popular-games__numbered-list li {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #f0f0f0;
    padding-left: 30px;
    position: relative;
}

.page-index-popular-games__numbered-list li::before {
    content: counter(list-item) ".";
    counter-increment: list-item;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    color: #FFD700;
    font-size: 1.2em;
}

.page-index-popular-games__conclusion-section {
    background: linear-gradient(135deg, #0A203C 0%, #30476e 100%);
    color: #f0f0f0;
    padding: 80px 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-index-popular-games__hero-title {
        font-size: 2.5em;
    }

    .page-index-popular-games__hero-description {
        font-size: 1em;
    }

    .page-index-popular-games__hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-index-popular-games__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

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

    .page-index-popular-games__text-content,
    .page-index-popular-games__list li,
    .page-index-popular-games__numbered-list li,
    .page-index-popular-games__promo-list li {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .page-index-popular-games__hero-title {
        font-size: 2em;
    }

    .page-index-popular-games__hero-description {
        font-size: 0.9em;
    }

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

    .page-index-popular-games__section-title {
        font-size: 1.8em;
    }
}