/* style/index-popular-games-showcase.css */

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

.page-index-popular-games-showcase__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-index-popular-games-showcase__hero {
    background: linear-gradient(135deg, #0A2463 0%, #0A2463 70%, #FFD700 100%);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-popular-games-showcase__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,gaming,lights,pg66]') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.page-index-popular-games-showcase__hero .page-index-popular-games-showcase__container {
    position: relative;
    z-index: 1;
}

.page-index-popular-games-showcase__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-popular-games-showcase__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #FFFFFF;
}

.page-index-popular-games-showcase__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 10px;
    cursor: pointer;
}

.page-index-popular-games-showcase__btn--primary {
    background-color: #FFD700;
    color: #0A2463;
    border: 2px solid #FFD700;
}

.page-index-popular-games-showcase__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-index-popular-games-showcase__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-index-popular-games-showcase__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2463;
    transform: translateY(-3px);
}

.page-index-popular-games-showcase__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    margin: 5px 0;
}

.page-index-popular-games-showcase__introduction,
.page-index-popular-games-showcase__game-categories,
.page-index-popular-games-showcase__featured-games,
.page-index-popular-games-showcase__benefits,
.page-index-popular-games-showcase__promotions,
.page-index-popular-games-showcase__getting-started,
.page-index-popular-games-showcase__safety-support,
.page-index-popular-games-showcase__cta-final {
    padding: 60px 0;
    text-align: center;
}

.page-index-popular-games-showcase__introduction,
.page-index-popular-games-showcase__benefits,
.page-index-popular-games-showcase__getting-started,
.page-index-popular-games-showcase__safety-support {
    background-color: #ffffff;
}

.page-index-popular-games-showcase__game-categories,
.page-index-popular-games-showcase__featured-games,
.page-index-popular-games-showcase__promotions,
.page-index-popular-games-showcase__cta-final {
    background-color: #f0f2f5;
}

.page-index-popular-games-showcase__section-title {
    font-size: 2.5em;
    color: #0A2463;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-index-popular-games-showcase__introduction p,
.page-index-popular-games-showcase__benefits p,
.page-index-popular-games-showcase__getting-started p,
.page-index-popular-games-showcase__safety-support p {
    font-size: 1.1em;
    color: #555;
    max-width: 900px;
    margin: 0 auto 20px auto;
}

.page-index-popular-games-showcase__game-categories .page-index-popular-games-showcase__container p {
    font-size: 1.1em;
    color: #555;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

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

.page-index-popular-games-showcase__category-item {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-index-popular-games-showcase__category-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-index-popular-games-showcase__category-img {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 1px solid #eee;
}

.page-index-popular-games-showcase__category-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-index-popular-games-showcase__category-description {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 25px;
    flex-grow: 1;
}

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

.page-index-popular-games-showcase__game-spotlight-item {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-index-popular-games-showcase__game-spotlight-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-index-popular-games-showcase__game-spotlight-img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 1px solid #eee;
}

.page-index-popular-games-showcase__game-spotlight-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-index-popular-games-showcase__game-spotlight-description {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-index-popular-games-showcase__list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 800px;
    margin: 40px auto;
}

.page-index-popular-games-showcase__list li {
    background-color: #ffffff;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-left: 5px solid #FFD700;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: #333;
    transition: transform 0.2s ease;
}

.page-index-popular-games-showcase__list li:hover {
    transform: translateX(5px);
}

.page-index-popular-games-showcase__list li strong {
    color: #0A2463;
}

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

.page-index-popular-games-showcase__promo-item {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-index-popular-games-showcase__promo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-index-popular-games-showcase__promo-img {
    max-width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 1px solid #eee;
}

.page-index-popular-games-showcase__promo-title {
    font-size: 1.6em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-index-popular-games-showcase__promo-description {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-index-popular-games-showcase__steps-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 800px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.page-index-popular-games-showcase__steps-list li {
    background-color: #ffffff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.07);
    font-size: 1.1em;
    color: #333;
    position: relative;
    counter-increment: step-counter;
    text-align: left;
    padding-left: 60px;
}

.page-index-popular-games-showcase__steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #0A2463;
    color: #FFD700;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    border: 2px solid #FFD700;
}

.page-index-popular-games-showcase__steps-list li strong {
    color: #0A2463;
    display: block;
    margin-bottom: 5px;
    font-size: 1.2em;
}

.page-index-popular-games-showcase__cta-final {
    background-color: #0A2463;
    color: #FFFFFF;
    padding: 80px 0;
}

.page-index-popular-games-showcase__cta-final .page-index-popular-games-showcase__section-title {
    color: #FFD700;
}

.page-index-popular-games-showcase__cta-final .page-index-popular-games-showcase__section-title::after {
    background-color: #FFFFFF;
}

.page-index-popular-games-showcase__cta-final p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-popular-games-showcase__hero-title {
        font-size: 2.8em;
    }
    .page-index-popular-games-showcase__section-title {
        font-size: 2em;
    }
    .page-index-popular-games-showcase__category-grid,
    .page-index-popular-games-showcase__game-spotlight-grid,
    .page-index-popular-games-showcase__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-index-popular-games-showcase__hero-title {
        font-size: 2.2em;
    }
    .page-index-popular-games-showcase__hero-subtitle {
        font-size: 1.1em;
    }
    .page-index-popular-games-showcase__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-popular-games-showcase__section-title {
        font-size: 1.8em;
    }
    .page-index-popular-games-showcase__category-item,
    .page-index-popular-games-showcase__game-spotlight-item,
    .page-index-popular-games-showcase__promo-item {
        padding: 20px;
    }
    .page-index-popular-games-showcase__list li,
    .page-index-popular-games-showcase__steps-list li {
        font-size: 1em;
        padding: 20px 25px 20px 50px;
    }
    .page-index-popular-games-showcase__steps-list li::before {
        width: 30px;
        height: 30px;
        font-size: 1.1em;
        left: 15px;
    }
}

@media (max-width: 480px) {
    .page-index-popular-games-showcase__hero {
        padding: 50px 0;
    }
    .page-index-popular-games-showcase__hero-title {
        font-size: 1.8em;
    }
    .page-index-popular-games-showcase__hero-subtitle {
        font-size: 0.9em;
    }
    .page-index-popular-games-showcase__btn {
        display: block;
        width: calc(100% - 20px);
        margin: 10px auto;
    }
    .page-index-popular-games-showcase__section-title {
        font-size: 1.5em;
    }
    .page-index-popular-games-showcase__category-grid,
    .page-index-popular-games-showcase__game-spotlight-grid,
    .page-index-popular-games-showcase__promo-grid {
        grid-template-columns: 1fr;
    }
    .page-index-popular-games-showcase__list li,
    .page-index-popular-games-showcase__steps-list li {
        padding: 15px 20px 15px 45px;
    }
    .page-index-popular-games-showcase__steps-list li::before {
        width: 28px;
        height: 28px;
        font-size: 1em;
        left: 10px;
    }
    .page-index-popular-games-showcase__category-title,
    .page-index-popular-games-showcase__game-spotlight-title,
    .page-index-popular-games-showcase__promo-title {
        font-size: 1.4em;
    }
}