/* style/latest-news-new-game-launch.css */
.page-latest-news-new-game-launch {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

/* Hero Section */
.page-latest-news-new-game-launch__hero-section {
    background: linear-gradient(135deg, #FFD700 0%, #b39700 100%); /* Gold gradient */
    color: #000080; /* Dark blue text on gold background */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-latest-news-new-game-launch__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    z-index: 1;
    color: #000080; /* Dark blue */
}

.page-latest-news-new-game-launch__hero-title .highlight {
    color: #000080; /* Dark blue for brand name */
}

.page-latest-news-new-game-launch__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    color: #333333; /* Darker grey for subtitle */
}

.page-latest-news-new-game-launch__hero-button {
    display: inline-block;
    background-color: #000080; /* Dark blue button */
    color: #FFD700; /* Gold text on dark blue */
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 1.2em;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.page-latest-news-new-game-launch__hero-button:hover {
    background-color: #000050; /* Darker blue on hover */
    transform: translateY(-3px);
}

/* General Section Styling */
.page-latest-news-new-game-launch__introduction-section,
.page-latest-news-new-game-launch__featured-games-section,
.page-latest-news-new-game-launch__how-to-start-section,
.page-latest-news-new-game-launch__benefits-section,
.page-latest-news-new-game-launch__responsible-gaming-section,
.page-latest-news-new-game-launch__faq-section,
.page-latest-news-new-game-launch__final-cta-section {
    padding: 60px 0;
    text-align: center;
}

.page-latest-news-new-game-launch__section-title {
    font-size: 2.5em;
    color: #000080; /* Dark blue title */
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.page-latest-news-new-game-launch__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold underline */
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-latest-news-new-game-launch__section-description {
    font-size: 1.1em;
    color: #555;
    max-width: 900px;
    margin: 0 auto 40px;
}

.page-latest-news-new-game-launch__image-wrapper {
    margin-bottom: 40px;
}

.page-latest-news-new-game-launch__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Featured Games Section */
.page-latest-news-new-game-launch__featured-games-section {
    background-color: #f0f0f0;
}

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

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

.page-latest-news-new-game-launch__game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-latest-news-new-game-launch__game-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-latest-news-new-game-launch__game-title {
    font-size: 1.5em;
    color: #000080;
    margin-bottom: 10px;
}

.page-latest-news-new-game-launch__game-description {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 20px;
}

.page-latest-news-new-game-launch__game-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #000080; /* Dark blue text */
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-latest-news-new-game-launch__game-button:hover {
    background-color: #e6c200; /* Darker gold on hover */
}

/* How to Start Section */
.page-latest-news-new-game-launch__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-latest-news-new-game-launch__step-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-latest-news-new-game-launch__step-card:hover {
    transform: translateY(-5px);
}

.page-latest-news-new-game-launch__step-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-latest-news-new-game-launch__step-title {
    font-size: 1.6em;
    color: #000080;
    margin-bottom: 15px;
}

.page-latest-news-new-game-launch__step-description {
    color: #666;
    font-size: 1em;
}

.page-latest-news-new-game-launch__step-description a {
    color: #000080;
    text-decoration: underline;
    font-weight: bold;
}

.page-latest-news-new-game-launch__step-description a:hover {
    color: #FFD700;
}

.page-latest-news-new-game-launch__call-to-action {
    margin-top: 60px;
    padding: 40px;
    background-color: #000080; /* Dark blue background */
    border-radius: 15px;
    color: #FFD700; /* Gold text */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-latest-news-new-game-launch__call-to-action p {
    font-size: 1.4em;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-latest-news-new-game-launch__primary-button,
.page-latest-news-new-game-launch__secondary-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    text-decoration: none;
    font-weight: bold;
    margin: 0 10px;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.page-latest-news-new-game-launch__primary-button {
    background-color: #FFD700; /* Gold button */
    color: #000080; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-latest-news-new-game-launch__primary-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-latest-news-new-game-launch__secondary-button {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-latest-news-new-game-launch__secondary-button:hover {
    background-color: #FFD700;
    color: #000080;
    transform: translateY(-3px);
}

/* Benefits Section */
.page-latest-news-new-game-launch__benefits-section {
    background-color: #f0f0f0;
}

.page-latest-news-new-game-launch__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-latest-news-new-game-launch__benefit-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
}

.page-latest-news-new-game-launch__benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
}

.page-latest-news-new-game-launch__benefit-title {
    font-size: 1.4em;
    color: #000080;
    margin-bottom: 10px;
}

.page-latest-news-new-game-launch__benefit-description {
    color: #666;
    font-size: 0.95em;
}

/* Responsible Gaming Section */
.page-latest-news-new-game-launch__responsible-gaming-section {
    background-color: #000080; /* Dark blue background */
    color: #FFD700; /* Gold text */
}

.page-latest-news-new-game-launch__responsible-gaming-section .page-latest-news-new-game-launch__section-title {
    color: #FFD700; /* Gold title */
}

.page-latest-news-new-game-launch__responsible-gaming-section .page-latest-news-new-game-launch__section-title::after {
    background-color: #FFD700; /* Gold underline */
}

.page-latest-news-new-game-launch__responsible-gaming-section .page-latest-news-new-game-launch__section-description {
    color: #e0e0e0;
}

.page-latest-news-new-game-launch__responsible-list {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 30px auto 40px;
    text-align: left;
}

.page-latest-news-new-game-launch__responsible-list li {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #FFD700;
    position: relative;
    padding-left: 25px;
}

.page-latest-news-new-game-launch__list-bullet {
    position: absolute;
    left: 0;
    color: #FFD700; /* Gold bullet */
    font-weight: bold;
}

.page-latest-news-new-game-launch__contact-link {
    color: #FFD700;
    text-decoration: underline;
    font-weight: bold;
}

.page-latest-news-new-game-launch__contact-link:hover {
    color: #e6c200;
}

/* FAQ Section */
.page-latest-news-new-game-launch__faq-section {
    background-color: #fff;
}

.page-latest-news-new-game-launch__faq-item {
    text-align: left;
    max-width: 900px;
    margin: 0 auto 25px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background-color: #fcfcfc;
}

.page-latest-news-new-game-launch__faq-question {
    font-size: 1.3em;
    color: #000080;
    margin-bottom: 10px;
}

.page-latest-news-new-game-launch__faq-answer {
    color: #555;
    font-size: 1em;
}

.page-latest-news-new-game-launch__faq-answer a {
    color: #000080;
    text-decoration: underline;
    font-weight: bold;
}

.page-latest-news-new-game-launch__faq-answer a:hover {
    color: #FFD700;
}

/* Final CTA Section */
.page-latest-news-new-game-launch__final-cta-section {
    background: linear-gradient(45deg, #000080 0%, #000050 100%); /* Dark blue gradient */
    color: #FFD700; /* Gold text */
    padding: 80px 0;
}

.page-latest-news-new-game-launch__final-cta-section .page-latest-news-new-game-launch__section-title {
    color: #FFD700; /* Gold title */
}

.page-latest-news-new-game-launch__final-cta-section .page-latest-news-new-game-launch__section-title::after {
    background-color: #FFD700; /* Gold underline */
}

.page-latest-news-new-game-launch__final-cta-section .page-latest-news-new-game-launch__section-description {
    color: #e0e0e0;
    margin-bottom: 50px;
}

.page-latest-news-new-game-launch__cta-buttons {
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-latest-news-new-game-launch__hero-title {
        font-size: 2.8em;
    }
    .page-latest-news-new-game-launch__hero-subtitle {
        font-size: 1.3em;
    }
    .page-latest-news-new-game-launch__section-title {
        font-size: 2em;
    }
    .page-latest-news-new-game-launch__game-grid,
    .page-latest-news-new-game-launch__steps-grid,
    .page-latest-news-new-game-launch__benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-latest-news-new-game-launch__primary-button,
    .page-latest-news-new-game-launch__secondary-button {
        margin: 10px 0;
    }
}

@media (max-width: 768px) {
    .page-latest-news-new-game-launch__hero-section {
        padding: 80px 0;
    }
    .page-latest-news-new-game-launch__hero-title {
        font-size: 2.2em;
    }
    .page-latest-news-new-game-launch__hero-subtitle {
        font-size: 1.1em;
    }
    .page-latest-news-new-game-launch__section-title {
        font-size: 1.8em;
    }
    .page-latest-news-new-game-launch__game-grid,
    .page-latest-news-new-game-launch__steps-grid,
    .page-latest-news-new-game-launch__benefits-grid {
        grid-template-columns: 1fr;
    }
    .page-latest-news-new-game-launch__game-card,
    .page-latest-news-new-game-launch__step-card,
    .page-latest-news-new-game-launch__benefit-card {
        margin: 0 auto;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .page-latest-news-new-game-launch__hero-section {
        padding: 60px 0;
    }
    .page-latest-news-new-game-launch__hero-title {
        font-size: 1.8em;
    }
    .page-latest-news-new-game-launch__hero-subtitle {
        font-size: 1em;
    }
    .page-latest-news-new-game-launch__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-latest-news-new-game-launch__section-title {
        font-size: 1.5em;
    }
    .page-latest-news-new-game-launch__call-to-action p {
        font-size: 1.2em;
    }
    .page-latest-news-new-game-launch__primary-button,
    .page-latest-news-new-game-launch__secondary-button {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}