/* style/index-top-games.css */
.page-index-top-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0;
    background-color: #0d1247; /* Darker variant of #1A237E for main background */
}

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

.page-index-top-games__hero {
    background: linear-gradient(135deg, #1A237E 0%, #0d1247 100%); /* Main color gradient */
    padding: 100px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-index-top-games__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: page-index-top-games__pulse 15s infinite alternate;
    z-index: 0;
}

@keyframes page-index-top-games__pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.8; }
}

.page-index-top-games__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Accent color for title */
    position: relative;
    z-index: 1;
}

.page-index-top-games__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
    position: relative;
    z-index: 1;
}

.page-index-top-games__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.page-index-top-games__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1.1em;
    text-align: center;
}

.page-index-top-games__btn--primary {
    background-color: #FFD700; /* Accent color for primary button */
    color: #1A237E; /* Main color for text */
    border: 2px solid #FFD700;
}

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

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

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

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

.page-index-top-games__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
    margin-top: 30px;
}

.page-index-top-games__section {
    padding: 60px 0;
    background-color: #0d1247;
}

.page-index-top-games__section:nth-of-type(even) {
    background-color: #1A237E;
}

.page-index-top-games__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Accent color for section titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-index-top-games__intro p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #e0e0e0;
    text-align: justify;
}

.page-index-top-games__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-top-games__image--full-width {
    width: 100%;
}

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

.page-index-top-games__game-card {
    background-color: #1A237E;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.page-index-top-games__game-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #FFD700;
}

.page-index-top-games__game-card-title {
    font-size: 1.8em;
    color: #FFD700;
    padding: 20px 20px 10px;
    margin: 0;
}

.page-index-top-games__game-card-description {
    padding: 0 20px 15px;
    color: #e0e0e0;
    flex-grow: 1;
    text-align: justify;
}

.page-index-top-games__game-features {
    list-style: none;
    padding: 0 20px 15px;
    margin: 0;
}

.page-index-top-games__game-features li {
    color: #c0c0c0;
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
}

.page-index-top-games__game-features li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #FFD700;
}

.page-index-top-games__game-card .page-index-top-games__btn {
    margin: 0 20px 20px;
}

.page-index-top-games__why-choose .page-index-top-games__section-title {
    color: #FFD700;
}

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

.page-index-top-games__advantage-item {
    background-color: #1A237E;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-index-top-games__advantage-item h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-index-top-games__advantage-item p {
    color: #c0c0c0;
    font-size: 1em;
}

.page-index-top-games__advantage-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-index-top-games__how-to-start .page-index-top-games__section-title {
    color: #FFD700;
}

.page-index-top-games__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-index-top-games__steps-list li {
    background-color: #1A237E;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-left: 70px;
}

.page-index-top-games__steps-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    background-color: #FFD700;
    color: #1A237E;
    font-size: 1.8em;
    font-weight: bold;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 15px;
    top: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-index-top-games__steps-list li h3 {
    color: #FFD700;
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-index-top-games__steps-list li p {
    color: #e0e0e0;
    margin-bottom: 15px;
}

.page-index-top-games__steps-list li .page-index-top-games__btn {
    margin-top: 10px;
}

.page-index-top-games__promotions .page-index-top-games__section-title {
    color: #FFD700;
}

.page-index-top-games__promo-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-index-top-games__promo-list li {
    background-color: #1A237E;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    color: #e0e0e0;
    font-size: 1.1em;
}

.page-index-top-games__responsible-gaming {
    background-color: #0d1247;
}

.page-index-top-games__responsible-gaming .page-index-top-games__section-title {
    color: #FFD700;
}

.page-index-top-games__responsible-gaming p {
    font-size: 1.1em;
    color: #e0e0e0;
    text-align: justify;
    max-width: 900px;
    margin: 0 auto 30px;
}

.page-index-top-games__faq {
    background-color: #1A237E;
}

.page-index-top-games__faq .page-index-top-games__section-title {
    color: #FFD700;
}

.page-index-top-games__faq-item {
    background-color: #0d1247;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-index-top-games__faq-item h3 {
    color: #FFD700;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-index-top-games__faq-item h3::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-index-top-games__faq-item.active h3::after {
    content: '-';
    transform: rotate(180deg);
}

.page-index-top-games__faq-item p {
    color: #c0c0c0;
    font-size: 1em;
    margin-bottom: 0;
    display: none;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    margin-top: 10px;
}

.page-index-top-games__faq-item.active p {
    display: block;
}

.page-index-top-games__cta-final {
    background: linear-gradient(135deg, #1A237E, #0d1247);
    text-align: center;
    padding: 80px 0;
}

.page-index-top-games__cta-final .page-index-top-games__section-title {
    color: #FFD700;
    margin-bottom: 20px;
}

.page-index-top-games__cta-final p {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.page-index-top-games .highlight-text {
    color: #FFD700;
    font-weight: bold;
}

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

    .page-index-top-games__hero-subtitle {
        font-size: 1.1em;
    }

    .page-index-top-games__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-index-top-games__btn {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }

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

    .page-index-top-games__game-grid {
        grid-template-columns: 1fr;
    }

    .page-index-top-games__advantages-grid {
        grid-template-columns: 1fr;
    }

    .page-index-top-games__steps-list li {
        padding-left: 20px;
        padding-top: 60px;
    }

    .page-index-top-games__steps-list li::before {
        left: 50%;
        transform: translateX(-50%);
        top: 15px;
    }
}

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

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

    .page-index-top-games__btn--large {
        padding: 15px 25px;
        font-size: 1.1em;
    }
}