/* style/slot-games-new-releases.css */

/* Base styles for the page content */
.page-slot-games-new-releases {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Default dark text for light backgrounds */
    background-color: #FFFFFF; /* Default light background */
}

/* Section spacing and general container */
.page-slot-games-new-releases__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.page-slot-games-new-releases__section-title {
    font-size: 2.5em;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

.page-slot-games-new-releases__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

/* Hero Section */
.page-slot-games-new-releases__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    text-align: center;
    background: linear-gradient(135deg, #26A9E0, #1A7FB5);
    color: #ffffff;
}

.page-slot-games-new-releases__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 30px;
}

.page-slot-games-new-releases__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-slot-games-new-releases__hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-slot-games-new-releases__main-title {
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive font size for H1 */
}

.page-slot-games-new-releases__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games-new-releases__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-slot-games-new-releases__btn-primary,
.page-slot-games-new-releases__btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 1.1em;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-slot-games-new-releases__btn-primary {
    background: #EA7C07; /* Login button color */
    color: #ffffff;
    border: 2px solid #EA7C07;
}

.page-slot-games-new-releases__btn-primary:hover {
    background: #D46F00;
    border-color: #D46F00;
    transform: translateY(-3px);
}

.page-slot-games-new-releases__btn-secondary {
    background: #ffffff;
    color: #26A9E0;
    border: 2px solid #ffffff;
}

.page-slot-games-new-releases__btn-secondary:hover {
    background: #f0f0f0;
    color: #1A7FB5;
    border-color: #f0f0f0;
    transform: translateY(-3px);
}

/* Introduction Section */
.page-slot-games-new-releases__introduction-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    color: #333333;
}

/* Latest Games Section */
.page-slot-games-new-releases__latest-games-section {
    padding: 60px 0;
    background-color: #ffffff;
    color: #333333;
}

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

.page-slot-games-new-releases__game-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease;
    color: #333333;
}

.page-slot-games-new-releases__game-card:hover {
    transform: translateY(-5px);
}

.page-slot-games-new-releases__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
}

.page-slot-games-new-releases__game-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-slot-games-new-releases__game-description {
    font-size: 0.95em;
    color: #555555;
    margin-bottom: 20px;
    padding: 0 15px;
}

.page-slot-games-new-releases__btn-play {
    display: inline-block;
    background: #26A9E0;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    font-size: 0.95em;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-slot-games-new-releases__btn-play:hover {
    background: #1A7FB5;
}

/* Features Section */
.page-slot-games-new-releases__features-section {
    padding: 60px 0;
    background: linear-gradient(90deg, #26A9E0, #1A7FB5);
    color: #ffffff;
}

.page-slot-games-new-releases__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-slot-games-new-releases__feature-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
}

.page-slot-games-new-releases__feature-title {
    font-size: 1.6em;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.page-slot-games-new-releases__feature-description {
    font-size: 1em;
    color: #f0f0f0;
}

/* Why Choose Section */
.page-slot-games-new-releases__why-choose-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    color: #333333;
}

.page-slot-games-new-releases__advantage-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.page-slot-games-new-releases__advantage-item {
    background: #ffffff;
    border-left: 5px solid #26A9E0;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
}

.page-slot-games-new-releases__advantage-item strong {
    color: #26A9E0;
}

.page-slot-games-new-releases__image-wrapper {
    text-align: center;
    margin-top: 30px;
}

.page-slot-games-new-releases__promo-image,
.page-slot-games-new-releases__support-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

/* Promotions Section */
.page-slot-games-new-releases__promotions-section {
    padding: 60px 0;
    background: #26A9E0;
    color: #ffffff;
}

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

.page-slot-games-new-releases__promo-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #333333;
}

.page-slot-games-new-releases__promo-title {
    font-size: 1.8em;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-slot-games-new-releases__promo-description {
    font-size: 1em;
    color: #555555;
    margin-bottom: 25px;
}

.page-slot-games-new-releases__btn-promo {
    display: inline-block;
    background: #EA7C07;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    font-size: 0.95em;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-slot-games-new-releases__btn-promo:hover {
    background: #D46F00;
}

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

/* How to Start Section */
.page-slot-games-new-releases__how-to-start-section {
    padding: 60px 0;
    background-color: #ffffff;
    color: #333333;
}

.page-slot-games-new-releases__steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    margin-top: 30px;
}

.page-slot-games-new-releases__step-item {
    counter-increment: step-counter;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px 20px 20px 60px;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
}

.page-slot-games-new-releases__step-item::before {
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: #26A9E0;
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2em;
}

.page-slot-games-new-releases__step-item strong {
    color: #26A9E0;
}

/* FAQ Section */
.page-slot-games-new-releases__faq-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    color: #333333;
}

.page-slot-games-new-releases__faq-list {
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games-new-releases__faq-item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-slot-games-new-releases__faq-item[open] {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-slot-games-new-releases__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: 600;
    color: #26A9E0;
    cursor: pointer;
    background: #f0f0f0;
    border-bottom: 1px solid #e0e0e0;
    list-style: none; /* For details/summary */
}

.page-slot-games-new-releases__faq-question::-webkit-details-marker {
    display: none;
}

.page-slot-games-new-releases__faq-question:hover {
    background: #e9ecef;
}

.page-slot-games-new-releases__faq-qtext {
    flex-grow: 1;
    margin-right: 15px;
}

.page-slot-games-new-releases__faq-toggle {
    font-size: 1.5em;
    font-weight: 700;
    color: #EA7C07;
    width: 25px;
    text-align: center;
}

.page-slot-games-new-releases__faq-answer {
    padding: 20px;
    font-size: 1em;
    color: #555555;
    border-top: 1px solid #e0e0e0;
    margin-top: -1px; /* Overlap border */
}

.page-slot-games-new-releases__faq-item:not([open]) .page-slot-games-new-releases__faq-answer {
    display: none; /* Hide answer when not open for non-details */
}

.page-slot-games-new-releases__faq-item[open] .page-slot-games-new-releases__faq-answer {
    display: block; /* Show answer when open for non-details */
}

/* Conclusion Section */
.page-slot-games-new-releases__conclusion-section {
    padding: 60px 0;
    background: linear-gradient(45deg, #1A7FB5, #26A9E0);
    color: #ffffff;
    text-align: center;
}

/* Common Dark/Light Background Classes */
.page-slot-games-new-releases__dark-bg {
    color: #ffffff;
}

.page-slot-games-new-releases__light-bg {
    color: #333333;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-slot-games-new-releases__section-title {
        font-size: 2em;
    }
    .page-slot-games-new-releases__main-title {
        font-size: clamp(2em, 5vw, 3em);
    }
    .page-slot-games-new-releases__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-slot-games-new-releases__features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .page-slot-games-new-releases__promo-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-slot-games-new-releases__content-area,
    .page-slot-games-new-releases__hero-section,
    .page-slot-games-new-releases__introduction-section,
    .page-slot-games-new-releases__latest-games-section,
    .page-slot-games-new-releases__features-section,
    .page-slot-games-new-releases__why-choose-section,
    .page-slot-games-new-releases__promotions-section,
    .page-slot-games-new-releases__how-to-start-section,
    .page-slot-games-new-releases__faq-section,
    .page-slot-games-new-releases__conclusion-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-slot-games-new-releases__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }

    .page-slot-games-new-releases__hero-description {
        font-size: 1em;
    }

    .page-slot-games-new-releases__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-slot-games-new-releases__btn-primary,
    .page-slot-games-new-releases__btn-secondary,
    .page-slot-games-new-releases__btn-play,
    .page-slot-games-new-releases__btn-promo,
    .page-slot-games-new-releases a[class*="button"],
    .page-slot-games-new-releases a[class*="btn"] {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-slot-games-new-releases__game-grid,
    .page-slot-games-new-releases__features-grid,
    .page-slot-games-new-releases__promo-cards {
        grid-template-columns: 1fr;
    }

    .page-slot-games-new-releases img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-slot-games-new-releases__image-wrapper,
    .page-slot-games-new-releases__game-card,
    .page-slot-games-new-releases__promo-card,
    .page-slot-games-new-releases__feature-item,
    .page-slot-games-new-releases__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    
    .page-slot-games-new-releases__hero-section {
        padding-top: 10px !important; /* body already handles --header-offset */
    }
}

@media (max-width: 480px) {
    .page-slot-games-new-releases__section-title {
        font-size: 1.8em;
    }
    .page-slot-games-new-releases__main-title {
        font-size: clamp(1.5em, 8vw, 2.2em);
    }
    .page-slot-games-new-releases__btn-primary,
    .page-slot-games-new-releases__btn-secondary {
        font-size: 1em;
        padding: 12px 20px;
    }
    .page-slot-games-new-releases__faq-question {
        font-size: 1em;
        padding: 15px;
    }
    .page-slot-games-new-releases__faq-answer {
        padding: 15px;
    }
    .page-slot-games-new-releases__step-item {
        padding: 15px 15px 15px 50px;
    }
    .page-slot-games-new-releases__step-item::before {
        left: 15px;
    }
}