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

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

.page-slot-games__hero-section {
    position: relative;
    width: 100%;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background-color: #0A4B2C; /* Deep Green for hero background */
}

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

.page-slot-games__hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
    max-width: 900px;
}

.page-slot-games__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
}

.page-slot-games__hero-description {
    font-size: 1.15rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.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: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

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

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

.page-slot-games__btn-secondary {
    background: #11271B; /* Card BG */
    color: #57E38D; /* Glow */
    border: 2px solid #2E7A4E; /* Border */
}

.page-slot-games__btn-secondary:hover {
    transform: translateY(-2px);
    background: #0A4B2C; /* Deep Green */
    color: #F2FFF6; /* Text Main */
}

.page-slot-games__introduction-section,
.page-slot-games__guide-section,
.page-slot-games__security-section,
.page-slot-games__faq-section {
    background-color: #08160F; /* Background */
    padding: 60px 0;
}

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

.page-slot-games__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #57E38D; /* Glow */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

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

.page-slot-games__text-block {
    font-size: 1rem;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    text-align: justify;
}

.page-slot-games__text-block strong {
    color: #57E38D; /* Glow */
}

.page-slot-games__games-showcase-section {
    padding: 60px 0;
    background-color: #08160F; /* Background */
}

.page-slot-games__games-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-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.page-slot-games__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(42, 209, 111, 0.4);
}

.page-slot-games__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-slot-games__game-title {
    font-size: 1.4rem;
    color: #F2FFF6; /* Text Main */
    padding: 15px 20px 5px;
    font-weight: bold;
}

.page-slot-games__game-title a {
    color: #F2FFF6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-slot-games__game-title a:hover {
    color: #57E38D; /* Glow */
}

.page-slot-games__game-description {
    font-size: 0.95rem;
    color: #A7D9B8; /* Text Secondary */
    padding: 0 20px 20px;
    flex-grow: 1;
}

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

.page-slot-games__guide-step-card {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-slot-games__guide-step-card:hover {
    transform: translateY(-5px);
}

.page-slot-games__guide-step-title {
    font-size: 1.6rem;
    color: #57E38D; /* Glow */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-slot-games__guide-step-text {
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
}

.page-slot-games__promotions-section {
    padding: 60px 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 6px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.page-slot-games__promo-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.page-slot-games__promo-title {
    font-size: 1.4rem;
    color: #F2FFF6; /* Text Main */
    padding: 15px 20px 5px;
    font-weight: bold;
}

.page-slot-games__promo-text {
    font-size: 0.95rem;
    color: #A7D9B8; /* Text Secondary */
    padding: 0 20px 20px;
    flex-grow: 1;
}

.page-slot-games__promo-card .page-slot-games__btn-primary {
    margin: 0 20px 20px;
    width: calc(100% - 40px);
}

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

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

.page-slot-games__security-list-item strong {
    color: #57E38D; /* Glow */
}

.page-slot-games__mobile-section {
    padding: 60px 0;
    background-color: #08160F; /* Background */
}

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

.page-slot-games__mobile-text {
    flex: 1;
}

.page-slot-games__mobile-subtitle {
    font-size: 1.8rem;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-slot-games__mobile-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-slot-games__mobile-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-slot-games__cta-buttons--mobile {
    justify-content: flex-start;
    margin-top: 25px;
}

.page-slot-games__faq-section {
    padding: 60px 0;
}

.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: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #F2FFF6; /* Text Main */
}

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

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

.page-slot-games__faq-qtext {
    flex-grow: 1;
    color: #57E38D; /* Glow */
}

.page-slot-games__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: #F2FFF6;
}

.page-slot-games__faq-item[open] .page-slot-games__faq-toggle {
    content: '−';
}

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

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

.page-slot-games__faq-image-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.page-slot-games__faq-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-slot-games__conclusion-section {
    padding: 60px 0;
    text-align: center;
    background-color: #0A4B2C; /* Deep Green */
}

.page-slot-games__conclusion-section .page-slot-games__section-title {
    color: #F2FFF6; /* Text Main */
}

.page-slot-games__conclusion-section .page-slot-games__text-block {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

/* --- Mobile Responsive Styles (max-width: 1024px) --- */
@media (max-width: 1024px) {
    .page-slot-games__hero-image {
        max-height: 500px;
    }

    .page-slot-games__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }

    .page-slot-games__hero-description {
        font-size: 1.05rem;
    }

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

    .page-slot-games__mobile-content {
        flex-direction: column;
        text-align: center;
    }

    .page-slot-games__cta-buttons--mobile {
        justify-content: center;
    }
}

/* --- Mobile Responsive Styles (max-width: 768px) --- */
@media (max-width: 768px) {
    .page-slot-games {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-slot-games__hero-section {
        padding-top: 10px !important; /* Small top padding */
        padding-bottom: 30px;
    }

    .page-slot-games__hero-image {
        max-height: 300px !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-slot-games__main-title {
        font-size: 2rem !important;
    }

    .page-slot-games__hero-description {
        font-size: 1rem !important;
    }

    .page-slot-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .page-slot-games__btn-primary,
    .page-slot-games__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px !important;
        font-size: 0.95rem !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin: 0 !important; /* Remove horizontal margins for full width */
    }
    
    .page-slot-games__cta-buttons--mobile {
        flex-direction: column !important;
        gap: 10px !important;
        padding: 0 15px !important;
    }

    .page-slot-games__container,
    .page-slot-games__introduction-section,
    .page-slot-games__games-showcase-section,
    .page-slot-games__guide-section,
    .page-slot-games__promotions-section,
    .page-slot-games__security-section,
    .page-slot-games__mobile-section,
    .page-slot-games__faq-section,
    .page-slot-games__conclusion-section {
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

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

    .page-slot-games__section-description {
        font-size: 0.95rem !important;
    }

    .page-slot-games__text-block {
        font-size: 0.95rem !important;
    }

    .page-slot-games__games-grid,
    .page-slot-games__guide-steps,
    .page-slot-games__promo-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .page-slot-games__game-card,
    .page-slot-games__guide-step-card,
    .page-slot-games__promo-card {
        margin-bottom: 15px;
    }

    .page-slot-games__game-image,
    .page-slot-games__promo-image,
    .page-slot-games__mobile-image,
    .page-slot-games__faq-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-slot-games__mobile-content {
        flex-direction: column;
        gap: 20px;
    }

    .page-slot-games__mobile-subtitle {
        font-size: 1.5rem !important;
    }

    .page-slot-games__faq-item summary {
        font-size: 1rem !important;
    }

    .page-slot-games__faq-answer {
        font-size: 0.95rem !important;
    }
}