/* style/news-updates-new-game-launch.css */
.page-news-updates-new-game-launch {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray text for dark background */
    background-color: #121A26; /* Slightly lighter dark background */
}

.page-news-updates-new-game-launch__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-news-updates-new-game-launch__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Accent color for titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.page-news-updates-new-game-launch__section-description {
    font-size: 1.1em;
    color: #B0B0B0;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

.page-news-updates-new-game-launch__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.page-news-updates-new-game-launch__btn--primary {
    background-color: #FFD700; /* Accent color */
    color: #1A2E44; /* Dark text for accent background */
    border: 2px solid #FFD700;
}

.page-news-updates-new-game-launch__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-news-updates-new-game-launch__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Accent color text */
    border: 2px solid #FFD700;
}

.page-news-updates-new-game-launch__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A2E44;
    transform: translateY(-2px);
}

.page-news-updates-new-game-launch__btn--small {
    padding: 8px 18px;
    font-size: 0.9em;
}

.page-news-updates-new-game-launch__btn--large {
    padding: 15px 35px;
    font-size: 1.2em;
}

/* Hero Section */
.page-news-updates-new-game-launch__hero-section {
    background: linear-gradient(135deg, #1A2E44 0%, #0D1726 100%); /* Dark gradient */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-news-updates-new-game-launch__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.page-news-updates-new-game-launch__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Accent color */
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.page-news-updates-new-game-launch__hero-subtitle {
    font-size: 1.3em;
    color: #E0E0E0;
    margin-bottom: 40px;
    line-height: 1.5;
}

.page-news-updates-new-game-launch__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-news-updates-new-game-launch__hero-image-wrapper {
    margin-top: 50px;
    text-align: center;
}

.page-news-updates-new-game-launch__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Why Choose Section */
.page-news-updates-new-game-launch__why-choose-section {
    background-color: #1A2E44; /* Main dark color */
    padding: 60px 0;
}

.page-news-updates-new-game-launch__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-news-updates-new-game-launch__feature-item {
    background-color: #233852; /* Slightly lighter than main */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.page-news-updates-new-game-launch__feature-item:hover {
    transform: translateY(-10px);
}

.page-news-updates-new-game-launch__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-news-updates-new-game-launch__feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-news-updates-new-game-launch__feature-text {
    font-size: 1em;
    color: #B0B0B0;
    line-height: 1.6;
}

/* New Games Showcase */
.page-news-updates-new-game-launch__new-games-showcase {
    background-color: #0D1726;
    padding: 80px 0;
}

.page-news-updates-new-game-launch__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-news-updates-new-game-launch__game-card {
    background-color: #1A2E44;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    text-align: center;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-news-updates-new-game-launch__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #FFD700;
}

.page-news-updates-new-game-launch__game-title {
    font-size: 1.6em;
    color: #FFD700;
    margin: 20px 15px 10px;
}

.page-news-updates-new-game-launch__game-description {
    font-size: 0.95em;
    color: #B0B0B0;
    line-height: 1.6;
    padding: 0 15px;
    flex-grow: 1;
    margin-bottom: 20px;
}

/* Guide Section */
.page-news-updates-new-game-launch__guide-section {
    background-color: #1A2E44;
    padding: 80px 0;
}

.page-news-updates-new-game-launch__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-news-updates-new-game-launch__step-item {
    background-color: #233852;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: center;
    position: relative;
}

.page-news-updates-new-game-launch__step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFD700;
    color: #1A2E44;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
    border: 3px solid #1A2E44;
}

.page-news-updates-new-game-launch__step-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-news-updates-new-game-launch__step-text {
    font-size: 0.95em;
    color: #B0B0B0;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Promo Section */
.page-news-updates-new-game-launch__promo-section {
    background-color: #0D1726;
    padding: 80px 0;
}

.page-news-updates-new-game-launch__promo-section .page-news-updates-new-game-launch__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-news-updates-new-game-launch__promo-content {
    flex: 1;
    min-width: 300px;
}

.page-news-updates-new-game-launch__promo-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-news-updates-new-game-launch__promo-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.page-news-updates-new-game-launch__promo-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    color: #E0E0E0;
}

.page-news-updates-new-game-launch__promo-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    position: relative;
    padding-left: 30px;
}

.page-news-updates-new-game-launch__promo-list li::before {
    content: '✓';
    color: #FFD700;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* Safety Section */
.page-news-updates-new-game-launch__safety-section {
    background-color: #1A2E44;
    padding: 80px 0;
}

.page-news-updates-new-game-launch__safety-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-news-updates-new-game-launch__safety-item {
    background-color: #233852;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.page-news-updates-new-game-launch__safety-item h3 {
    font-size: 1.5em;
    color: #FFD700;
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-news-updates-new-game-launch__safety-item p {
    font-size: 1em;
    color: #B0B0B0;
    line-height: 1.6;
}

.page-news-updates-new-game-launch__safety-icon {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 0 5px #FFD700);
}

/* CTA Section */
.page-news-updates-new-game-launch__cta-section {
    background: linear-gradient(45deg, #1A2E44, #0D1726);
    padding: 80px 0;
    text-align: center;
}

.page-news-updates-new-game-launch__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.page-news-updates-new-game-launch__cta-description {
    font-size: 1.2em;
    color: #E0E0E0;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-news-updates-new-game-launch__hero-title {
        font-size: 3em;
    }
    .page-news-updates-new-game-launch__section-title {
        font-size: 2em;
    }
    .page-news-updates-new-game-launch__promo-section .page-news-updates-new-game-launch__container {
        flex-direction: column;
    }
    .page-news-updates-new-game-launch__promo-content,
    .page-news-updates-new-game-launch__promo-image-wrapper {
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-news-updates-new-game-launch__hero-title {
        font-size: 2.5em;
    }
    .page-news-updates-new-game-launch__hero-subtitle {
        font-size: 1.1em;
    }
    .page-news-updates-new-game-launch__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-news-updates-new-game-launch__section-title {
        font-size: 1.8em;
    }
    .page-news-updates-new-game-launch__section-description {
        font-size: 1em;
    }
    .page-news-updates-new-game-launch__game-card {
        padding-bottom: 15px;
    }
    .page-news-updates-new-game-launch__game-title {
        font-size: 1.4em;
    }
    .page-news-updates-new-game-launch__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 480px) {
    .page-news-updates-new-game-launch__hero-title {
        font-size: 2em;
    }
    .page-news-updates-new-game-launch__hero-subtitle {
        font-size: 0.95em;
    }
    .page-news-updates-new-game-launch__section-title {
        font-size: 1.6em;
    }
    .page-news-updates-new-game-launch__btn--large {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-news-updates-new-game-launch__step-item {
        padding: 25px;
    }
    .page-news-updates-new-game-launch__cta-title {
        font-size: 1.8em;
    }
}