:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --page-bg: #08160F;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
}

.page-slot-games {
    font-family: 'Arial', sans-serif;
    color: var(--text-main);
    background-color: var(--page-bg); /* Body background is dark, so text is light */
}

.page-slot-games__section {
    padding: 60px 20px;
    text-align: center;
    position: relative;
}

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

.page-slot-games__bg-pattern {
    background-color: var(--card-bg);
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%231A3828" fill-opacity="0.4"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zm0-30V0H4v4H0v2h4v4h2V6H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    color: var(--text-main);
}

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

.page-slot-games__main-title,
.page-slot-games__section-title {
    font-size: 2.8em;
    font-weight: bold;
    color: var(--gold-color);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games__description {
    font-size: 1.1em;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games__hero-section {
    padding: 10px 0 60px 0; /* Small top padding, body handles main offset */
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.page-slot-games__hero-image-wrapper {
    width: 100%;
    max-width: 1920px;
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-slot-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
}

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

.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: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-slot-games__btn-primary {
    background: var(--button-gradient);
    color: var(--text-main);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-slot-games__btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-slot-games__btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    background-color: rgba(34, 199, 104, 0.1);
}

.page-slot-games__content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.page-slot-games__content-grid .page-slot-games__text-block p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.7;
}

.page-slot-games__image-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-slot-games__image {
    width: 100%;
    height: auto;
    display: block;
}

.page-slot-games__button-group {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-slot-games__features-grid,
.page-slot-games__steps-grid,
.page-slot-games__game-cards-grid,
.page-slot-games__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-slot-games__card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

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

.page-slot-games__feature-icon,
.page-slot-games__game-image,
.page-slot-games__promo-image {
    width: 100%;
    height: auto;
    max-height: 250px; /* Limit height for uniform cards */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: block;
}

.page-slot-games__card-title {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--gold-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

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

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

.page-slot-games__faq-list {
    margin-top: 40px;
    text-align: left;
}

.page-slot-games__faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
}

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

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

.page-slot-games__faq-question:hover {
    background-color: var(--primary-color);
}

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

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

.page-slot-games__faq-answer p {
    margin-bottom: 10px;
}

.page-slot-games__faq-answer a.page-slot-games__faq-link {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-slot-games__faq-answer a.page-slot-games__faq-link:hover {
    color: var(--glow-color);
}

/* Responsive adjustments */
@media (min-width: 769px) {
    .page-slot-games__content-grid {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
    .page-slot-games__content-grid:nth-child(even) {
        .page-slot-games__text-block { order: 2; }
        .page-slot-games__image-wrapper { order: 1; }
    }
}

@media (max-width: 1024px) {
    .page-slot-games__main-title {
        font-size: 2.2em;
    }
    .page-slot-games__section-title {
        font-size: 2em;
    }
    .page-slot-games__description {
        font-size: 1em;
    }
    .page-slot-games__section {
        padding: 40px 15px;
    }
    .page-slot-games__hero-section {
        padding: 10px 0 40px 0;
    }
    .page-slot-games__hero-image-wrapper {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-slot-games__main-title {
        font-size: 1.8em;
        margin-bottom: 15px;
    }
    .page-slot-games__section-title {
        font-size: 1.6em;
        margin-bottom: 15px;
    }
    .page-slot-games__description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-slot-games__section {
        padding: 30px 0;
    }
    .page-slot-games__container {
        padding: 0 15px;
    }

    /* Images responsive */
    .page-slot-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-slot-games__hero-image-wrapper,
    .page-slot-games__image-wrapper,
    .page-slot-games__feature-icon,
    .page-slot-games__game-image,
    .page-slot-games__promo-image {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    /* Buttons responsive */
    .page-slot-games__cta-buttons,
    .page-slot-games__button-group {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-slot-games__btn-primary,
    .page-slot-games__btn-secondary {
        width: 100% !important;
        padding: 12px 20px !important;
        font-size: 1em !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    /* Card responsive */
    .page-slot-games__card {
        padding: 20px;
        align-items: center;
        text-align: center;
    }
    .page-slot-games__card-title {
        font-size: 1.3em;
    }
    .page-slot-games__card p {
        font-size: 0.9em;
    }
    .page-slot-games__step-number {
        width: 50px;
        height: 50px;
        font-size: 2em;
        margin-bottom: 10px;
    }
    .page-slot-games__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-slot-games__faq-answer {
        font-size: 0.9em;
        padding: 10px 20px 15px;
    }
    .page-slot-games__hero-section {
        padding-top: 10px !important; /* body already handles --header-offset */
    }
    .page-slot-games__content-grid {
        gap: 30px;
    }
    .page-slot-games__features-grid,
    .page-slot-games__steps-grid,
    .page-slot-games__game-cards-grid,
    .page-slot-games__promo-grid {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .page-slot-games__main-title {
        font-size: 1.6em;
    }
    .page-slot-games__section-title {
        font-size: 1.4em;
    }
    .page-slot-games__hero-image-wrapper {
        margin-bottom: 20px;
    }
    .page-slot-games__hero-content {
        padding: 0 10px;
    }
}