/* style/slot-games.css */

/* General Styles for the Slot Games Page */
.page-slot-games {
    font-family: 'Arial', sans-serif;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
}

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

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

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

.page-slot-games__heading {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #F2C14E; /* Gold */
    line-height: 1.2;
}

.page-slot-games__text {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #A7D9B8; /* Text Secondary */
}

.page-slot-games__text strong {
    color: #F2FFF6;
}

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

/* Buttons */
.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    margin: 10px;
    cursor: pointer;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    box-sizing: border-box;
    max-width: 100%;
}

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

.page-slot-games__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

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

.page-slot-games__btn-secondary:hover {
    background-color: rgba(87, 227, 141, 0.1);
    transform: translateY(-2px);
}

/* Hero Section */
.page-slot-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0 60px 0; /* Small top padding, larger bottom for content */
    overflow: hidden;
    background-color: #08160F;
}

.page-slot-games__hero-image-wrapper {
    width: 100%;
    max-width: 1920px;
    margin-bottom: 30px; /* Space between image and text */
}

.page-slot-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-slot-games__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 0 20px;
}

.page-slot-games__hero-title {
    font-weight: 700;
    color: #F2C14E; /* Gold */
    margin-bottom: 20px;
    line-height: 1.3;
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
}

.page-slot-games__hero-description {
    font-size: 1.2em;
    color: #A7D9B8;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

/* Feature List */
.page-slot-games__feature-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px auto;
    max-width: 800px;
    text-align: left;
}

.page-slot-games__feature-list li {
    background-color: #11271B; /* Card BG */
    border-left: 5px solid #57E38D; /* Glow */
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #F2FFF6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games__feature-list li strong {
    color: #F2C14E;
}

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

.page-slot-games__game-card {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-slot-games__game-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

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

.page-slot-games__game-card-description {
    font-size: 0.95em;
    color: #A7D9B8;
    padding: 0 15px;
    flex-grow: 1;
}

/* How-To Steps */
.page-slot-games__steps-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px auto;
    max-width: 900px;
    text-align: left;
}

.page-slot-games__steps-list li {
    background-color: #11271B; /* Card BG */
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    counter-increment: step-counter;
    position: relative;
    padding-left: 70px;
}

.page-slot-games__steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #57E38D; /* Glow */
    color: #08160F;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3em;
}

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

/* Promotions List */
.page-slot-games__promo-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px auto;
    max-width: 900px;
    text-align: left;
}

.page-slot-games__promo-list li {
    background-color: #11271B; /* Card BG */
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games__promo-title {
    font-size: 1.3em;
    color: #F2C14E; /* Gold */
    margin-bottom: 8px;
}

.page-slot-games__promo-description {
    font-size: 1em;
    color: #A7D9B8;
}

/* Tips List */
.page-slot-games__tips-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px auto;
    max-width: 900px;
    text-align: left;
}

.page-slot-games__tips-list li {
    background-color: #11271B; /* Card BG */
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-slot-games__tip-title {
    font-size: 1.3em;
    color: #F2C14E; /* Gold */
    margin-bottom: 8px;
}

.page-slot-games__tip-description {
    font-size: 1em;
    color: #A7D9B8;
}

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

.page-slot-games__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-slot-games__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    cursor: pointer;
    list-style: none;
    position: relative;
}

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

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

.page-slot-games__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #57E38D; /* Glow */
    transition: transform 0.3s ease;
}

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

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

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

/* Images */
.page-slot-games__image-wrapper {
    margin: 40px auto;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-slot-games__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

/* Footer */
.page-slot-games__footer-text {
    color: #A7D9B8;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-slot-games__heading {
        font-size: 2em;
    }
    .page-slot-games__hero-title {
        font-size: clamp(1.8em, 5vw, 3em);
    }
}

@media (max-width: 768px) {
    .page-slot-games__section {
        padding: 40px 15px;
    }
    .page-slot-games__heading {
        font-size: 1.8em;
    }
    .page-slot-games__hero-title {
        font-size: clamp(1.6em, 6vw, 2.5em);
    }
    .page-slot-games__hero-description {
        font-size: 1em;
    }
    .page-slot-games__hero-cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .page-slot-games__btn-primary,
    .page-slot-games__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        margin: 5px 0;
        padding: 12px 20px;
    }
    .page-slot-games__container,
    .page-slot-games__game-grid,
    .page-slot-games__game-card,
    .page-slot-games__steps-list li,
    .page-slot-games__promo-list li,
    .page-slot-games__tips-list li,
    .page-slot-games__faq-item,
    .page-slot-games__image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-slot-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-slot-games__hero-section {
        padding-top: 10px !important; /* body already handles --header-offset */
    }
    .page-slot-games__steps-list li {
        padding-left: 60px;
    }
    .page-slot-games__steps-list li::before {
        width: 35px;
        height: 35px;
        font-size: 1.1em;
        left: 15px;
    }
    .page-slot-games__faq-item summary {
        padding: 15px;
        font-size: 1.1em;
    }
    .page-slot-games__faq-answer {
        padding: 0 15px 15px 15px;
    }
}

@media (max-width: 480px) {
    .page-slot-games__heading {
        font-size: 1.5em;
    }
    .page-slot-games__hero-title {
        font-size: clamp(1.4em, 7vw, 2em);
    }
    .page-slot-games__text {
        font-size: 0.95em;
    }
}