/* style/slot-games.css */
:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --login-button-color: #EA7C07;
    --text-color-dark: #333333;
    --text-color-light: #FFFFFF;
    --background-light: #FFFFFF;
    --background-dark: #26A9E0;
}

.page-slot-games {
    font-family: 'Arial', sans-serif;
    color: var(--text-color-dark); /* Default text color for light backgrounds */
    background-color: var(--background-light); /* Assuming body background is light */
}

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

/* Hero Section */
.page-slot-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    background-color: var(--background-dark);
    color: var(--text-color-light);
    overflow: hidden;
}

.page-slot-games__hero-content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin-bottom: 30px;
}

.page-slot-games__hero-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--text-color-light);
    /* No fixed font-size, rely on responsive scaling and weight */
}

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

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

.page-slot-games__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

/* General Section Styles */
.page-slot-games__section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.page-slot-games__subsection-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.page-slot-games__text-block {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.page-slot-games__list,
.page-slot-games__benefits-list,
.page-slot-games__how-to-play-list,
.page-slot-games__promotions-list,
.page-slot-games__support-channels {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-slot-games__list-item {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.page-slot-games__list-item::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Button Styles */
.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    box-sizing: border-box;
}

.page-slot-games__btn-primary {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    border: 2px solid var(--primary-color);
}

.page-slot-games__btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
}

.page-slot-games__btn-secondary {
    background-color: var(--login-button-color);
    color: var(--text-color-light);
    border: 2px solid var(--login-button-color);
}

.page-slot-games__btn-secondary:hover {
    background-color: darken(var(--login-button-color), 10%);
    border-color: darken(var(--login-button-color), 10%);
}

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

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

/* Section Specific Styles */
.page-slot-games__intro-section,
.page-slot-games__benefits-section,
.page-slot-games__promotions-section,
.page-slot-games__faq-section {
    padding: 80px 0;
}

.page-slot-games__game-collection-section,
.page-slot-games__how-to-play-section,
.page-slot-games__support-section,
.page-slot-games__conclusion-section {
    padding: 80px 0;
    color: var(--text-color-light);
}

.page-slot-games__dark-bg .page-slot-games__section-title,
.page-slot-games__dark-bg .page-slot-games__subsection-title {
    color: var(--text-color-light);
}

.page-slot-games__light-bg {
    background-color: var(--background-light);
    color: var(--text-color-dark);
}

.page-slot-games__dark-bg {
    background-color: var(--background-dark);
    color: var(--text-color-light);
}

/* Image Styles */
.page-slot-games__image-content {
    display: block;
    margin: 40px auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.page-slot-games__faq-item {
    background-color: var(--background-light);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-slot-games__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    list-style: none;
}

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

.page-slot-games__faq-qtext {
    flex-grow: 1;
}

.page-slot-games__faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-left: 15px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .page-slot-games__hero-title {
        font-size: 2.8rem;
    }
    .page-slot-games__section-title {
        font-size: 2.2rem;
    }
    .page-slot-games__subsection-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .page-slot-games__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important;
    }
    .page-slot-games__hero-title {
        font-size: 2.2rem;
    }
    .page-slot-games__hero-description {
        font-size: 1rem;
    }
    .page-slot-games__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-slot-games__btn-primary,
    .page-slot-games__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-slot-games__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .page-slot-games__subsection-title {
        font-size: 1.4rem;
    }
    .page-slot-games__text-block,
    .page-slot-games__list-item,
    .page-slot-games__faq-answer p {
        font-size: 1rem;
    }
    .page-slot-games__intro-section,
    .page-slot-games__benefits-section,
    .page-slot-games__promotions-section,
    .page-slot-games__faq-section,
    .page-slot-games__game-collection-section,
    .page-slot-games__how-to-play-section,
    .page-slot-games__support-section,
    .page-slot-games__conclusion-section {
        padding: 40px 0;
    }
    .page-slot-games__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    /* Mobile image adaptation */
    .page-slot-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    /* Mobile button container adaptation */
    .page-slot-games__cta-buttons,
    .page-slot-games__cta-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-slot-games__cta-buttons--center {
        flex-direction: column;
    }
    .page-slot-games__faq-item summary {
        font-size: 1rem;
        padding: 15px;
    }
    .page-slot-games__faq-answer {
        padding: 0 15px 15px;
    }
}

@media (max-width: 480px) {
    .page-slot-games__hero-title {
        font-size: 1.8rem;
    }
    .page-slot-games__section-title {
        font-size: 1.5rem;
    }
}