/* style/index-game-showcase.css */
.page-index-game-showcase {
    font-family: 'Arial', sans-serif;
    color: #e5dfd3; /* Light text on dark background for contrast */
    background-color: #1A202C; /* Main dark background */
    line-height: 1.6;
}

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

.page-index-game-showcase-hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a4150 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.page-index-game-showcase-hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Accent color for main title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-index-game-showcase-hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #f0f0f0;
}

.page-index-game-showcase-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-index-game-showcase-section:last-of-type {
    border-bottom: none;
}

.page-index-game-showcase-section-title {
    font-size: 2.5em;
    color: #FFD700; /* Accent color for section titles */
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-index-game-showcase-section p {
    font-size: 1.1em;
    text-align: justify;
    margin-bottom: 20px;
    color: #cccccc;
}

.page-index-game-showcase-games-grid .page-index-game-showcase-game-category {
    background-color: #2b323f;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-game-showcase-games-grid .page-index-game-showcase-game-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-index-game-showcase-game-category-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    text-align: center;
}

.page-index-game-showcase-image-wrapper {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.page-index-game-showcase-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.page-index-game-showcase-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 20px;
    cursor: pointer;
}

.page-index-game-showcase-btn-primary {
    background-color: #FFD700; /* Accent color for primary buttons */
    color: #1A202C; /* Dark text on accent background */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-index-game-showcase-btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-index-game-showcase-btn-secondary {
    background-color: #3a4150;
    color: #FFD700; /* Accent color for text on secondary button */
    border: 2px solid #FFD700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-index-game-showcase-btn-secondary:hover {
    background-color: #4a515f;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

.page-index-game-showcase-why-choose .page-index-game-showcase-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-index-game-showcase-why-choose .page-index-game-showcase-feature-list li {
    background-color: #2b323f;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-index-game-showcase-why-choose .page-index-game-showcase-feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-index-game-showcase-why-choose .page-index-game-showcase-feature-list li p {
    color: #cccccc;
    font-size: 1em;
    text-align: center;
}

.page-index-game-showcase-cta {
    text-align: center;
    padding: 80px 0;
    background-color: #1a202c;
}

.page-index-game-showcase-cta .page-index-game-showcase-section-title {
    font-size: 3em;
    margin-bottom: 30px;
}

.page-index-game-showcase-cta p {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #f0f0f0;
}

.page-index-game-showcase-responsibility {
    font-size: 0.9em;
    color: #777;
    margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-index-game-showcase-hero-title {
        font-size: 2.8em;
    }
    .page-index-game-showcase-hero-description {
        font-size: 1.1em;
    }
    .page-index-game-showcase-section-title {
        font-size: 2em;
    }
    .page-index-game-showcase-games-grid .page-index-game-showcase-game-category {
        padding: 25px;
    }
    .page-index-game-showcase-game-category-title {
        font-size: 1.6em;
    }
    .page-index-game-showcase-why-choose .page-index-game-showcase-feature-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-index-game-showcase-hero {
        padding: 80px 0;
    }
    .page-index-game-showcase-hero-title {
        font-size: 2.2em;
    }
    .page-index-game-showcase-hero-description {
        font-size: 1em;
    }
    .page-index-game-showcase-section {
        padding: 40px 0;
    }
    .page-index-game-showcase-section-title {
        font-size: 1.8em;
    }
    .page-index-game-showcase-section p {
        font-size: 0.95em;
    }
    .page-index-game-showcase-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-game-showcase-why-choose .page-index-game-showcase-feature-list {
        grid-template-columns: 1fr;
    }
    .page-index-game-showcase-cta .page-index-game-showcase-section-title {
        font-size: 2.5em;
    }
}

@media (max-width: 480px) {
    .page-index-game-showcase-hero-title {
        font-size: 1.8em;
    }
    .page-index-game-showcase-hero-description {
        font-size: 0.9em;
    }
    .page-index-game-showcase-section-title {
        font-size: 1.5em;
    }
    .page-index-game-showcase-games-grid .page-index-game-showcase-game-category {
        padding: 20px;
    }
    .page-index-game-showcase-game-category-title {
        font-size: 1.4em;
    }
    .page-index-game-showcase-btn {
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    .page-index-game-showcase-cta .page-index-game-showcase-section-title {
        font-size: 2em;
    }
}