/* style/slot-games.css */

/* Custom Colors */
:root {
    --page-slot-games-bg: #08160F;
    --page-slot-games-card-bg: #11271B;
    --page-slot-games-text-main: #F2FFF6;
    --page-slot-games-text-secondary: #A7D9B8;
    --page-slot-games-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --page-slot-games-border: #2E7A4E;
    --page-slot-games-gold: #F2C14E;
}

.page-slot-games {
    background-color: var(--page-slot-games-bg);
    color: var(--page-slot-games-text-main); /* Main text color for the page */
}

.page-slot-games__dark-bg {
    background-color: var(--page-slot-games-bg);
}

.page-slot-games__card-bg {
    background-color: var(--page-slot-games-card-bg);
}

.page-slot-games__text-main {
    color: var(--page-slot-games-text-main);
}

.page-slot-games__text-secondary {
    color: var(--page-slot-games-text-secondary);
}

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

.page-slot-games__margin-top {
    margin-top: 40px;
}

/* Hero Section */
.page-slot-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px 60px; /* Small top padding, more bottom */
    overflow: hidden;
    box-sizing: border-box;
}

.page-slot-games__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px; /* Space between image and content */
    position: relative;
    z-index: 1;
}

.page-slot-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.page-slot-games__hero-content {
    text-align: center;
    max-width: 900px;
    width: 100%;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.page-slot-games__main-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--page-slot-games-gold);
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.4);
}

.page-slot-games__hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    text-align: center;
}

.page-slot-games__btn-primary {
    background: var(--page-slot-games-btn-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-slot-games__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-slot-games__btn-secondary {
    background: transparent;
    color: var(--page-slot-games-text-main);
    border: 2px solid var(--page-slot-games-border);
}

.page-slot-games__btn-secondary:hover {
    background: rgba(46, 122, 78, 0.2);
    transform: translateY(-3px);
}

/* General Sections */
.page-slot-games__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--page-slot-games-gold);
}

.page-slot-games__sub-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--page-slot-games-text-main);
}

.page-slot-games__grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.page-slot-games__text-block {
    padding: 30px;
    border-radius: 12px;
    line-height: 1.7;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games__image-block {
    text-align: center;
}

.page-slot-games__image-responsive {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.page-slot-games__feature-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-slot-games__feature-list li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--page-slot-games-border);
}

.page-slot-games__feature-list li:last-child {
    border-bottom: none;
}

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

.page-slot-games__game-type-card {
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--page-slot-games-border);
}

.page-slot-games__card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--page-slot-games-gold);
}

.page-slot-games__card-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--page-slot-games-text-secondary);
}

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

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

.page-slot-games__guide-item {
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--page-slot-games-border);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-slot-games__guide-step {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--page-slot-games-gold);
}

.page-slot-games__btn-small {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    background: var(--page-slot-games-btn-gradient);
    color: #ffffff;
    border: none;
    margin-top: 15px;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.page-slot-games__btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(42, 209, 111, 0.4);
}

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

.page-slot-games__strategy-card {
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--page-slot-games-border);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

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

.page-slot-games__promotion-card {
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--page-slot-games-border);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* FAQ Section */
.page-slot-games__faq-list {
    margin-top: 30px;
}

.page-slot-games__faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px solid var(--page-slot-games-border);
    overflow: hidden;
}

.page-slot-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    background-color: var(--page-slot-games-card-bg);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--page-slot-games-text-main);
    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-item[open] .page-slot-games__faq-question {
    background-color: #1a3628; /* Slightly darker when open */
}

.page-slot-games__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--page-slot-games-gold);
}

.page-slot-games__faq-item[open] .page-slot-games__faq-toggle {
    transform: rotate(45deg);
}

.page-slot-games__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--page-slot-games-text-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-slot-games__content-area {
        padding: 30px 15px;
    }

    .page-slot-games__grid-2-cols {
        grid-template-columns: 1fr;
    }

    .page-slot-games__hero-image-wrapper {
        margin-bottom: 15px;
    }
    .page-slot-games__hero-content {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .page-slot-games__hero-section {
        padding: 10px 15px 40px;
    }

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

    .page-slot-games__hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .page-slot-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

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

    .page-slot-games__section-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
        margin-bottom: 25px;
    }

    .page-slot-games__sub-title {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
        margin-top: 25px;
        margin-bottom: 10px;
    }

    .page-slot-games__text-block, .page-slot-games__card-bg {
        padding: 20px;
    }

    .page-slot-games__game-type-grid,
    .page-slot-games__step-by-step-guide,
    .page-slot-games__strategy-grid,
    .page-slot-games__promotion-cards {
        gap: 20px;
    }

    /* Mobile image and video responsive styles */
    .page-slot-games img {
        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__hero-section,
    .page-slot-games__intro-section,
    .page-slot-games__game-types-section,
    .page-slot-games__guide-section,
    .page-slot-games__strategy-section,
    .page-slot-games__promotions-section,
    .page-slot-games__download-section,
    .page-slot-games__faq-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        overflow: hidden !important;
    }

    .page-slot-games__hero-section {
        padding-top: 10px !important; /* body already handles --header-offset */
    }

    .page-slot-games__video-section {
        padding-top: 10px !important;
    }
    
    .page-slot-games__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
}