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

/* Custom Colors */
:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --background-color: #08160F; /* This is the main body background, text should be light */
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
}

.page-slot-games-new-releases {
    font-family: Arial, sans-serif;
    color: var(--text-main); /* Default text color for the page */
    background-color: var(--background-color); /* Matches body background */
    line-height: 1.6;
}

.page-slot-games-new-releases__dark-bg {
    background-color: var(--background-color);
    color: var(--text-main);
}

.page-slot-games-new-releases__card {
    background-color: var(--card-bg);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games-new-releases__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-slot-games-new-releases__section {
    padding: 60px 20px;
    text-align: center;
}

.page-slot-games-new-releases__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.page-slot-games-new-releases__section-title {
    font-size: 2.5rem;
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-slot-games-new-releases__section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.page-slot-games-new-releases__btn-primary,
.page-slot-games-new-releases__btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-slot-games-new-releases__btn-primary {
    background: var(--button-gradient);
    color: var(--text-main);
    border: none;
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
}

.page-slot-games-new-releases__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 255, 0, 0.4);
}

.page-slot-games-new-releases__btn-secondary {
    background: transparent;
    color: var(--gold-color);
    border: 2px solid var(--gold-color);
}

.page-slot-games-new-releases__btn-secondary:hover {
    background: var(--gold-color);
    color: var(--background-color);
}

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

.page-slot-games-new-releases__cta-full-width {
    margin-top: 40px;
}

.page-slot-games-new-releases__cta-full-width .page-slot-games-new-releases__btn-primary {
    width: auto;
    min-width: 250px;
    padding: 15px 35px;
}

/* Hero Section */
.page-slot-games-new-releases__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 20px 80px; /* Small top padding, more bottom padding */
    overflow: hidden;
}

.page-slot-games-new-releases__hero-image {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: cover;
    display: block;
    margin-bottom: 40px; /* Space between image and content */
}

.page-slot-games-new-releases__hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.page-slot-games-new-releases__hero-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem); /* Responsive font size */
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.page-slot-games-new-releases__hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Why Hello888 Section */
.page-slot-games-new-releases__why-hello888 {
    padding-top: 80px;
}

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

.page-slot-games-new-releases__feature-item {
    text-align: center;
    padding: 30px;
}

.page-slot-games-new-releases__feature-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    padding: 10px;
}

.page-slot-games-new-releases__feature-title {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 15px;
}

.page-slot-games-new-releases__feature-text {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Featured Games Section */
.page-slot-games-new-releases__featured-games {
    padding-top: 80px;
}

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

.page-slot-games-new-releases__game-card {
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.page-slot-games-new-releases__game-thumbnail {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.page-slot-games-new-releases__game-title {
    font-size: 1.6rem;
    color: var(--gold-color);
    margin-bottom: 10px;
    flex-grow: 1;
}

.page-slot-games-new-releases__game-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    flex-grow: 1;
}

/* How to Start Section */
.page-slot-games-new-releases__how-to-start {
    padding-top: 80px;
}

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

.page-slot-games-new-releases__step-item {
    text-align: center;
    padding: 30px;
}

.page-slot-games-new-releases__step-icon {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
    padding: 10px;
}

.page-slot-games-new-releases__step-title {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 15px;
}

.page-slot-games-new-releases__step-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Promotions Section */
.page-slot-games-new-releases__promotions {
    padding-top: 80px;
}

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

.page-slot-games-new-releases__promo-card {
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.page-slot-games-new-releases__promo-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.page-slot-games-new-releases__promo-title {
    font-size: 1.6rem;
    color: var(--gold-color);
    margin-bottom: 10px;
    flex-grow: 1;
}

.page-slot-games-new-releases__promo-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Fair Play Section */
.page-slot-games-new-releases__fair-play {
    padding-top: 80px;
}

.page-slot-games-new-releases__image-full-width {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 40px auto 0;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

/* FAQ Section */
.page-slot-games-new-releases__faq-section {
    padding-top: 80px;
}

.page-slot-games-new-releases__faq-list {
    max-width: 900px;
    margin: 50px auto 0;
    text-align: left;
}

.page-slot-games-new-releases__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-slot-games-new-releases__faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-main);
    background-color: var(--deep-green);
    transition: background-color 0.3s ease;
}

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

.page-slot-games-new-releases__faq-item summary:hover {
    background-color: var(--primary-color);
}

.page-slot-games-new-releases__faq-qtext {
    flex-grow: 1;
    color: var(--text-main);
}

.page-slot-games-new-releases__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--gold-color);
}

.page-slot-games-new-releases__faq-item[open] .page-slot-games-new-releases__faq-toggle {
    content: '−';
}

.page-slot-games-new-releases__faq-answer {
    padding: 20px 25px;
    font-size: 1rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--divider-color);
}

.page-slot-games-new-releases__faq-answer p {
    margin-bottom: 0;
    color: var(--text-secondary);
}

.page-slot-games-new-releases__faq-answer a {
    color: var(--gold-color);
    text-decoration: underline;
}

.page-slot-games-new-releases__faq-answer a:hover {
    color: var(--primary-color);
}

/* Final CTA Section */
.page-slot-games-new-releases__final-cta {
    padding-top: 80px;
    padding-bottom: 80px;
    background: linear-gradient(180deg, var(--deep-green) 0%, var(--background-color) 100%);
}

/* Image Styling */
.page-slot-games-new-releases img {
    max-width: 100%;
    height: auto;
    display: block;
    /* No CSS filters allowed */
    filter: none; /* Explicitly remove any potential filter */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-slot-games-new-releases__section-title {
        font-size: 2.2rem;
    }
    .page-slot-games-new-releases__hero-title {
        font-size: clamp(2rem, 5vw, 3.2rem);
    }
    .page-slot-games-new-releases__hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .page-slot-games-new-releases__section {
        padding: 40px 15px;
    }
    .page-slot-games-new-releases__hero-section {
        padding: 10px 15px 60px;
    }
    .page-slot-games-new-releases__section-title {
        font-size: 1.8rem;
    }
    .page-slot-games-new-releases__hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .page-slot-games-new-releases__hero-description {
        font-size: 1rem;
    }
    .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 {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 0.95rem;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    /* Mobile image responsiveness */
    .page-slot-games-new-releases img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-slot-games-new-releases__section,
    .page-slot-games-new-releases__card,
    .page-slot-games-new-releases__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-slot-games-new-releases__hero-image {
        margin-bottom: 20px;
    }
    .page-slot-games-new-releases__feature-icon,
    .page-slot-games-new-releases__step-icon {
        width: 100px;
        height: 100px;
    }
    .page-slot-games-new-releases__game-thumbnail,
    .page-slot-games-new-releases__promo-thumbnail {
        height: 180px;
    }
    .page-slot-games-new-releases__image-full-width {
        margin-top: 20px;
    }
    .page-slot-games-new-releases__faq-item summary {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-slot-games-new-releases__faq-toggle {
        font-size: 1.5rem;
    }
    .page-slot-games-new-releases__faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-slot-games-new-releases__section-title {
        font-size: 1.5rem;
    }
    .page-slot-games-new-releases__hero-title {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
    }
    .page-slot-games-new-releases__hero-description {
        font-size: 0.9rem;
    }
    .page-slot-games-new-releases__feature-title,
    .page-slot-games-new-releases__step-title {
        font-size: 1.3rem;
    }
    .page-slot-games-new-releases__game-title,
    .page-slot-games-new-releases__promo-title {
        font-size: 1.4rem;
    }
}