:root {
    --page-slot-games-bg: #08160F;
    --page-slot-games-card-bg: #11271B;
    --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-primary-color: #11A84E;
    --page-slot-games-secondary-color: #22C768;
}

.page-slot-games {
    background-color: var(--page-slot-games-bg);
    color: var(--page-slot-games-text-main);
    font-family: 'Arial', sans-serif; /* Placeholder font */
    line-height: 1.6;
}

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

.page-slot-games__section {
    padding: 60px 0;
    text-align: center;
}

.page-slot-games__title {
    font-size: clamp(2em, 3.5vw, 3em); /* Responsive H1/H2 font size */
    color: var(--page-slot-games-gold);
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.page-slot-games__description,
.page-slot-games__text-block,
.page-slot-games__feature-description,
.page-slot-games__game-description,
.page-slot-games__step p,
.page-slot-games__faq-answer p {
    font-size: 1.1em;
    color: var(--page-slot-games-text-secondary);
    max-width: 800px;
    margin: 0 auto 20px auto;
}

/* Hero Section */
.page-slot-games__hero-section {
    position: relative;
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    background-color: var(--page-slot-games-bg);
}

.page-slot-games__hero-image-wrapper {
    width: 100%;
    height: auto;
    max-height: 600px;
    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;
}

.page-slot-games__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px 60px 20px;
    text-align: center;
    box-sizing: border-box;
}

.page-slot-games__main-title {
    font-size: clamp(2.5em, 4.5vw, 4em);
    color: var(--page-slot-games-gold);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

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

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    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: 2px solid var(--page-slot-games-primary-color);
    box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-slot-games__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
}

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

.page-slot-games__btn-secondary:hover {
    background: rgba(242, 193, 78, 0.1);
    transform: translateY(-3px);
    color: var(--page-slot-games-gold);
}

/* Cards and Grids */
.page-slot-games__card {
    background-color: var(--page-slot-games-card-bg);
    border: 1px solid var(--page-slot-games-border);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-align: center;
    color: var(--page-slot-games-text-main);
}

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

.page-slot-games__feature-item,
.page-slot-games__game-card,
.page-slot-games__step {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__feature-item:hover,
.page-slot-games__game-card:hover,
.page-slot-games__step:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.page-slot-games__feature-image,
.page-slot-games__game-image,
.page-slot-games__promotion-image,
.page-slot-games__security-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
    object-fit: cover;
}

.page-slot-games__feature-title,
.page-slot-games__game-title,
.page-slot-games__step-title {
    font-size: 1.5em;
    color: var(--page-slot-games-gold);
    margin-bottom: 15px;
    font-weight: 600;
}

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

.page-slot-games__faq-item {
    margin-bottom: 15px;
    text-align: left;
    overflow: hidden;
    border-radius: 12px;
}

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

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

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

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

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

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

    .page-slot-games__section {
        padding: 40px 0;
    }

    .page-slot-games__title {
        font-size: 2em;
        margin-bottom: 20px;
    }

    .page-slot-games__main-title {
        font-size: 2.5em;
    }

    .page-slot-games__description,
    .page-slot-games__text-block,
    .page-slot-games__feature-description,
    .page-slot-games__game-description,
    .page-slot-games__step p,
    .page-slot-games__faq-answer p {
        font-size: 1em;
    }

    .page-slot-games__hero-section {
        min-height: auto;
    }

    .page-slot-games__hero-image-wrapper {
        margin-bottom: 20px;
    }

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

    .page-slot-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }

    .page-slot-games__btn-primary,
    .page-slot-games__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }

    .page-slot-games__feature-grid,
    .page-slot-games__game-grid,
    .page-slot-games__steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .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;
        object-fit: cover !important;
    }

    .page-slot-games__section,
    .page-slot-games__card,
    .page-slot-games__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .page-slot-games__hero-section .page-slot-games__container {
        padding: 0;
    }
    .page-slot-games__hero-image-wrapper {
        padding: 0;
    }

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

    .page-slot-games__faq-answer {
        padding: 15px 20px;
    }
    
    .page-slot-games__feature-image,
    .page-slot-games__game-image,
    .page-slot-games__promotion-image,
    .page-slot-games__security-image {
        min-width: 200px !important;
        min-height: 200px !important;
        width: 100% !important;
        height: auto !important;
    }
}