/* style/slot-games.css */

/* Custom Colors */
:root {
    --page-slot-games-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --page-slot-games-card-bg: #11271B;
    --page-slot-games-background: #08160F;
    --page-slot-games-text-main: #F2FFF6;
    --page-slot-games-text-secondary: #A7D9B8;
    --page-slot-games-border: #2E7A4E;
    --page-slot-games-glow: #57E38D;
    --page-slot-games-gold: #F2C14E;
    --page-slot-games-divider: #1E3A2A;
    --page-slot-games-deep-green: #0A4B2C;
}

/* General Styling for .page-slot-games (inherits from body if dark background) */
.page-slot-games {
    font-family: Arial, sans-serif;
    color: var(--page-slot-games-text-main); /* Default text color for dark background */
    background-color: var(--page-slot-games-background);
}

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

.page-slot-games__section-title {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--page-slot-games-text-main);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-slot-games__text-block {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--page-slot-games-text-secondary);
}

/* Hero Section */
.page-slot-games__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 10px; /* Small top padding */
    padding-bottom: 60px;
}

.page-slot-games__hero-image-wrapper {
    width: 100%;
    max-height: 70vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

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

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

.page-slot-games__main-title {
    font-size: clamp(2em, 4vw, 3.5em);
    font-weight: 800;
    color: var(--page-slot-games-text-main);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(87, 227, 141, 0.7);
}

.page-slot-games__description {
    font-size: 1.2em;
    color: var(--page-slot-games-text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    min-width: 180px;
    text-align: center;
    box-sizing: border-box;
}

.page-slot-games__btn-primary {
    background: var(--page-slot-games-btn-gradient);
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(42, 209, 111, 0.4);
}

.page-slot-games__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(42, 209, 111, 0.6);
}

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

.page-slot-games__btn-secondary:hover {
    background: var(--page-slot-games-deep-green);
    color: #ffffff;
    border-color: var(--page-slot-games-deep-green);
    transform: translateY(-3px);
}

/* Section Backgrounds */
.page-slot-games__dark-section {
    background-color: var(--page-slot-games-background);
    color: var(--page-slot-games-text-main);
    padding: 80px 0;
}

.page-slot-games__light-bg {
    background-color: #ffffff;
    color: #333333;
    padding: 80px 0;
}

.page-slot-games__light-bg .page-slot-games__section-title {
    color: #333333;
}

.page-slot-games__light-bg .page-slot-games__text-block,
.page-slot-games__light-bg .page-slot-games__card-description,
.page-slot-games__light-bg .page-slot-games__feature-description,
.page-slot-games__light-bg .page-slot-games__step-description,
.page-slot-games__light-bg .page-slot-games__faq-answer p {
    color: #555555;
}

.page-slot-games__light-bg .page-slot-games__card {
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
}

.page-slot-games__light-bg .page-slot-games__card-title {
    color: #333333;
}

.page-slot-games__light-bg .page-slot-games__btn-secondary {
    color: var(--page-slot-games-deep-green);
    border-color: var(--page-slot-games-deep-green);
}

.page-slot-games__light-bg .page-slot-games__btn-secondary:hover {
    background: var(--page-slot-games-deep-green);
    color: #ffffff;
}

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

.page-slot-games__card {
    background-color: var(--page-slot-games-card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-slot-games__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.page-slot-games__card-title {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--page-slot-games-text-main);
    margin-bottom: 15px;
}

.page-slot-games__card-description {
    font-size: 1em;
    line-height: 1.6;
    color: var(--page-slot-games-text-secondary);
    flex-grow: 1;
}

.page-slot-games__cta-center {
    text-align: center;
}

/* Benefits Section */
.page-slot-games__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.page-slot-games__feature-item {
    background-color: var(--page-slot-games-deep-green);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games__feature-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px var(--page-slot-games-glow));
}

.page-slot-games__feature-title {
    font-size: 1.4em;
    font-weight: bold;
    color: var(--page-slot-games-text-main);
    margin-bottom: 10px;
}

.page-slot-games__feature-description {
    font-size: 0.95em;
    color: var(--page-slot-games-text-secondary);
    line-height: 1.6;
}

/* Guide Section */
.page-slot-games__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

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

.page-slot-games__step-number {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--page-slot-games-deep-green);
    background-color: var(--page-slot-games-glow);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(87, 227, 141, 0.5);
}

.page-slot-games__step-title {
    font-size: 1.3em;
    font-weight: bold;
    color: #333333;
    margin-bottom: 15px;
}

.page-slot-games__step-description {
    font-size: 0.95em;
    color: #555555;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-slot-games__btn-small {
    padding: 10px 20px;
    font-size: 0.9em;
    min-width: 120px;
}

/* Strategy Section */
.page-slot-games__strategy-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-slot-games__strategy-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-slot-games__strategy-list li {
    background-color: var(--page-slot-games-card-bg);
    border-left: 5px solid var(--page-slot-games-glow);
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 1.1em;
    line-height: 1.6;
    color: var(--page-slot-games-text-secondary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games__strategy-list li strong {
    color: var(--page-slot-games-text-main);
}

/* FAQ Section */
.page-slot-games__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-slot-games__faq-item {
    background-color: #ffffff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    color: #333333;
}

.page-slot-games__faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px;
    font-weight: bold;
    font-size: 1.15em;
    color: #333333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f0f0f0;
    border-bottom: 1px solid #e0e0e0;
}

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

.page-slot-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

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

.page-slot-games__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: var(--page-slot-games-deep-green);
}

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

.page-slot-games__faq-answer {
    padding: 20px;
    font-size: 1em;
    line-height: 1.7;
    color: #555555;
    background-color: #ffffff;
}

/* CTA Section */
.page-slot-games__cta-section {
    text-align: center;
    padding: 100px 20px;
    background-color: var(--page-slot-games-deep-green);
}

.page-slot-games__cta-section .page-slot-games__section-title {
    color: var(--page-slot-games-text-main);
    margin-bottom: 25px;
}

.page-slot-games__cta-section .page-slot-games__description {
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--page-slot-games-text-secondary);
}

.page-slot-games__btn-large {
    padding: 18px 40px;
    font-size: 1.2em;
    min-width: 220px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-slot-games__hero-section {
        padding-bottom: 40px;
    }
    .page-slot-games__main-title {
        font-size: clamp(2em, 5vw, 3em);
    }
    .page-slot-games__description {
        font-size: 1.1em;
    }
    .page-slot-games__section-title {
        font-size: 2em;
    }
    .page-slot-games__grid, .page-slot-games__features-grid, .page-slot-games__steps-grid {
        gap: 20px;
    }
    .page-slot-games__card {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .page-slot-games {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-slot-games__hero-section {
        padding-bottom: 30px;
    }
    .page-slot-games__hero-image-wrapper {
        margin-bottom: 20px;
    }
    .page-slot-games__hero-image {
        border-radius: 0;
    }
    .page-slot-games__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
        margin-bottom: 15px;
    }
    .page-slot-games__description {
        font-size: 1em;
        margin-bottom: 25px;
    }
    .page-slot-games__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;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-slot-games__btn-large {
        padding: 15px 30px;
    }
    .page-slot-games__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-slot-games__text-block {
        font-size: 1em;
    }
    .page-slot-games__card-image {
        height: 180px;
    }
    .page-slot-games__feature-icon {
        width: 80px;
        height: 80px;
    }
    .page-slot-games__step-number {
        width: 50px;
        height: 50px;
        font-size: 2em;
    }
    .page-slot-games__faq-item summary {
        font-size: 1em;
        padding: 15px;
    }
    .page-slot-games__faq-answer {
        padding: 15px;
    }
    .page-slot-games__dark-section, .page-slot-games__light-bg {
        padding: 60px 0;
    }
    .page-slot-games__cta-section {
        padding: 80px 20px;
    }

    /* Mobile image responsive */
    .page-slot-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    /* Mobile video responsive (if any) */
    .page-slot-games video,
    .page-slot-games__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-slot-games__video-section,
    .page-slot-games__video-container,
    .page-slot-games__video-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__video-section {
        padding-top: 10px !important;
    }

    /* Mobile container padding for content */
    .page-slot-games__container,
    .page-slot-games__hero-content,
    .page-slot-games__intro-section > div,
    .page-slot-games__game-types > div,
    .page-slot-games__benefits-section > div,
    .page-slot-games__guide-section > div,
    .page-slot-games__strategy-section > div,
    .page-slot-games__faq-section > div,
    .page-slot-games__cta-section > div {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 480px) {
    .page-slot-games__main-title {
        font-size: clamp(1.5em, 8vw, 2.2em);
    }
    .page-slot-games__section-title {
        font-size: 1.6em;
    }
    .page-slot-games__cta-buttons {
        flex-direction: column;
    }
    .page-slot-games__btn-primary, .page-slot-games__btn-secondary {
        font-size: 1em;
        padding: 12px 20px;
    }
    .page-slot-games__card-title {
        font-size: 1.3em;
    }
    .page-slot-games__feature-title {
        font-size: 1.2em;
    }
    .page-slot-games__step-title {
        font-size: 1.1em;
    }
    .page-slot-games__faq-item summary {
        font-size: 0.95em;
    }
}