/* style/index-top-games-showcase.css */
.page-index-top-games-showcase {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Dark gray for general text */
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-index-top-games-showcase-section-title {
    font-size: 2.5em;
    color: #003366; /* Main color */
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
    font-weight: bold;
}

.page-index-top-games-showcase-section-subtitle {
    font-size: 1.2em;
    color: #555555;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-top-games-showcase-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.page-index-top-games-showcase-btn-primary {
    background-color: #FFD700; /* Auxiliary color - Gold */
    color: #003366; /* Main color - Deep blue */
    border: 2px solid #FFD700;
}

.page-index-top-games-showcase-btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-index-top-games-showcase-btn-secondary {
    background-color: #003366; /* Main color - Deep blue */
    color: #FFD700; /* Auxiliary color - Gold */
    border: 2px solid #FFD700;
}

.page-index-top-games-showcase-btn-secondary:hover {
    background-color: #002244;
    transform: translateY(-2px);
}

.page-index-top-games-showcase-btn-small {
    padding: 8px 18px;
    font-size: 0.95em;
}

.page-index-top-games-showcase-btn-large {
    padding: 15px 30px;
    font-size: 1.2em;
}

.page-index-top-games-showcase-text-link {
    color: #003366;
    text-decoration: underline;
    font-weight: bold;
}

.page-index-top-games-showcase-text-link:hover {
    color: #FFD700;
}

/* Hero Section */
.page-index-top-games-showcase-hero {
    background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Dark blue gradient */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-top-games-showcase-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,pattern,dark_blue,gold]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-index-top-games-showcase-hero > .page-index-top-games-showcase-container {
    position: relative;
    z-index: 1;
}

.page-index-top-games-showcase-hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold */
    font-weight: 900;
    line-height: 1.2;
}

.page-index-top-games-showcase-hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-index-top-games-showcase-hero-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Why Choose Section */
.page-index-top-games-showcase-why-choose {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.page-index-top-games-showcase-feature-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #FFD700;
}

.page-index-top-games-showcase-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-index-top-games-showcase-feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
}

.page-index-top-games-showcase-feature-item h3 {
    font-size: 1.6em;
    color: #003366;
    margin-bottom: 15px;
}

.page-index-top-games-showcase-feature-item p {
    color: #555555;
    font-size: 1.05em;
}

/* Game Categories Section */
.page-index-top-games-showcase-game-categories {
    padding: 80px 0;
    background-color: #f0f4f8;
}

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

.page-index-top-games-showcase-category-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-top-games-showcase-category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.page-index-top-games-showcase-category-item h3 {
    font-size: 1.8em;
    color: #003366;
    margin: 20px 15px 10px;
}

.page-index-top-games-showcase-category-item p {
    color: #555555;
    padding: 0 15px 20px;
    font-size: 1.05em;
}

.page-index-top-games-showcase-category-item .page-index-top-games-showcase-btn {
    margin-bottom: 20px;
}

/* Get Started Section */
.page-index-top-games-showcase-get-started {
    padding: 80px 0;
    background-color: #ffffff;
}

.page-index-top-games-showcase-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-index-top-games-showcase-step-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    padding-top: 60px;
    border: 1px solid #eee;
}

.page-index-top-games-showcase-step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #003366; /* Main color */
    color: #FFD700; /* Auxiliary color */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    border: 3px solid #FFD700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-top-games-showcase-step-item h3 {
    font-size: 1.6em;
    color: #003366;
    margin-bottom: 15px;
}

.page-index-top-games-showcase-step-item p {
    color: #555555;
    margin-bottom: 20px;
}

/* Exclusive Offers Section */
.page-index-top-games-showcase-exclusive-offers {
    padding: 80px 0;
    background-color: #e6f0f7; /* Lighter blue */
}

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

.page-index-top-games-showcase-offer-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 5px solid #CC0000; /* Accent red */
}

.page-index-top-games-showcase-offer-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-index-top-games-showcase-offer-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 15px;
}

.page-index-top-games-showcase-offer-item h3 {
    font-size: 1.7em;
    color: #003366;
    margin: 15px 15px 10px;
}

.page-index-top-games-showcase-offer-item p {
    color: #555555;
    padding: 0 15px 20px;
}

/* Tips & Strategies Section */
.page-index-top-games-showcase-tips-strategies {
    padding: 80px 0;
    background-color: #ffffff;
}

.page-index-top-games-showcase-tips-content {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Main content and sidebar */
    gap: 40px;
}

.page-index-top-games-showcase-tip-article h3 {
    font-size: 1.8em;
    color: #003366;
    margin-top: 25px;
    margin-bottom: 10px;
}

.page-index-top-games-showcase-tip-article p {
    font-size: 1.1em;
    color: #444444;
    margin-bottom: 15px;
}

.page-index-top-games-showcase-tip-sidebar {
    background-color: #f0f4f8;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #FFD700;
}

.page-index-top-games-showcase-tip-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
}

.page-index-top-games-showcase-sidebar-cta h4 {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 10px;
}

.page-index-top-games-showcase-sidebar-cta p {
    color: #555555;
    margin-bottom: 20px;
}

/* FAQ Section */
.page-index-top-games-showcase-faq {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.page-index-top-games-showcase-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.page-index-top-games-showcase-accordion-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-index-top-games-showcase-accordion-header {
    width: 100%;
    background-color: #003366; /* Main color */
    color: #FFD700; /* Auxiliary color */
    padding: 18px 25px;
    text-align: left;
    font-size: 1.3em;
    font-weight: bold;
    border: none;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-index-top-games-showcase-accordion-header:hover {
    background-color: #002244;
}

.page-index-top-games-showcase-accordion-header::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-index-top-games-showcase-accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-index-top-games-showcase-accordion-content {
    padding: 0 25px;
    background-color: #fefefe;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-index-top-games-showcase-accordion-content p {
    padding: 15px 0;
    color: #444444;
    font-size: 1.05em;
}

/* Final CTA Section */
.page-index-top-games-showcase-cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Dark blue gradient */
    color: #ffffff;
    text-align: center;
}

.page-index-top-games-showcase-cta-final .page-index-top-games-showcase-section-title {
    color: #FFD700;
}

.page-index-top-games-showcase-cta-final .page-index-top-games-showcase-section-subtitle {
    color: #e0e0e0;
}

.page-index-top-games-showcase-ctas-final {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-top-games-showcase-hero-title {
        font-size: 2.8em;
    }
    .page-index-top-games-showcase-section-title {
        font-size: 2em;
    }
    .page-index-top-games-showcase-tips-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-index-top-games-showcase-hero-title {
        font-size: 2.2em;
    }
    .page-index-top-games-showcase-hero-description {
        font-size: 1.1em;
    }
    .page-index-top-games-showcase-hero-ctas {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-top-games-showcase-section-title {
        font-size: 1.8em;
    }
    .page-index-top-games-showcase-section-subtitle {
        font-size: 1em;
    }
    .page-index-top-games-showcase-features,
    .page-index-top-games-showcase-category-grid,
    .page-index-top-games-showcase-steps,
    .page-index-top-games-showcase-offers-grid {
        grid-template-columns: 1fr;
    }
    .page-index-top-games-showcase-accordion-header {
        font-size: 1.1em;
    }
    .page-index-top-games-showcase-ctas-final {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-index-top-games-showcase-hero-title {
        font-size: 1.8em;
    }
    .page-index-top-games-showcase-section-title {
        font-size: 1.5em;
    }
    .page-index-top-games-showcase-btn {
        width: 100%;
    }
    .page-index-top-games-showcase-container {
        padding: 0 15px;
    }
}