/* style/slot-games.css */
.page-slot-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
}

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

.page-slot-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px; /* Limit height for aesthetic reasons */
}

.page-slot-games__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin-top: -150px; /* Overlap slightly for visual appeal, but text is below image */
    padding: 0 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slot-games__main-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: bold;
    color: #F2C14E; /* Gold */
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 1px;
}

.page-slot-games__hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #A7D9B8; /* Text Secondary */
}

.page-slot-games__hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.page-slot-games__section-title {
    font-size: 2.5rem;
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-slot-games__section-description {
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.page-slot-games__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

.page-slot-games__btn--primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #ffffff;
    border: none;
}

.page-slot-games__btn--primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

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

.page-slot-games__btn--secondary:hover {
    background-color: #F2C14E; /* Gold */
    color: #08160F; /* Background */
    transform: translateY(-2px);
}

.page-slot-games__btn--small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Intro Section */
.page-slot-games__intro-section {
    padding: 80px 0;
    background-color: #0A4B2C; /* Deep Green */
}

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

.page-slot-games__feature-item {
    background-color: #11271B; /* Card BG */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #2E7A4E; /* Border */
}

.page-slot-games__feature-icon {
    width: 100%; /* Ensure image fills card width */
    height: auto;
    max-width: 250px; /* Limit icon size */
    margin-bottom: 20px;
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px;
}

.page-slot-games__feature-title {
    font-size: 1.5rem;
    color: #F2C14E; /* Gold */
    margin-bottom: 10px;
}

.page-slot-games__feature-text {
    color: #A7D9B8; /* Text Secondary */
}

/* Popular Games Section */
.page-slot-games__popular-games-section {
    padding: 80px 0;
    background-color: #08160F; /* Background */
}

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

.page-slot-games__game-card {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding-bottom: 20px;
    border: 1px solid #2E7A4E; /* Border */
}

.page-slot-games__game-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-slot-games__game-title {
    font-size: 1.4rem;
    color: #F2C14E; /* Gold */
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-slot-games__game-title a {
    color: #F2C14E;
    text-decoration: none;
}

.page-slot-games__game-title a:hover {
    text-decoration: underline;
}

.page-slot-games__game-text {
    color: #A7D9B8; /* Text Secondary */
    padding: 0 15px;
    margin-bottom: 20px;
}

.page-slot-games__cta-more {
    text-align: center;
    margin-top: 50px;
}

/* How to Play Section */
.page-slot-games__how-to-play-section {
    padding: 80px 0;
    background-color: #0A4B2C; /* Deep Green */
}

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

.page-slot-games__step-item {
    background-color: #11271B; /* Card BG */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #2E7A4E; /* Border */
}

.page-slot-games__step-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2AD16F; /* Main Green */
    margin-bottom: 15px;
    background-color: rgba(42, 209, 111, 0.1);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games__step-title {
    font-size: 1.4rem;
    color: #F2C14E; /* Gold */
    margin-bottom: 10px;
}

.page-slot-games__step-text {
    color: #A7D9B8; /* Text Secondary */
}

.page-slot-games__step-text a {
    color: #2AD16F; /* Main Green */
    text-decoration: none;
}

.page-slot-games__step-text a:hover {
    text-decoration: underline;
}

.page-slot-games__cta-guide {
    text-align: center;
    margin-top: 50px;
}

/* Promotions Section */
.page-slot-games__promotions-section {
    padding: 80px 0;
    background-color: #08160F; /* Background */
}

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

.page-slot-games__promo-card {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding-bottom: 20px;
    border: 1px solid #2E7A4E; /* Border */
}

.page-slot-games__promo-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-slot-games__promo-title {
    font-size: 1.4rem;
    color: #F2C14E; /* Gold */
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-slot-games__promo-title a {
    color: #F2C14E;
    text-decoration: none;
}

.page-slot-games__promo-title a:hover {
    text-decoration: underline;
}

.page-slot-games__promo-text {
    color: #A7D9B8; /* Text Secondary */
    padding: 0 15px;
    margin-bottom: 20px;
}

.page-slot-games__cta-promo {
    text-align: center;
    margin-top: 50px;
}

/* App Download Section */
.page-slot-games__app-download-section {
    padding: 80px 0;
    background-color: #0A4B2C; /* Deep Green */
}

.page-slot-games__download-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.page-slot-games__download-text {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: left;
}

.page-slot-games__download-text p {
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
}

.page-slot-games__download-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    color: #F2FFF6; /* Text Main */
}

.page-slot-games__download-features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.page-slot-games__download-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2AD16F; /* Main Green */
    font-weight: bold;
}

.page-slot-games__download-image-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    text-align: center;
}

.page-slot-games__download-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    min-height: 200px;
}

/* FAQ Section */
.page-slot-games__faq-section {
    padding: 80px 0;
    background-color: #08160F; /* Background */
}

.page-slot-games__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games__faq-item {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid #2E7A4E; /* Divider */
    overflow: hidden; /* For details tag */
}

.page-slot-games__faq-item details > summary {
    list-style: none; /* Hide default marker */
}

.page-slot-games__faq-item details > summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit */
}

.page-slot-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    cursor: pointer;
    background-color: #11271B; /* Card BG */
    transition: background-color 0.3s ease;
}

.page-slot-games__faq-question:hover {
    background-color: #1E3A2A; /* Slightly darker */
}

.page-slot-games__faq-qtext {
    flex-grow: 1;
    color: #F2C14E; /* Gold */
}

.page-slot-games__faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2AD16F; /* Main Green */
    margin-left: 15px;
}

.page-slot-games__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
}

.page-slot-games__faq-answer p {
    margin: 0;
}

.page-slot-games__faq-answer a {
    color: #2AD16F; /* Main Green */
    text-decoration: none;
}

.page-slot-games__faq-answer a:hover {
    text-decoration: underline;
}

/* Contact Section */
.page-slot-games__contact-section {
    padding: 80px 0;
    background-color: #0A4B2C; /* Deep Green */
    text-align: center;
}

.page-slot-games__contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-slot-games__hero-content {
        margin-top: -100px;
    }
    .page-slot-games__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-slot-games__section-title {
        font-size: 2rem;
    }
    .page-slot-games__features-grid,
    .page-slot-games__game-grid,
    .page-slot-games__promo-grid,
    .page-slot-games__steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-slot-games__hero-section {
        padding-bottom: 40px;
    }
    .page-slot-games__hero-image {
        max-height: 400px;
    }
    .page-slot-games__hero-content {
        margin-top: -80px;
        padding: 0 15px;
    }
    .page-slot-games__main-title {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
    }
    .page-slot-games__hero-description {
        font-size: 1rem;
    }
    .page-slot-games__hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    .page-slot-games__btn {
        width: 100%;
        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__btn--primary,
    .page-slot-games__btn--secondary {
        width: 100%;
    }

    .page-slot-games__section-title {
        font-size: 1.8rem;
    }
    .page-slot-games__section-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .page-slot-games__intro-section,
    .page-slot-games__popular-games-section,
    .page-slot-games__how-to-play-section,
    .page-slot-games__promotions-section,
    .page-slot-games__app-download-section,
    .page-slot-games__faq-section,
    .page-slot-games__contact-section {
        padding: 40px 0;
    }

    .page-slot-games__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Image responsiveness */
    .page-slot-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-slot-games__feature-icon,
    .page-slot-games__game-image,
    .page-slot-games__promo-image,
    .page-slot-games__download-image {
        min-width: unset; /* Override min-width for mobile */
        min-height: unset; /* Override min-height for mobile */
        height: auto !important; /* Ensure aspect ratio is maintained */
    }

    .page-slot-games__game-image,
    .page-slot-games__promo-image {
        height: 200px !important; /* Adjust fixed height for mobile */
    }

    .page-slot-games__download-content {
        flex-direction: column;
        gap: 30px;
    }

    .page-slot-games__download-text {
        max-width: 100%;
        text-align: center;
    }
    .page-slot-games__download-features {
        text-align: left;
        margin-left: auto;
        margin-right: auto;
        max-width: 300px;
    }
    .page-slot-games__download-image-wrapper {
        max-width: 100%;
    }

    .page-slot-games__contact-buttons {
        flex-direction: column;
        gap: 15px;
    }

    /* FAQ */
    .page-slot-games__faq-question {
        padding: 15px 20px;
        font-size: 1.1rem;
    }
    .page-slot-games__faq-answer {
        padding: 0 20px 15px 20px;
        font-size: 0.95rem;
    }
}