/* style/index-core-games-introduction.css */

.page-index-core-games-introduction {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark background */
    line-height: 1.6;
    background-color: #0F1D2C; /* A slightly lighter dark background than main color for contrast */
}

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

.page-index-core-games-introduction__hero-section {
    background: linear-gradient(135deg, #1A2E44 0%, #0F1D2C 100%);
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-index-core-games-introduction__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Accent color for main title */
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-core-games-introduction__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #E0E0E0;
}

.page-index-core-games-introduction__section {
    padding: 80px 0;
    background-color: #0F1D2C;
}

.page-index-core-games-introduction__section:nth-of-type(even) {
    background-color: #1A2E44;
}

.page-index-core-games-introduction__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-index-core-games-introduction__section-intro {
    font-size: 1.2em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    color: #B0B0B0;
}

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

.page-index-core-games-introduction__game-card {
    background-color: #1A2E44;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    color: #E0E0E0;
}

.page-index-core-games-introduction__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.page-index-core-games-introduction__game-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #FFD700;
}

.page-index-core-games-introduction__game-title {
    font-size: 1.8em;
    color: #FFD700;
    padding: 20px 25px 10px;
    font-weight: 600;
}

.page-index-core-games-introduction__game-text {
    padding: 0 25px 15px;
    font-size: 1em;
    flex-grow: 1;
    color: #C0C0C0;
}

.page-index-core-games-introduction__game-features {
    list-style: none;
    padding: 0 25px 20px;
    margin: 0;
}

.page-index-core-games-introduction__game-features li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #C0C0C0;
}

.page-index-core-games-introduction__game-features li .icon-checkmark {
    color: #FFD700;
    margin-right: 10px;
    font-size: 1.2em;
}

/* Basic icon for checkmark - replace with actual icon font/SVG if available */
.page-index-core-games-introduction__game-features li .icon-checkmark::before {
    content: '\2713'; /* Unicode checkmark */
    display: inline-block;
    transform: scale(1.2);
}

.page-index-core-games-introduction__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    margin-top: auto; /* Push button to the bottom of the card */
    margin-left: 25px;
    margin-right: 25px;
    margin-bottom: 25px;
}

.page-index-core-games-introduction__btn--primary {
    background-color: #FFD700;
    color: #1A2E44;
    border: 2px solid #FFD700;
    font-size: 1.1em;
}

.page-index-core-games-introduction__btn--primary:hover {
    background-color: #E0B000;
    border-color: #E0B000;
    transform: translateY(-3px);
}

.page-index-core-games-introduction__btn--secondary {
    background-color: #1A2E44;
    color: #FFD700;
    border: 2px solid #FFD700;
    font-size: 1em;
}

.page-index-core-games-introduction__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A2E44;
    transform: translateY(-3px);
}

.page-index-core-games-introduction__btn--text {
    background: none;
    border: none;
    color: #FFD700;
    padding: 8px 0;
    margin: 10px 25px 20px;
    text-decoration: underline;
}

.page-index-core-games-introduction__btn--text:hover {
    color: #E0B000;
}

.page-index-core-games-introduction__why-choose-us {
    background-color: #1A2E44;
}

.page-index-core-games-introduction__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-index-core-games-introduction__feature-item {
    background-color: #0F1D2C;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-index-core-games-introduction__feature-item:hover {
    transform: translateY(-5px);
}

.page-index-core-games-introduction__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-index-core-games-introduction__feature-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-index-core-games-introduction__feature-text {
    color: #C0C0C0;
}

.page-index-core-games-introduction__get-started {
    background-color: #0F1D2C;
}

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

.page-index-core-games-introduction__step-item {
    background-color: #1A2E44;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.page-index-core-games-introduction__step-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3em;
    font-weight: 800;
    color: rgba(255, 215, 0, 0.2);
    line-height: 1;
}

.page-index-core-games-introduction__step-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    padding-top: 40px; /* Space for number */
}

.page-index-core-games-introduction__step-text {
    color: #C0C0C0;
    margin-bottom: 20px;
}

.page-index-core-games-introduction__cta {
    background: linear-gradient(90deg, #1A2E44, #0F1D2C);
    padding: 100px 0;
    text-align: center;
}

.page-index-core-games-introduction__cta-content {
    max-width: 900px;
}

.page-index-core-games-introduction__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 25px;
    font-weight: 700;
}

.page-index-core-games-introduction__cta-description {
    font-size: 1.4em;
    color: #E0E0E0;
    margin-bottom: 50px;
}

.page-index-core-games-introduction__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-index-core-games-introduction__btn--outline {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    font-size: 1.1em;
}

.page-index-core-games-introduction__btn--outline:hover {
    background-color: #FFD700;
    color: #1A2E44;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-core-games-introduction__hero-title {
        font-size: 2.5em;
    }
    .page-index-core-games-introduction__section-title {
        font-size: 2.2em;
    }
    .page-index-core-games-introduction__cta-title {
        font-size: 2.5em;
    }
    .page-index-core-games-introduction__game-grid,
    .page-index-core-games-introduction__features-grid,
    .page-index-core-games-introduction__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-index-core-games-introduction__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-index-core-games-introduction__btn {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .page-index-core-games-introduction__hero-section,
    .page-index-core-games-introduction__section,
    .page-index-core-games-introduction__cta {
        padding: 60px 0;
    }
    .page-index-core-games-introduction__hero-title {
        font-size: 2em;
    }
    .page-index-core-games-introduction__hero-description {
        font-size: 1.1em;
    }
    .page-index-core-games-introduction__section-title {
        font-size: 1.8em;
    }
    .page-index-core-games-introduction__section-intro {
        font-size: 1em;
        margin-bottom: 40px;
    }
    .page-index-core-games-introduction__game-title {
        font-size: 1.5em;
    }
    .page-index-core-games-introduction__feature-title,
    .page-index-core-games-introduction__step-title {
        font-size: 1.4em;
    }
    .page-index-core-games-introduction__cta-title {
        font-size: 2em;
    }
    .page-index-core-games-introduction__cta-description {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-index-core-games-introduction__hero-section,
    .page-index-core-games-introduction__section,
    .page-index-core-games-introduction__cta {
        padding: 40px 0;
    }
    .page-index-core-games-introduction__hero-title {
        font-size: 1.8em;
    }
    .page-index-core-games-introduction__btn {
        padding: 12px 20px;
        font-size: 0.95em;
    }
    .page-index-core-games-introduction__game-card, .page-index-core-games-introduction__feature-item, .page-index-core-games-introduction__step-item {
        padding: 25px 20px;
    }
    .page-index-core-games-introduction__game-title {
        font-size: 1.3em;
    }
}