.page-index-top-games {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #121E2C; /* Slightly lighter dark background than main color for contrast */
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

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

/* Hero Section */
.page-index-top-games__hero {
    background: linear-gradient(135deg, #1A2E44 0%, #0d1a26 100%); /* Dark gradient for hero */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-index-top-games__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; /* Subtle background image */
    z-index: 0;
}

.page-index-top-games__hero > .page-index-top-games__container {
    position: relative;
    z-index: 1;
}

.page-index-top-games__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFC107; /* Accent color for title */
    line-height: 1.2;
}

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

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

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

.page-index-top-games__button--primary {
    background-color: #FFC107; /* Accent color */
    color: #1A2E44; /* Main dark color */
    border: 2px solid #FFC107;
}

.page-index-top-games__button--primary:hover {
    background-color: #e6b000;
    border-color: #e6b000;
    transform: translateY(-2px);
}

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

.page-index-top-games__button--secondary:hover {
    background-color: #FFC107;
    color: #1A2E44;
    transform: translateY(-2px);
}

.page-index-top-games__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 5px;
}

.page-index-top-games__button--large {
    padding: 18px 35px;
    font-size: 1.2em;
    border-radius: 10px;
}

/* General Section Styling */
.page-index-top-games__section {
    padding: 60px 0;
    background-color: #1A2E44; /* Main dark background */
    color: #E0E0E0;
}

.page-index-top-games__section:nth-of-type(even) {
    background-color: #121E2C; /* Alternate dark background */
}

.page-index-top-games__section-title {
    font-size: 2.5em;
    color: #FFC107;
    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: #FFC107;
    border-radius: 2px;
}

.page-index-top-games__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-index-top-games__section a {
    color: #FFC107;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-index-top-games__section a:hover {
    color: #e6b000;
    text-decoration: underline;
}

/* Highlight xoxo66 keyword */
.page-index-top-games .highlight-xoxo66 {
    color: #FFC107;
    font-weight: bold;
}

/* Features List */
.page-index-top-games__features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.page-index-top-games__features-list li {
    background-color: #1A2E44;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-left: 5px solid #FFC107;
    font-size: 1.1em;
    color: #F0F0F0;
}

.page-index-top-games__features-list li strong {
    color: #FFC107;
}

/* Game Categories */
.page-index-top-games__game-categories {
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-index-top-games__game-category-item {
    background-color: #1A2E44;
    border-radius: 12px;
    margin-bottom: 50px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-index-top-games__category-title {
    font-size: 2em;
    color: #FFC107;
    margin-bottom: 20px;
    text-align: left;
}

.page-index-top-games__category-image {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-top-games__game-list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 25px;
    color: #F0F0F0;
}

.page-index-top-games__game-list li {
    margin-bottom: 8px;
    font-size: 1em;
}

.page-index-top-games__game-list li strong {
    color: #FFC107;
}

/* Why xoxo66 Benefits */
.page-index-top-games__why-xoxo66 {
    padding-top: 80px;
    padding-bottom: 80px;
}

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

.page-index-top-games__benefit-item {
    background-color: #1A2E44;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    border-bottom: 5px solid #FFC107;
}

.page-index-top-games__benefit-title {
    font-size: 1.8em;
    color: #FFC107;
    margin-bottom: 15px;
}

.page-index-top-games__benefit-item p {
    font-size: 1em;
    margin-bottom: 25px;
}

/* Final CTA Section */
.page-index-top-games__cta-final {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(45deg, #1A2E44, #FFC107); /* Engaging gradient for CTA */
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-index-top-games__cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
}

.page-index-top-games__cta-final > .page-index-top-games__container {
    position: relative;
    z-index: 1;
}

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

.page-index-top-games__cta-final p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2em;
    margin-bottom: 40px;
}

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

/* FAQ Section */
.page-index-top-games__faq {
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-index-top-games__faq-item {
    background-color: #1A2E44;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-left: 4px solid #FFC107;
}

.page-index-top-games__faq-question {
    font-size: 1.4em;
    color: #FFC107;
    margin-bottom: 10px;
    cursor: pointer; /* Indicate interactivity, even if JS is minimal */
}

.page-index-top-games__faq-question.active {
    color: #e6b000;
}

.page-index-top-games__faq-answer {
    font-size: 1em;
    color: #F0F0F0;
    margin-top: 15px;
    padding-left: 10px;
    border-left: 2px solid #5f6d7c;
    /* Initial hidden state for JS accordion */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out, opacity 0.3s ease-out;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-top-games__hero-title {
        font-size: 2.8em;
    }
    .page-index-top-games__section-title {
        font-size: 2em;
    }
    .page-index-top-games__game-category-item {
        padding: 25px;
    }
    .page-index-top-games__category-title {
        font-size: 1.8em;
    }
    .page-index-top-games__benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-index-top-games__hero {
        padding: 60px 0;
    }
    .page-index-top-games__hero-title {
        font-size: 2.2em;
    }
    .page-index-top-games__hero-description {
        font-size: 1.1em;
    }
    .page-index-top-games__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-top-games__button {
        width: 80%;
        max-width: 300px;
    }
    .page-index-top-games__section {
        padding: 40px 0;
    }
    .page-index-top-games__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-index-top-games__features-list,
    .page-index-top-games__benefits-grid {
        grid-template-columns: 1fr;
    }
    .page-index-top-games__game-category-item {
        padding: 20px;
    }
    .page-index-top-games__category-title {
        font-size: 1.6em;
    }
    .page-index-top-games__cta-final {
        padding: 60px 0;
    }
    .page-index-top-games__cta-final p {
        font-size: 1.1em;
    }
    .page-index-top-games__cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-top-games__faq-question {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-index-top-games__hero-title {
        font-size: 1.8em;
    }
    .page-index-top-games__hero-description {
        font-size: 1em;
    }
    .page-index-top-games__section-title {
        font-size: 1.5em;
    }
    .page-index-top-games__button {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-index-top-games__button--large {
        font-size: 1.1em;
        padding: 15px 30px;
    }
    .page-index-top-games__category-title {
        font-size: 1.4em;
    }
    .page-index-top-games__faq-question {
        font-size: 1.1em;
    }
}