/* style/slot-games.css */

/* Base styles for the page content wrapper */
.page-slot-games {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main for dark background */
    background-color: #08160F; /* Background */
}

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

.page-slot-games__section {
    padding: 60px 0;
    text-align: center;
}

.page-slot-games__dark-section {
    background-color: #0A4B2C; /* Deep Green for contrast */
    color: #F2FFF6;
}

.page-slot-games__section-title {
    font-size: 2.5em;
    color: #F2C14E; /* Gold for titles */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slot-games__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #A7D9B8; /* Text Secondary */
}

/* Hero Section */
.page-slot-games__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 60px;
    overflow: hidden; /* Ensure image doesn't overflow */
    box-sizing: border-box;
}

.page-slot-games__hero-image-wrapper {
    width: 100%;
    max-height: 700px; /* Limit height for hero image */
    overflow: hidden;
    margin-bottom: 30px; /* Space between image and content */
}

.page-slot-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Ensure image covers the area */
    min-height: 300px; /* Minimum height for hero image */
}

.page-slot-games__hero-content {
    position: relative; /* Not absolute, for normal flow */
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-slot-games__main-title {
    font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive font size */
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slot-games__intro-text {
    font-size: clamp(1em, 1.5vw, 1.2em);
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-slot-games__cta-buttons--center {
    margin-top: 40px;
}

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-slot-games__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #F2FFF6; /* Text Main */
    border: 2px solid transparent;
}

.page-slot-games__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games__btn-secondary {
    background-color: transparent;
    color: #F2C14E; /* Gold */
    border: 2px solid #F2C14E; /* Gold border */
}

.page-slot-games__btn-secondary:hover {
    background-color: #F2C14E; /* Gold background on hover */
    color: #08160F; /* Background color */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Features Grid */
.page-slot-games__features-grid,
.page-slot-games__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-slot-games__feature-card,
.page-slot-games__promo-card {
    background-color: #11271B; /* Card BG */\    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #2E7A4E; /* Border */
    color: #F2FFF6; /* Ensure text is light on dark card */
}

.page-slot-games__feature-card:hover,
.page-slot-games__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-slot-games__feature-icon {
    width: 100%; /* Image should fill card width */
    max-width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-height: 200px; /* Ensure minimum size */
}

.page-slot-games__promo-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-height: 200px; /* Ensure minimum size */
}

.page-slot-games__card-title {
    font-size: 1.5em;
    color: #F2C14E; /* Gold */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-slot-games__card-text {
    font-size: 1em;
    color: #A7D9B8; /* Text Secondary */
    flex-grow: 1; /* Make text block fill available space */
}

.page-slot-games__promo-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.page-slot-games__promo-card .page-slot-games__btn-secondary {
    margin-top: 20px;
    border-color: #2AD16F;
    color: #2AD16F;
}
.page-slot-games__promo-card .page-slot-games__btn-secondary:hover {
    background-color: #2AD16F;
    color: #11271B;
}


/* List styles */
.page-slot-games__game-list,
.page-slot-games__steps-list,
.page-slot-games__security-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games__list-item {
    background-color: #11271B; /* Card BG */
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #2E7A4E; /* Border */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-slot-games__list-title {
    font-size: 1.3em;
    color: #2AD16F; /* Button color for emphasis */
    margin-bottom: 8px;
    font-weight: bold;
}

.page-slot-games__list-text {
    font-size: 1em;
    color: #A7D9B8; /* Text Secondary */
}

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

.page-slot-games__faq-item {
    background-color: #11271B; /* Card BG */
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #2E7A4E; /* Border */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    color: #F2FFF6; /* Text Main */
}

.page-slot-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15em;
    font-weight: bold;
    cursor: pointer;
    color: #F2C14E; /* Gold */
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-slot-games__faq-question::-webkit-details-marker {
    display: none;
}

.page-slot-games__faq-question:hover {
    background-color: rgba(46, 122, 78, 0.2); /* Lighter border green */
}

.page-slot-games__faq-answer {
    padding: 0 25px 18px 25px;
    font-size: 1em;
    color: #A7D9B8; /* Text Secondary */
    line-height: 1.6;
}

/* Copyright */
.page-slot-games__copyright {
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9em;
    color: #A7D9B8; /* Text Secondary */
    background-color: #08160F; /* Background */
    border-top: 1px solid #1E3A2A; /* Divider */
    margin-top: 40px;
}

.page-slot-games__copyright p {
    margin: 0;
}

/* Links within content */
.page-slot-games a {
    color: #2AD16F; /* Button color for links */
    text-decoration: underline;
}

.page-slot-games a:hover {
    color: #57E38D; /* Glow */
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-slot-games__section-title {
        font-size: 2em;
    }
    .page-slot-games__hero-image-wrapper {
        max-height: 500px;
    }
}

@media (max-width: 768px) {
    .page-slot-games__section {
        padding: 40px 0;
    }

    .page-slot-games__section-title {
        font-size: 1.8em;
    }

    .page-slot-games__hero-section {
        padding-bottom: 40px;
    }

    .page-slot-games__main-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
    }

    .page-slot-games__intro-text {
        font-size: clamp(0.9em, 2.5vw, 1.1em);
    }

    .page-slot-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px; /* Constrain button width on mobile */
        margin-left: auto;
        margin-right: auto;
    }

    .page-slot-games__btn-primary,
    .page-slot-games__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 20px !important;
        font-size: 1em !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-slot-games__hero-image-wrapper {
        max-height: 350px;
        margin-bottom: 20px;
    }

    .page-slot-games__hero-image {
        min-height: 200px;
    }

    .page-slot-games__features-grid,
    .page-slot-games__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-slot-games__feature-card,
    .page-slot-games__promo-card {
        padding: 20px;
    }

    .page-slot-games__feature-icon,
    .page-slot-games__promo-image {
        min-height: 200px;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-slot-games__list-item {
        padding: 15px 20px;
    }

    .page-slot-games__faq-question {
        padding: 15px 20px;
        font-size: 1.05em;
    }

    .page-slot-games__faq-answer {
        padding: 0 20px 15px 20px;
    }

    /* General image/video container mobile adaptation */
    .page-slot-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-slot-games video,
    .page-slot-games__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-slot-games__section,
    .page-slot-games__card,
    .page-slot-games__container,
    .page-slot-games__video-section,
    .page-slot-games__video-container,
    .page-slot-games__video-wrapper,
    .page-slot-games__cta-buttons,
    .page-slot-games__button-group,
    .page-slot-games__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Prevent overflow */
    }

    .page-slot-games__hero-section {
        padding-top: 10px !important; /* Ensure small top padding */
    }

    .page-slot-games__cta-buttons {
        flex-wrap: wrap !important;
        gap: 10px;
        flex-direction: column; /* Stack buttons vertically */
    }
}