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

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

.page-slot-games-new-releases {
    font-family: 'Arial', sans-serif;
    color: var(--c33win-text-main); /* Default text color for the page */
    background-color: var(--c33win-bg-dark); /* Ensure consistency with body background */
}

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

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

.page-slot-games-new-releases__light-bg {
    background-color: var(--c33win-deep-green);
    color: var(--c33win-text-main);
}

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

/* Hero Section */
.page-slot-games-new-releases__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    overflow: hidden;
    text-align: center;
}

.page-slot-games-new-releases__hero-image-wrapper {
    width: 100%;
    max-height: 700px; /* Limit height for hero image */
    overflow: hidden;
    position: relative;
}

.page-slot-games-new-releases__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    min-height: 400px; /* Ensure hero image is not too small */
}

.page-slot-games-new-releases__hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin-top: -150px; /* Overlap slightly with the image for visual effect */
    padding: 40px;
    background: rgba(17, 39, 27, 0.85); /* Slightly transparent card-bg */
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--c33win-border);
}

.page-slot-games-new-releases__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--c33win-gold);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-slot-games-new-releases__description {
    font-size: 1.15rem;
    color: var(--c33win-text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.page-slot-games-new-releases__btn-primary,
.page-slot-games-new-releases__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 180px;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-slot-games-new-releases__btn-primary {
    background: var(--c33win-button-gradient);
    color: var(--c33win-text-main);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-slot-games-new-releases__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

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

.page-slot-games-new-releases__btn-secondary:hover {
    background-color: var(--c33win-secondary);
    color: var(--c33win-bg-dark);
    transform: translateY(-3px);
}

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

.page-slot-games-new-releases__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--c33win-gold);
    margin-bottom: 40px;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-slot-games-new-releases__section p {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 20px auto;
    color: var(--c33win-text-secondary);
}

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

.page-slot-games-new-releases__card {
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--c33win-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games-new-releases__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-slot-games-new-releases__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid var(--c33win-border);
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

.page-slot-games-new-releases__card-title {
    font-size: 1.4rem;
    color: var(--c33win-primary);
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

/* How to Play */
.page-slot-games-new-releases__list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 30px auto;
    text-align: left;
}

.page-slot-games-new-releases__list li {
    background-color: var(--c33win-card-bg);
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 10px;
    border-left: 5px solid var(--c33win-primary);
    font-size: 1.05rem;
    color: var(--c33win-text-main);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games-new-releases__list li strong {
    color: var(--c33win-gold);
}

/* Providers List */
.page-slot-games-new-releases__provider-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 30px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-slot-games-new-releases__provider-list li {
    background-color: var(--c33win-card-bg);
    padding: 15px 25px;
    border-radius: 8px;
    border: 1px solid var(--c33win-border);
    color: var(--c33win-text-main);
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.page-slot-games-new-releases__provider-list li:hover {
    background-color: var(--c33win-deep-green);
}

/* Why C33WIN Features */
.page-slot-games-new-releases__grid--two-cols {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    text-align: left;
}

.page-slot-games-new-releases__feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: var(--c33win-card-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--c33win-border);
    transition: transform 0.3s ease;
}

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

.page-slot-games-new-releases__feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(87, 227, 141, 0.5));
    min-width: 64px; /* Ensure icon is not smaller than 200px after scaling */
    min-height: 64px;
}

.page-slot-games-new-releases__feature-title {
    font-size: 1.3rem;
    color: var(--c33win-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-slot-games-new-releases__feature-item p {
    font-size: 0.95rem;
    color: var(--c33win-text-secondary);
    margin: 0;
    text-align: left;
}

/* FAQ Section */
.page-slot-games-new-releases__faq-list {
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
}

.page-slot-games-new-releases__faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid var(--c33win-border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.page-slot-games-new-releases__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: var(--c33win-card-bg);
    color: var(--c33win-text-main);
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 1px solid var(--c33win-divider);
    list-style: none; /* For <summary> tag */
}

.page-slot-games-new-releases__faq-question::-webkit-details-marker {
    display: none; /* For <summary> tag */
}

.page-slot-games-new-releases__faq-question:hover {
    background-color: var(--c33win-deep-green);
}

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

.page-slot-games-new-releases__faq-answer {
    padding: 20px 25px;
    background-color: rgba(17, 39, 27, 0.8); /* Slightly lighter than card-bg */
    color: var(--c33win-text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Final CTA */
.page-slot-games-new-releases__cta-final {
    padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-slot-games-new-releases__hero-content {
        margin-top: -100px;
        padding: 30px;
    }
    .page-slot-games-new-releases__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-slot-games-new-releases__description {
        font-size: 1rem;
    }
    .page-slot-games-new-releases__section-title {
        font-size: clamp(1.6rem, 3.8vw, 2.5rem);
    }
    .page-slot-games-new-releases__grid--two-cols {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-slot-games-new-releases__hero-section {
        padding-bottom: 40px;
    }
    .page-slot-games-new-releases__hero-image-wrapper {
        max-height: 400px;
    }
    .page-slot-games-new-releases__hero-image {
        min-height: 250px;
    }
    .page-slot-games-new-releases__hero-content {
        margin-top: -80px;
        padding: 20px;
    }
    .page-slot-games-new-releases__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .page-slot-games-new-releases__description {
        font-size: 0.95rem;
    }
    .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%;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-slot-games-new-releases__section {
        padding: 40px 0;
    }
    .page-slot-games-new-releases__section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 30px;
    }
    .page-slot-games-new-releases__section p {
        font-size: 0.9rem;
    }
    .page-slot-games-new-releases__grid {
        grid-template-columns: 1fr;
    }
    .page-slot-games-new-releases__card {
        padding: 20px;
    }
    .page-slot-games-new-releases__card-title {
        font-size: 1.2rem;
    }
    .page-slot-games-new-releases__list li {
        font-size: 0.95rem;
        padding: 15px 20px;
    }
    .page-slot-games-new-releases__provider-list li {
        font-size: 1rem;
        padding: 10px 15px;
    }
    .page-slot-games-new-releases__feature-title {
        font-size: 1.15rem;
    }
    .page-slot-games-new-releases__feature-item p {
        font-size: 0.85rem;
    }
    .page-slot-games-new-releases__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-slot-games-new-releases__faq-answer {
        font-size: 0.9rem;
        padding: 15px 20px;
    }

    /* Mobile image and container responsiveness */
    .page-slot-games-new-releases img {
        max-width: 100% !important;
        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,
    .page-slot-games-new-releases__hero-section,
    .page-slot-games-new-releases__hero-content,
    .page-slot-games-new-releases__cta-buttons,
    .page-slot-games-new-releases__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden !important; /* Prevent horizontal scroll */
    }
    .page-slot-games-new-releases__hero-section {
        padding-top: 10px !important;
    }
    .page-slot-games-new-releases__cta-buttons {
        flex-wrap: wrap !important;
        gap: 10px;
    }
    .page-slot-games-new-releases__provider-list {
        padding-left: 0;
        padding-right: 0;
    }
    .page-slot-games-new-releases__provider-list li {
        flex: 1 1 auto;
    }
}

/* Ensure min-width for all images is at least 200px (excluding small icons like feature-icon which are implicitly allowed for smaller sizes if they are not content images)*/
.page-slot-games-new-releases img:not(.page-slot-games-new-releases__feature-icon) {
    min-width: 200px;
    min-height: 200px;
}

/* Specific override for feature icons to be smaller */
.page-slot-games-new-releases__feature-icon {
    width: 64px;
    height: 64px;
    min-width: 64px; /* Explicitly keep small for icons */
    min-height: 64px;
}