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

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

.page-slots__section-title {
    font-size: 2.5em;
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-top: 20px;
}

.page-slots__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #57E38D; /* Glow */
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-slots__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #A7D9B8; /* Text Secondary */
}

.page-slots__btn-primary,
.page-slots__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-slots__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
    color: #F2FFF6; /* Text Main */
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

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

.page-slots__btn-secondary {
    background: transparent;
    color: #2AD16F; /* Button color */
    border: 2px solid #2AD16F; /* Button color */
}

.page-slots__btn-secondary:hover {
    background: rgba(42, 209, 111, 0.1);
    color: #F2FFF6;
}

/* Hero Section */
.page-slots__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, assuming shared.css handles body padding */
    padding-bottom: 60px;
    overflow: hidden;
    background-color: #08160F;
}

.page-slots__hero-image-wrapper {
    width: 100%;
    max-height: 700px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px; /* Space between image and content */
}

.page-slots__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-slots__hero-content {
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
    margin: 0 auto;
}

.page-slots__main-title {
    font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size for H1 */
    color: #F2C14E; /* Gold */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(242, 193, 78, 0.5);
}

.page-slots__hero-description {
    font-size: 1.2em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Intro Section */
.page-slots__intro-section {
    padding: 60px 0;
}

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

.page-slots__light-bg {
    background-color: #08160F;
    color: #A7D9B8;
}

.page-slots__text-contrast-fix {
    color: #F2FFF6 !important;
}

.page-slots__feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-slots__feature-item {
    background-color: #11271B; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #2E7A4E; /* Border */
}

.page-slots__feature-heading {
    font-size: 1.5em;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
}

.page-slots__feature-item p {
    color: #A7D9B8; /* Text Secondary */
}

/* Popular Games Section */
.page-slots__popular-games-section {
    padding: 60px 0;
}

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

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

.page-slots__game-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
}

.page-slots__game-title {
    font-size: 1.4em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-slots__game-description {
    color: #A7D9B8; /* Text Secondary */
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-grow: 1;
    padding: 0 15px;
}

.page-slots__game-btn {
    margin: 0 15px;
}

/* Providers Section */
.page-slots__providers-section {
    padding: 60px 0;
}

.page-slots__providers-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slots__provider-item {
    background-color: #11271B; /* Card BG */
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #2E7A4E; /* Border */
}

.page-slots__provider-logo {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

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

.page-slots__provider-description {
    color: #A7D9B8; /* Text Secondary */
    font-size: 0.9em;
}

/* Guide Section */
.page-slots__guide-section {
    padding: 60px 0;
}

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

.page-slots__step-item {
    background-color: #11271B; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #2E7A4E; /* Border */
    display: flex;
    flex-direction: column;
}

.page-slots__step-heading {
    font-size: 1.6em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
}

.page-slots__step-item p {
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-slots__step-btn {
    margin-top: auto;
}

/* Promotions Section */
.page-slots__promotions-section {
    padding: 60px 0;
}

.page-slots__promo-card {
    background-color: #11271B; /* Card BG */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    border: 1px solid #2E7A4E; /* Border */
}

.page-slots__promo-image {
    width: 50%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-slots__promo-content {
    padding: 30px;
    width: 50%;
    box-sizing: border-box;
}

.page-slots__promo-title {
    font-size: 1.8em;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
}

.page-slots__promo-description {
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 25px;
}

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

/* FAQ Section */
.page-slots__faq-section {
    padding: 60px 0;
}

.page-slots__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-slots__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    cursor: pointer;
    background-color: #11271B;
    list-style: none;
}

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

.page-slots__faq-question::marker {
    display: none;
}

.page-slots__faq-qtext {
    flex-grow: 1;
}

.page-slots__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #2AD16F; /* Button color */
}

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

.page-slots__faq-answer {
    padding: 0 25px 20px;
    color: #A7D9B8; /* Text Secondary */
    font-size: 1em;
}

.page-slots__faq-answer p {
    margin-bottom: 15px;
}

.page-slots__faq-answer .page-slots__btn-primary {
    margin-top: 10px;
}

/* Conclusion Section */
.page-slots__conclusion-section {
    padding: 60px 0;
    text-align: center;
}

.page-slots__text-center {
    text-align: center;
}

.page-slots__large-btn {
    padding: 15px 35px;
    font-size: 1.2em;
    margin-top: 30px;
}

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

    .page-slots__container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden;
    }

    .page-slots__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .page-slots__text-block {
        font-size: 1em;
    }

    /* HERO Section */
    .page-slots__hero-section {
        padding-top: 10px !important; /* Small top padding */
        padding-bottom: 40px;
    }

    .page-slots__hero-image-wrapper {
        margin-bottom: 30px;
    }

    .page-slots__hero-image {
        max-width: 100% !important;
        height: auto !important;
    }

    .page-slots__main-title {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .page-slots__hero-description {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .page-slots__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .page-slots__btn-primary,
    .page-slots__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 15px;
        font-size: 1em;
    }

    /* Intro Section */
    .page-slots__feature-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Popular Games Section */
    .page-slots__games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-slots__game-image {
        height: 180px; /* Adjust height for mobile */
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    /* Providers Section */
    .page-slots__providers-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .page-slots__provider-logo {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    /* Guide Section */
    .page-slots__guide-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Promotions Section */
    .page-slots__promo-card {
        flex-direction: column;
        gap: 20px;
    }

    .page-slots__promo-image,
    .page-slots__promo-content {
        width: 100%;
        padding: 20px;
    }

    .page-slots__promo-image {
        max-width: 100% !important;
        height: auto !important;
    }

    .page-slots__promo-title {
        font-size: 1.5em;
    }

    /* FAQ Section */
    .page-slots__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }

    .page-slots__faq-answer {
        padding: 0 20px 15px;
    }

    /* General image and button overrides for all content sections */
    .page-slots img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    .page-slots__section,
    .page-slots__card,
    .page-slots__container,
    .page-slots__cta-buttons,
    .page-slots__button-group,
    .page-slots__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
}