/* style/slot-games.css */

:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --background-dark: #1a1a2e;
    --text-light: #ffffff;
    --text-dark: #333333;
    --login-color: #EA7C07;
}

.page-slot-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--background-dark);
}

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

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

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

/* Hero Section */
.page-slot-games__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 0;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.page-slot-games__hero-image-wrapper {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
}

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

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

.page-slot-games__main-title {
    font-size: clamp(2em, 4vw, 3.5em);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 1px;
}

.page-slot-games__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Buttons */
.page-slot-games__btn-primary,
.page-slot-games__btn-secondary,
.page-slot-games a[class*="button"],
.page-slot-games a[class*="btn"] {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    min-width: 150px; /* Ensure buttons are not too small */
}

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

.page-slot-games__btn-primary:hover {
    background-color: #1e8dc7;
    border-color: #1e8dc7;
}

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

.page-slot-games__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Section Titles */
.page-slot-games__section-title {
    font-size: 2.5em;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    font-weight: 700;
}

/* Text Block */
.page-slot-games__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-slot-games__highlight-item {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-slot-games__highlight-image {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-slot-games__highlight-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Benefits Section */
.page-slot-games__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding-bottom: 60px;
}

.page-slot-games__benefit-card {
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.page-slot-games__card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Getting Started Section */
.page-slot-games__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding-bottom: 60px;
}

.page-slot-games__step-card {
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-slot-games__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Strategy Section */
.page-slot-games__strategy-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding-bottom: 60px;
}

.page-slot-games__strategy-item {
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* VIP Promotions Section */
.page-slot-games__vip-promotions-section {
    padding-bottom: 60px;
}

.page-slot-games__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 40px;
}

.page-slot-games__promotion-image {
    flex: 1;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    min-width: 200px;
    min-height: 200px;
}

.page-slot-games__text-content {
    flex: 1;
}

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

.page-slot-games__vip-benefits-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    color: var(--secondary-color);
}

.page-slot-games__icon--check {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2em;
}

/* FAQ Section */
.page-slot-games__faq-section {
    padding-bottom: 60px;
}

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

.page-slot-games__faq-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-slot-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--secondary-color);
    cursor: pointer;
    list-style: none;
    position: relative;
}

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

.page-slot-games__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    pointer-events: none; /* Prevent click on toggle icon from interfering with summary click */
}

.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: 1.05em;
    color: rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-slot-games__faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
}

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

/* Conclusion Section */
.page-slot-games__conclusion-section {
    text-align: center;
    padding-bottom: 80px;
}

.page-slot-games__conclusion-section .page-slot-games__text-block {
    margin-bottom: 40px;
}

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

/* General Image styles for content area */
.page-slot-games img {
    max-width: 100%;
    height: auto;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-slot-games__container {
        padding: 0 15px;
    }

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

    .page-slot-games__section-title {
        font-size: 2em;
    }

    .page-slot-games__hero-content {
        padding: 30px 15px;
    }

    .page-slot-games__content-wrapper {
        flex-direction: column;
        padding-top: 20px;
    }

    .page-slot-games__promotion-image {
        max-width: 80%;
        margin: 0 auto 30px;
    }
}

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

    .page-slot-games__hero-section {
        padding-top: 0 !important;
        padding-bottom: 40px;
    }

    .page-slot-games__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
        margin-bottom: 15px;
    }

    .page-slot-games__hero-description,
    .page-slot-games__text-block {
        font-size: 1em;
        text-align: left;
    }

    .page-slot-games__hero-cta-buttons,
    .page-slot-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px;
    }

    .page-slot-games__btn-primary,
    .page-slot-games__btn-secondary,
    .page-slot-games a[class*="button"],
    .page-slot-games a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 15px;
        min-width: unset;
    }

    /* LOGO Carousel Section - Not present in this page, but if it were, it would be here */
    /* .page-slot-games__logo-carousel-section { padding: 10px 15px 20px !important; } */
    /* .page-slot-games__logo-item { width: 80px !important; height: 80px !important; max-width: 80px !important; box-sizing: border-box !important; } */

    .page-slot-games__section-title {
        font-size: 1.8em;
        padding-top: 40px;
        margin-bottom: 30px;
    }

    .page-slot-games__game-highlights,
    .page-slot-games__benefits-grid,
    .page-slot-games__steps-grid,
    .page-slot-games__strategy-list {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-bottom: 40px;
    }

    .page-slot-games__highlight-item,
    .page-slot-games__benefit-card,
    .page-slot-games__step-card,
    .page-slot-games__strategy-item {
        padding: 20px;
    }

    .page-slot-games__highlight-image,
    .page-slot-games__promotion-image,
    .page-slot-games__hero-image,
    .page-slot-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: 200px;
        min-height: 200px;
        box-sizing: border-box;
    }

    .page-slot-games__hero-image-wrapper,
    .page-slot-games__content-wrapper,
    .page-slot-games__game-highlights,
    .page-slot-games__benefits-grid,
    .page-slot-games__steps-grid,
    .page-slot-games__strategy-list,
    .page-slot-games__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .page-slot-games__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }

    .page-slot-games__faq-answer {
        padding: 0 20px 15px;
        font-size: 1em;
    }

    .page-slot-games__conclusion-section {
        padding-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .page-slot-games__main-title {
        font-size: clamp(1.6em, 8vw, 2.2em);
    }

    .page-slot-games__section-title {
        font-size: 1.6em;
    }

    .page-slot-games__hero-description,
    .page-slot-games__text-block {
        font-size: 0.95em;
    }

    .page-slot-games__btn-primary,
    .page-slot-games__btn-secondary {
        font-size: 0.95em;
        padding: 10px 15px;
    }
}