/* style/blog-news-exclusive-game-release.css */
.page-blog-news-exclusive-game-release {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #e0e0e0; /* Light gray for general text on dark backgrounds */
    background-color: #0A192F; /* Dark blue main background */
}

.page-blog-news-exclusive-game-release__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0A192F, #1a3a60); /* Gradient for hero */
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-blog-news-exclusive-game-release__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-blog-news-exclusive-game-release__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-blog-news-exclusive-game-release__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-blog-news-exclusive-game-release__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15; /* Subtle background image */
    z-index: 0;
}

.page-blog-news-exclusive-game-release__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-blog-news-exclusive-game-release__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark blue text on gold */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-blog-news-exclusive-game-release__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.page-blog-news-exclusive-game-release__cta-button--secondary {
    background-color: #0A192F; /* Dark blue button */
    color: #FFD700; /* Gold text on dark blue */
    border: 2px solid #FFD700;
}

.page-blog-news-exclusive-game-release__cta-button--secondary:hover {
    background-color: #1a3a60; /* Slightly lighter dark blue on hover */
    border-color: #e6c200;
}

.page-blog-news-exclusive-game-release__cta-button--outline {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-blog-news-exclusive-game-release__cta-button--outline:hover {
    background-color: #FFD700;
    color: #0A192F;
}

.page-blog-news-exclusive-game-release__section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.page-blog-news-exclusive-game-release__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-blog-news-exclusive-game-release__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-blog-news-exclusive-game-release__introduction p,
.page-blog-news-exclusive-game-release__why-mb66 p,
.page-blog-news-exclusive-game-release__commitment p,
.page-blog-news-exclusive-game-release__conclusion p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #c0c0c0; /* Lighter gray for paragraph text */
    text-align: justify;
}

.page-blog-news-exclusive-game-release__game-features {
    background-color: #071322; /* Slightly lighter dark blue for this section */
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-blog-news-exclusive-game-release__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-blog-news-exclusive-game-release__feature-item {
    background-color: #1a3a60; /* Mid-dark blue for feature cards */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-news-exclusive-game-release__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-blog-news-exclusive-game-release__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-blog-news-exclusive-game-release__feature-item h3 {
    font-size: 1.5em;
    color: #FFD700; /* Gold for feature titles */
    margin-bottom: 15px;
}

.page-blog-news-exclusive-game-release__feature-item p {
    color: #c0c0c0;
    font-size: 1em;
    text-align: center;
}

.page-blog-news-exclusive-game-release__benefits-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-blog-news-exclusive-game-release__benefits-list li {
    background-color: #1a3a60;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-news-exclusive-game-release__benefits-list li:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-blog-news-exclusive-game-release__benefit-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-blog-news-exclusive-game-release__benefits-list h3 {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-blog-news-exclusive-game-release__benefits-list p {
    color: #c0c0c0;
    font-size: 0.95em;
}

.page-blog-news-exclusive-game-release__get-started {
    background-color: #071322;
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-blog-news-exclusive-game-release__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-blog-news-exclusive-game-release__step-item {
    background-color: #1a3a60;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-blog-news-exclusive-game-release__step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFD700;
    color: #0A192F;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0 0 0 5px #0A192F;
}

.page-blog-news-exclusive-game-release__step-item h3 {
    font-size: 1.4em;
    color: #FFD700;
    margin-top: 40px; /* Space for step number */
    margin-bottom: 15px;
}

.page-blog-news-exclusive-game-release__step-item p {
    color: #c0c0c0;
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-blog-news-exclusive-game-release__step-item a.page-blog-news-exclusive-game-release__button {
    background-color: #FFD700;
    color: #0A192F;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
    display: inline-block;
    width: fit-content;
    margin: 0 auto;
}

.page-blog-news-exclusive-game-release__step-item a.page-blog-news-exclusive-game-release__button:hover {
    background-color: #e6c200;
}

.page-blog-news-exclusive-game-release__app-image {
    max-width: 800px;
    width: 100%;
    margin-top: 60px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.page-blog-news-exclusive-game-release__exclusive-offers {
    background-color: #0A192F;
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-blog-news-exclusive-game-release__offer-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-news-exclusive-game-release__offer-list li {
    background-color: #1a3a60;
    padding: 20px 30px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    color: #c0c0c0;
    font-size: 1.1em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-news-exclusive-game-release__offer-list li strong {
    color: #FFD700;
    font-size: 1.2em;
}

.page-blog-news-exclusive-game-release__promo-image {
    max-width: 900px;
    width: 100%;
    margin-top: 60px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.page-blog-news-exclusive-game-release__commitment {
    background-color: #071322;
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-blog-news-exclusive-game-release__security-image {
    max-width: 900px;
    width: 100%;
    margin-top: 60px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.page-blog-news-exclusive-game-release__final-cta {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Fade-in effect styles */
.page-blog-news-exclusive-game-release .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-blog-news-exclusive-game-release .fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-blog-news-exclusive-game-release__hero-title {
        font-size: 2.5em;
    }
    .page-blog-news-exclusive-game-release__hero-subtitle {
        font-size: 1.1em;
    }
    .page-blog-news-exclusive-game-release__section-title {
        font-size: 2em;
    }
    .page-blog-news-exclusive-game-release__features-grid,
    .page-blog-news-exclusive-game-release__benefits-list,
    .page-blog-news-exclusive-game-release__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-blog-news-exclusive-game-release__step-number {
        position: static;
        transform: none;
        margin-bottom: 20px;
    }
    .page-blog-news-exclusive-game-release__step-item h3 {
        margin-top: 0;
    }
    .page-blog-news-exclusive-game-release__offer-list li {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-blog-news-exclusive-game-release__hero {
        padding: 60px 15px;
    }
    .page-blog-news-exclusive-game-release__hero-title {
        font-size: 2em;
    }
    .page-blog-news-exclusive-game-release__hero-subtitle {
        font-size: 1em;
    }
    .page-blog-news-exclusive-game-release__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-blog-news-exclusive-game-release__section {
        padding: 40px 15px;
    }
    .page-blog-news-exclusive-game-release__section-title {
        font-size: 1.8em;
    }
    .page-blog-news-exclusive-game-release__introduction p,
    .page-blog-news-exclusive-game-release__why-mb66 p,
    .page-blog-news-exclusive-game-release__commitment p,
    .page-blog-news-exclusive-game-release__conclusion p {
        font-size: 1em;
    }
    .page-blog-news-exclusive-game-release__feature-item h3,
    .page-blog-news-exclusive-game-release__benefits-list h3,
    .page-blog-news-exclusive-game-release__step-item h3 {
        font-size: 1.3em;
    }
    .page-blog-news-exclusive-game-release__offer-list li {
        font-size: 0.95em;
        padding: 15px 20px;
    }
}