.page-index-top-games {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

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

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

.page-index-top-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFCC00; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: bold;
}

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

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

.page-index-top-games__btn--primary {
    background-color: #FFCC00; /* Gold */
    color: #003366; /* Deep blue text for contrast */
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.page-index-top-games__btn--primary:hover {
    background-color: #e6b800; /* Darker gold */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.6);
}

.page-index-top-games__section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-index-top-games__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFCC00;
    border-radius: 2px;
}

.page-index-top-games__sub-section-title {
    font-size: 1.8em;
    color: #003366;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFCC00;
    padding-left: 15px;
}

.page-index-top-games__text-content {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

.page-index-top-games__intro, .page-index-top-games__strategy, .page-index-top-games__cta {
    padding: 60px 0;
    background-color: #f8f8f8;
}

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

.page-index-top-games__intro-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-index-top-games__intro-item:hover {
    transform: translateY(-10px);
}

.page-index-top-games__intro-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
}

.page-index-top-games__intro-heading {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
}

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

.page-index-top-games__game-list {
    background-color: #eef4f8; /* Light blue-gray */
    padding: 80px 0;
}

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

.page-index-top-games__game-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.page-index-top-games__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

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

.page-index-top-games__game-title {
    font-size: 1.6em;
    color: #003366;
    margin: 20px 15px 10px;
}

.page-index-top-games__game-description {
    color: #666;
    font-size: 0.95em;
    padding: 0 15px 20px;
    flex-grow: 1;
}

.page-index-top-games__btn--secondary {
    background-color: #003366; /* Deep blue */
    color: #FFCC00; /* Gold text for contrast */
    margin: 0 15px 20px;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.3);
}

.page-index-top-games__btn--secondary:hover {
    background-color: #002244; /* Darker blue */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.5);
}

.page-index-top-games__load-more {
    text-align: center;
    margin-top: 50px;
}

.page-index-top-games__btn--ghost {
    background-color: transparent;
    color: #003366;
    border: 2px solid #003366;
    padding: 12px 25px;
}

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

.page-index-top-games__strategy {
    background-color: #fff;
    padding: 80px 0;
}

.page-index-top-games__strategy .page-index-top-games__text-content {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-top-games__cta {
    background: linear-gradient(135deg, #003366, #FFCC00);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.page-index-top-games__cta .page-index-top-games__section-title {
    color: #fff;
}

.page-index-top-games__cta .page-index-top-games__section-title::after {
    background-color: #fff;
}

.page-index-top-games__cta .page-index-top-games__text-content {
    color: #f0f0f0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.page-index-top-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-index-top-games__cta-buttons .page-index-top-games__btn--primary {
    background-color: #fff;
    color: #003366;
}

.page-index-top-games__cta-buttons .page-index-top-games__btn--primary:hover {
    background-color: #e0e0e0;
}

.page-index-top-games__cta-buttons .page-index-top-games__btn--secondary {
    background-color: #FFCC00;
    color: #003366;
}

.page-index-top-games__cta-buttons .page-index-top-games__btn--secondary:hover {
    background-color: #e6b800;
}

.page-index-top-games__cta-buttons .page-index-top-games__btn--ghost {
    border-color: #fff;
    color: #fff;
}

.page-index-top-games__cta-buttons .page-index-top-games__btn--ghost:hover {
    background-color: #fff;
    color: #003366;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-top-games__hero-title {
        font-size: 2.8em;
    }
    .page-index-top-games__hero-subtitle {
        font-size: 1.3em;
    }
    .page-index-top-games__section-title {
        font-size: 2em;
    }
    .page-index-top-games__sub-section-title {
        font-size: 1.5em;
    }
    .page-index-top-games__intro-grid, .page-index-top-games__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-index-top-games__hero {
        padding: 80px 0;
    }
    .page-index-top-games__hero-title {
        font-size: 2.2em;
    }
    .page-index-top-games__hero-subtitle {
        font-size: 1.1em;
    }
    .page-index-top-games__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-top-games__section-title {
        font-size: 1.8em;
    }
    .page-index-top-games__text-content {
        font-size: 1em;
    }
    .page-index-top-games__intro, .page-index-top-games__game-list, .page-index-top-games__strategy, .page-index-top-games__cta {
        padding: 40px 0;
    }
    .page-index-top-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-top-games__cta-buttons .page-index-top-games__btn {
        width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-index-top-games__hero-title {
        font-size: 1.8em;
    }
    .page-index-top-games__hero-subtitle {
        font-size: 0.9em;
    }
    .page-index-top-games__section-title {
        font-size: 1.5em;
    }
    .page-index-top-games__intro-grid, .page-index-top-games__game-grid {
        grid-template-columns: 1fr;
    }
    .page-index-top-games__cta-buttons .page-index-top-games__btn {
        width: 100%;
    }
}