/* style/game-introduction-new-releases.css */
.page-game-introduction-new-releases {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

.page-game-introduction-new-releases__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-game-introduction-new-releases__hero-section {
    background: linear-gradient(135deg, #4B0082, #6a0dad);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-introduction-new-releases__hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 193, 7, 0.2) 0%, rgba(75, 0, 130, 0) 70%);
    animation: page-game-introduction-new-releases-pulse 15s infinite alternate;
    z-index: 0;
}

@keyframes page-game-introduction-new-releases-pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.8; }
}

.page-game-introduction-new-releases__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFC107;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.page-game-introduction-new-releases__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-game-introduction-new-releases__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
    position: relative;
    z-index: 1;
}

.page-game-introduction-new-releases__btn--primary {
    background-color: #FFC107;
    color: #4B0082;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-game-introduction-new-releases__btn--primary:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.page-game-introduction-new-releases__btn--secondary {
    background-color: #4B0082;
    color: #FFC107;
    border: 2px solid #FFC107;
}

.page-game-introduction-new-releases__btn--secondary:hover {
    background-color: #3a0066;
    transform: translateY(-3px);
    border-color: #e0a800;
}

.page-game-introduction-new-releases__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

.page-game-introduction-new-releases__btn--center {
    display: block;
    margin: 40px auto 0 auto;
    width: fit-content;
}

.page-game-introduction-new-releases__section {
    padding: 80px 0;
    text-align: center;
}

.page-game-introduction-new-releases__section--dark-bg {
    background-color: #4B0082;
    color: #fff;
}

.page-game-introduction-new-releases__section-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #4B0082;
}

.page-game-introduction-new-releases__section--dark-bg .page-game-introduction-new-releases__section-title {
    color: #FFC107;
}

.page-game-introduction-new-releases__section-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #555;
}

.page-game-introduction-new-releases__section--dark-bg .page-game-introduction-new-releases__section-description {
    color: #ddd;
}

.page-game-introduction-new-releases__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-game-introduction-new-releases__feature-item {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-game-introduction-new-releases__feature-item:hover {
    transform: translateY(-10px);
}

.page-game-introduction-new-releases__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.page-game-introduction-new-releases__feature-heading {
    font-size: 1.8em;
    color: #4B0082;
    margin-bottom: 15px;
}

.page-game-introduction-new-releases__feature-text {
    font-size: 1.1em;
    color: #666;
}

.page-game-introduction-new-releases__game-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-game-introduction-new-releases__game-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-introduction-new-releases__game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.page-game-introduction-new-releases__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.page-game-introduction-new-releases__game-title {
    font-size: 1.6em;
    color: #4B0082;
    margin-bottom: 10px;
}

.page-game-introduction-new-releases__game-description {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
}

.page-game-introduction-new-releases__game-card .page-game-introduction-new-releases__btn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 1em;
}

.page-game-introduction-new-releases__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    color: #fff;
}

.page-game-introduction-new-releases__step-item {
    background-color: rgba(255, 193, 7, 0.15);
    border-radius: 15px;
    padding: 30px;
    text-align: left;
    position: relative;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.page-game-introduction-new-releases__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #FFC107;
    color: #4B0082;
    border-radius: 50%;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.page-game-introduction-new-releases__step-heading {
    font-size: 1.8em;
    color: #FFC107;
    margin-bottom: 15px;
}

.page-game-introduction-new-releases__step-item p {
    color: #eee;
    margin-bottom: 20px;
}

.page-game-introduction-new-releases__app-download {
    background-color: #3a0066;
    padding: 40px;
    border-radius: 15px;
    margin-top: 60px;
    color: #fff;
    text-align: center;
    border: 1px solid #FFC107;
}

.page-game-introduction-new-releases__app-title {
    font-size: 2em;
    color: #FFC107;
    margin-bottom: 15px;
}

.page-game-introduction-new-releases__app-download p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #ddd;
}

.page-game-introduction-new-releases__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-game-introduction-new-releases__promo-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-introduction-new-releases__promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.page-game-introduction-new-releases__promo-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.page-game-introduction-new-releases__promo-title {
    font-size: 1.6em;
    color: #4B0082;
    margin-bottom: 10px;
}

.page-game-introduction-new-releases__promo-text {
    font-size: 1em;
    color: #666;
}

.page-game-introduction-new-releases__tip-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-introduction-new-releases__tip-item {
    background-color: #f9f9f9;
    border-left: 5px solid #FFC107;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-game-introduction-new-releases__tip-heading {
    font-size: 1.5em;
    color: #4B0082;
    margin-bottom: 10px;
}

.page-game-introduction-new-releases__tip-item p {
    color: #555;
    font-size: 1.1em;
}

.page-game-introduction-new-releases__info-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.page-game-introduction-new-releases__info-list li {
    font-size: 1.2em;
    color: #FFC107;
    display: flex;
    align-items: center;
    background-color: rgba(255, 193, 7, 0.1);
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.page-game-introduction-new-releases__info-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.page-game-introduction-new-releases__faq-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-introduction-new-releases__faq-question {
    font-size: 1.4em;
    color: #4B0082;
    margin-bottom: 10px;
}

.page-game-introduction-new-releases__faq-answer {
    font-size: 1.1em;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-game-introduction-new-releases__hero-title {
        font-size: 2.8em;
    }

    .page-game-introduction-new-releases__hero-subtitle {
        font-size: 1.3em;
    }

    .page-game-introduction-new-releases__section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-game-introduction-new-releases__hero-title {
        font-size: 2.2em;
    }

    .page-game-introduction-new-releases__hero-subtitle {
        font-size: 1.1em;
    }

    .page-game-introduction-new-releases__section {
        padding: 60px 0;
    }

    .page-game-introduction-new-releases__section-title {
        font-size: 1.8em;
    }

    .page-game-introduction-new-releases__feature-grid,
    .page-game-introduction-new-releases__game-list,
    .page-game-introduction-new-releases__steps-grid,
    .page-game-introduction-new-releases__promo-grid {
        grid-template-columns: 1fr;
    }

    .page-game-introduction-new-releases__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-game-introduction-new-releases__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-game-introduction-new-releases__info-list {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-game-introduction-new-releases__hero-title {
        font-size: 1.8em;
    }

    .page-game-introduction-new-releases__hero-subtitle {
        font-size: 1em;
    }

    .page-game-introduction-new-releases__section-title {
        font-size: 1.5em;
    }

    .page-game-introduction-new-releases__app-title {
        font-size: 1.6em;
    }
}