.page-slot-games {
    background-color: #140C0C;
    color: #FFF1E8;
    font-family: Arial, sans-serif;
}

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

.page-slot-games__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Minimal padding-top */
}

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

.page-slot-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/5; /* 1920x600 */
    object-fit: cover;
    object-position: center;
}

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

.page-slot-games__main-title {
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    color: #F3C54D;
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: bold;
}

.page-slot-games__description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.page-slot-games__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.page-slot-games__btn--primary {
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    color: #140C0C;
    border: none;
}

.page-slot-games__btn--primary:hover {
    background: linear-gradient(180deg, #D86A14 0%, #FFB04A 100%);
    transform: translateY(-2px);
}

.page-slot-games__btn--secondary {
    background-color: #6A1E1E;
    color: #FFF1E8;
    border: 1px solid #7E0D0D;
}

.page-slot-games__btn--secondary:hover {
    background-color: #7E0D0D;
    transform: translateY(-2px);
}

.page-slot-games__section {
    padding: 60px 0;
    background-color: #140C0C;
}

.page-slot-games__section-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #F3C54D;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-slot-games__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #E53030;
    margin: 15px auto 0;
}

.page-slot-games__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-slot-games__content-wrapper--reversed {
    flex-direction: row-reverse;
}

.page-slot-games__text-content {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.7;
}

.page-slot-games__text-content p {
    margin-bottom: 15px;
}

.page-slot-games__image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-slot-games__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: block;
    min-width: 200px;
    min-height: 200px;
}

.page-slot-games__image-centered {
    text-align: center;
    margin-top: 30px;
}

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

.page-slot-games__benefit-item {
    background-color: #2A1212;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 1px solid #6A1E1E;
}

.page-slot-games__benefit-item:hover {
    transform: translateY(-5px);
}

.page-slot-games__benefit-title {
    font-size: 1.4rem;
    color: #F3C54D;
    margin-bottom: 15px;
}

.page-slot-games__benefit-item p {
    font-size: 1rem;
    line-height: 1.6;
}

.page-slot-games__tips-list {
    list-style: none;
    padding: 0;
}

.page-slot-games__tip-item {
    background-color: #2A1212;
    border-left: 5px solid #E53030;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-slot-games__tip-item strong {
    color: #F3C54D;
}

.page-slot-games__faq-list {
    display: grid;
    gap: 20px;
}

.page-slot-games__faq-item {
    background-color: #2A1212;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #6A1E1E;
}

.page-slot-games__faq-question {
    font-size: 1.3rem;
    color: #F3C54D;
    margin-bottom: 10px;
}

.page-slot-games__faq-answer {
    font-size: 1rem;
    line-height: 1.6;
}

.page-slot-games__cta-section {
    background-color: #2A1212;
    text-align: center;
    padding: 80px 20px;
    border-top: 1px solid #6A1E1E;
}

.page-slot-games__cta-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #F3C54D;
    margin-bottom: 20px;
    line-height: 1.3;
}

.page-slot-games__cta-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games__btn--large {
    padding: 15px 35px;
    font-size: 1.15rem;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-slot-games__content-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .page-slot-games__content-wrapper--reversed {
        flex-direction: column;
    }

    .page-slot-games__text-content, .page-slot-games__image-content {
        flex: none;
        width: 100%;
    }

    .page-slot-games__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    /* Ensure all content area images are responsive */
    .page-slot-games__hero-image,
    .page-slot-games__image {
        max-width: 100% !important;
        height: auto !important;
    }

    .page-slot-games__container {
        padding: 15px;
    }

    .page-slot-games__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .page-slot-games__description {
        font-size: clamp(1rem, 3.5vw, 1.1rem);
    }

    .page-slot-games__section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .page-slot-games__benefit-item, .page-slot-games__faq-item {
        padding: 20px;
    }

    .page-slot-games__cta-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .page-slot-games__cta-description {
        font-size: 1.1rem;
    }

    .page-slot-games__btn--large {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 549px) {
    .page-slot-games__main-title {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
    }

    .page-slot-games__description {
        font-size: clamp(0.9rem, 4vw, 1rem);
    }

    .page-slot-games__section-title {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
    }

    .page-slot-games__text-content {
        font-size: 1rem;
    }

    .page-slot-games__benefit-title {
        font-size: 1.2rem;
    }

    .page-slot-games__faq-question {
        font-size: 1.1rem;
    }

    .page-slot-games__cta-title {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
    }

    .page-slot-games__cta-description {
        font-size: 1rem;
    }
}