:root {
    --page-slot-games-primary-color: #11A84E;
    --page-slot-games-secondary-color: #22C768;
    --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;
    --page-slot-games-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-slot-games {
    font-family: 'Arial', sans-serif;
    color: var(--page-slot-games-text-main);
    background-color: var(--page-slot-games-background);
}

.page-slot-games img {
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}

.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 */
    overflow: hidden;
    color: var(--page-slot-games-text-main);
}

.page-slot-games__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-slot-games__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    display: block;
}

.page-slot-games__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
    border-radius: 10px;
}

.page-slot-games__main-title {
    font-size: clamp(2em, 4vw, 3.2em);
    color: var(--page-slot-games-gold);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.05em;
    max-width: 100%;
}

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

.page-slot-games__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-slot-games__btn-primary {
    background: var(--page-slot-games-btn-gradient);
    color: var(--page-slot-games-text-main);
    border: none;
}

.page-slot-games__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

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

.page-slot-games__btn-secondary:hover {
    background: var(--page-slot-games-primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styles */
.page-slot-games__section-title {
    font-size: clamp(1.8em, 3vw, 2.5em);
    color: var(--page-slot-games-gold);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

.page-slot-games__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--page-slot-games-primary-color);
    border-radius: 2px;
}

.page-slot-games__sub-title {
    font-size: clamp(1.4em, 2vw, 1.8em);
    color: var(--page-slot-games-primary-color);
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.page-slot-games__intro-section,
.page-slot-games__types-section,
.page-slot-games__guide-section,
.page-slot-games__strategy-section,
.page-slot-games__promotions-section,
.page-slot-games__safety-section,
.page-slot-games__support-section,
.page-slot-games__faq-section,
.page-slot-games__conclusion-section {
    padding: 80px 0;
    position: relative;
}

.page-slot-games__dark-section {
    background-color: var(--page-slot-games-card-bg);
    color: var(--page-slot-games-text-main);
}

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

.page-slot-games__content-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    display: block;
    max-width: 100%;
}

/* Game Types Grid */
.page-slot-games__game-types-grid,
.page-slot-games__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slot-games__game-type-card,
.page-slot-games__promo-card {
    background-color: var(--page-slot-games-deep-green);
    border: 1px solid var(--page-slot-games-border);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-slot-games__game-type-card:hover,
.page-slot-games__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-slot-games__card-title {
    font-size: 1.4em;
    color: var(--page-slot-games-gold);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-slot-games__card-text {
    font-size: 1em;
    color: var(--page-slot-games-text-secondary);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 20px;
    text-align: justify;
}

/* Lists */
.page-slot-games__list,
.page-slot-games__list-ordered {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-slot-games__list-item {
    background-color: var(--page-slot-games-deep-green);
    border-left: 4px solid var(--page-slot-games-primary-color);
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    color: var(--page-slot-games-text-main);
    font-size: 1.05em;
    line-height: 1.6;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.page-slot-games__list-item:hover {
    transform: translateX(5px);
}

.page-slot-games__list-ordered .page-slot-games__list-item {
    counter-increment: list-counter;
}

.page-slot-games__list-ordered .page-slot-games__list-item::before {
    content: counter(list-counter) ". ";
    color: var(--page-slot-games-gold);
    font-weight: bold;
    margin-right: 10px;
}


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

.page-slot-games__faq-item {
    background-color: var(--page-slot-games-deep-green);
    border: 1px solid var(--page-slot-games-border);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-slot-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.15em;
    font-weight: 600;
    color: var(--page-slot-games-text-main);
    background-color: var(--page-slot-games-deep-green);
    border-bottom: 1px solid var(--page-slot-games-divider);
    transition: background-color 0.3s ease;
    list-style: none;
}

.page-slot-games__faq-item[open] .page-slot-games__faq-question {
    background-color: var(--page-slot-games-primary-color);
    color: #ffffff;
}

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

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

.page-slot-games__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: var(--page-slot-games-gold);
    transition: transform 0.3s ease;
}

.page-slot-games__faq-item[open] .page-slot-games__faq-toggle {
    transform: rotate(45deg);
    color: #ffffff;
}

.page-slot-games__faq-answer {
    padding: 20px 25px;
    font-size: 1em;
    line-height: 1.7;
    color: var(--page-slot-games-text-secondary);
    background-color: var(--page-slot-games-card-bg);
}

/* Conclusion Section specific styles */
.page-slot-games__conclusion-section .page-slot-games__text-block {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.page-slot-games__conclusion-section .page-slot-games__cta-buttons {
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-slot-games__hero-content {
        padding: 15px;
    }
    .page-slot-games__main-title {
        font-size: clamp(1.8em, 4.5vw, 2.8em);
    }
    .page-slot-games__description {
        font-size: clamp(0.9em, 1.8vw, 1.1em);
    }
    .page-slot-games__intro-section,
    .page-slot-games__types-section,
    .page-slot-games__guide-section,
    .page-slot-games__strategy-section,
    .page-slot-games__promotions-section,
.page-slot-games__safety-section,
.page-slot-games__support-section,
.page-slot-games__faq-section,
    .page-slot-games__conclusion-section {
        padding: 60px 0;
    }
    .page-slot-games__section-title {
        font-size: clamp(1.6em, 3.5vw, 2.2em);
    }
    .page-slot-games__sub-title {
        font-size: clamp(1.2em, 2.5vw, 1.6em);
    }
}

@media (max-width: 768px) {
    .page-slot-games__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important;
    }
    .page-slot-games__main-title {
        font-size: clamp(1.6em, 6vw, 2.5em);
    }
    .page-slot-games__description {
        font-size: clamp(0.85em, 2.5vw, 1em);
    }
    .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;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px !important;
    }

    .page-slot-games__intro-section,
    .page-slot-games__types-section,
    .page-slot-games__guide-section,
    .page-slot-games__strategy-section,
    .page-slot-games__promotions-section,
.page-slot-games__safety-section,
.page-slot-games__support-section,
.page-slot-games__faq-section,
    .page-slot-games__conclusion-section {
        padding: 40px 0;
    }
    .page-slot-games__container {
        padding: 0 15px;
    }
    .page-slot-games__section-title {
        font-size: clamp(1.4em, 5vw, 2em);
        margin-bottom: 30px;
    }
    .page-slot-games__sub-title {
        font-size: clamp(1.1em, 3.5vw, 1.4em);
        margin-top: 25px;
        margin-bottom: 15px;
    }
    .page-slot-games__text-block {
        font-size: 1em;
        line-height: 1.7;
    }
    .page-slot-games__game-types-grid,
    .page-slot-games__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-slot-games__list-item {
        font-size: 0.95em;
        padding: 12px 15px;
    }
    .page-slot-games__card-image {
        height: 180px;
    }

    .page-slot-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }
    .page-slot-games__hero-image, .page-slot-games__card-image {
        min-width: unset !important;
        min-height: unset !important;
    }

    .page-slot-games__section,
    .page-slot-games__card,
    .page-slot-games__container,
    .page-slot-games__game-type-card,
    .page-slot-games__promo-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

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