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

.page-games-new-releases__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-games-new-releases__hero {
    background: linear-gradient(135deg, #003366 0%, #004080 100%); /* Deep blue gradient */
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-games-new-releases__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.page-games-new-releases__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #ffffff; /* White text on dark blue background */
}

.page-games-new-releases__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #e0e0e0; /* Lighter white for subtitle */
}

.page-games-new-releases__hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
}

.page-games-new-releases__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%) blur(3px);
}

.page-games-new-releases__hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-games-new-releases__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
}

.page-games-new-releases__btn--primary {
    background-color: #FFCC00; /* Golden yellow */
    color: #003366; /* Deep blue text on golden yellow */
    border: 2px solid #FFCC00;
}

.page-games-new-releases__btn--primary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.page-games-new-releases__btn--secondary {
    background-color: transparent;
    color: #ffffff; /* White text on dark blue background */
    border: 2px solid #ffffff;
}

.page-games-new-releases__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.page-games-new-releases__section {
    padding: 60px 0;
    text-align: center;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-games-new-releases__section:nth-of-type(even) {
    background-color: #f0f5fa; /* Light blue-gray for alternating sections */
}

.page-games-new-releases__section-title {
    font-size: 2.5em;
    color: #003366; /* Deep blue for titles */
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-games-new-releases__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFCC00; /* Golden yellow underline */
    border-radius: 2px;
}

.page-games-new-releases__intro p,
.page-games-new-releases__how-to-play p,
.page-games-new-releases__offers p,
.page-games-new-releases__why-choose p,
.page-games-new-releases__conclusion p {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 20px auto;
    color: #555;
}

.highlight-kv999 {
    color: #003366; /* Deep blue for kv999 brand name */
    font-weight: bold;
}

.page-games-new-releases__game-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
    padding: 30px;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    text-align: left;
}

.page-games-new-releases__game-category:nth-of-type(odd) {
    background-color: #fdfdfd;
}

.page-games-new-releases__category-title {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 25px;
    text-align: center;
    width: 100%;
}

.page-games-new-releases__category-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    align-items: center;
}

.page-games-new-releases__category-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.page-games-new-releases__game-category p {
    font-size: 1.05em;
    color: #444;
    margin-bottom: 20px;
    max-width: 800px;
}

.page-games-new-releases__game-category .page-games-new-releases__btn {
    margin-top: 10px;
    background-color: #FFCC00;
    color: #003366;
    border: none;
}

.page-games-new-releases__game-category .page-games-new-releases__btn:hover {
    background-color: #e6b800;
}

.page-games-new-releases__steps-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 900px;
    text-align: left;
}

.page-games-new-releases__steps-list li {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-left: 5px solid #003366;
    margin-bottom: 20px;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.page-games-new-releases__step-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 10px;
}

.page-games-new-releases__link {
    color: #003366; /* Deep blue for links */
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-games-new-releases__link:hover {
    color: #FFCC00; /* Golden yellow on hover */
}

.page-games-new-releases__cta-bottom {
    margin-top: 50px;
    text-align: center;
}

.page-games-new-releases__offers-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 800px;
    text-align: left;
}

.page-games-new-releases__offers-list li {
    font-size: 1.1em;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #444;
}

.page-games-new-releases__offers-list li::before {
    content: '★'; /* Star icon */
    color: #FFCC00;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
}

.page-games-new-releases__offer-image-container {
    margin: 40px auto;
    max-width: 800px;
}

.page-games-new-releases__offer-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-games-new-releases__advantages-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 900px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: left;
}

.page-games-new-releases__advantages-list li {
    font-size: 1.1em;
    color: #444;
    padding: 20px;
    background-color: #fdfdfd;
    border: 1px solid #e0e0e0;
    border-left: 5px solid #FFCC00;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.page-games-new-releases__advantages-list li strong {
    color: #003366;
}

.page-games-new-releases__why-choose-image {
    margin-top: 40px;
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-games-new-releases__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
}

.page-games-new-releases__faq-question {
    font-size: 1.3em;
    color: #003366;
    padding: 20px 25px;
    margin: 0;
    cursor: pointer;
    background-color: #f0f5fa; /* Light blue-gray for FAQ question background */
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.page-games-new-releases__faq-question:hover {
    background-color: #e6edf5;
}

.page-games-new-releases__faq-answer {
    font-size: 1.05em;
    color: #555;
    padding: 20px 25px;
    margin: 0;
    border-top: 1px solid #f0f0f0;
}

.page-games-new-releases__cta-final {
    margin-top: 60px;
    margin-bottom: 20px;
}

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

/* Responsive adjustments */
@media (min-width: 768px) {
    .page-games-new-releases__hero {
        padding: 120px 20px;
    }
    .page-games-new-releases__hero-title {
        font-size: 4em;
    }
    .page-games-new-releases__hero-subtitle {
        font-size: 1.6em;
    }
    .page-games-new-releases__game-category {
        flex-direction: row;
        text-align: left;
        gap: 40px;
    }
    .page-games-new-releases__game-category:nth-of-type(even) {
        flex-direction: row-reverse;
    }
    .page-games-new-releases__category-content {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        flex-wrap: nowrap;
    }
    .page-games-new-releases__category-image {
        flex-shrink: 0;
        max-width: 350px;
        width: 40%;
        margin-bottom: 0;
    }
    .page-games-new-releases__game-category .page-games-new-releases__btn {
        align-self: flex-start;
    }
    .page-games-new-releases__advantages-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .page-games-new-releases__hero-title {
        font-size: 2.2em;
    }
    .page-games-new-releases__hero-subtitle {
        font-size: 1.1em;
    }
    .page-games-new-releases__section-title {
        font-size: 1.8em;
    }
    .page-games-new-releases__category-title {
        font-size: 1.5em;
    }
    .page-games-new-releases__btn {
        width: 100%;
        text-align: center;
    }
    .page-games-new-releases__hero-cta-group {
        flex-direction: column;
    }
}