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

.page-slot-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding to avoid double padding with body */
    padding-bottom: 40px;
    text-align: center;
}

.page-slot-games__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Max height for hero image */
    overflow: hidden;
}

.page-slot-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 200px; /* Ensure minimum size */
}

.page-slot-games__hero-content {
    max-width: 960px;
    margin-top: 40px;
    padding: 0 20px;
}

.page-slot-games__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFF1E8; /* Ensure good contrast */
}

.page-slot-games__intro-description {
    font-size: 1.125rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

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

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

.page-slot-games__button--primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-slot-games__button--secondary {
    background-color: transparent;
    color: #FFB04A;
    border: 2px solid #FFB04A;
}

.page-slot-games__button--secondary:hover {
    background-color: #FFB04A;
    color: #140C0C;
}

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

.page-slot-games__section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #FFF1E8;
}

.page-slot-games__section-title--gradient {
    background: linear-gradient(to right, #F3C54D, #FFB04A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* Fallback for browsers that don't support text-fill-color */
}

.page-slot-games__text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.page-slot-games__content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.page-slot-games__image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

@media (min-width: 768px) {
    .page-slot-games__content-wrapper {
        flex-direction: row;
        justify-content: space-between;
    }
    .page-slot-games__content-wrapper .page-slot-games__text {
        flex: 1;
        margin-right: 30px;
        text-align: left;
    }
    .page-slot-games__content-wrapper .page-slot-games__image--left {
        order: -1; /* Image to the left */
        flex: 0 0 45%;
        max-width: 45%;
    }
    .page-slot-games__content-wrapper .page-slot-games__text:first-of-type {
        margin-right: 0;
        margin-left: 30px;
    }
}

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

.page-slot-games__game-card, .page-slot-games__promo-card, .page-slot-games__step-card {
    background-color: #2A1212;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #6A1E1E;
}

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

.page-slot-games__game-card-title, .page-slot-games__promo-title, .page-slot-games__step-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #F3C54D;
}

.page-slot-games__game-card-description, .page-slot-games__promo-description, .page-slot-games__step-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-slot-games__button--small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.page-slot-games__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

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

.page-slot-games__feature-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    min-width: 80px;
    min-height: 80px;
    display: inline-block; /* Ensure it's not smaller than 200px if it were a content image */
}

.page-slot-games__feature-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #F3C54D;
}

.page-slot-games__feature-description {
    font-size: 0.9rem;
    line-height: 1.5;
}

.page-slot-games__view-all-promos {
    text-align: center;
    margin-top: 40px;
}

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

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

.page-slot-games__faq-item {
    background-color: #2A1212;
    border: 1px solid #6A1E1E;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-slot-games__faq-question {
    font-size: 1.2rem;
    font-weight: bold;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #FFF1E8;
    position: relative;
}

.page-slot-games__faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.page-slot-games__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-slot-games__faq-answer {
    padding: 0 20px 20px;
    font-size: 1rem;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-slot-games__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding: 0 20px 20px;
}

.page-slot-games__section--cta {
    text-align: center;
    padding-bottom: 80px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-slot-games__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-slot-games__section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .page-slot-games__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-slot-games__button {
        width: 100%;
        max-width: 280px;
    }
    .page-slot-games__section {
        padding: 40px 15px;
    }
    .page-slot-games__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .page-slot-games__intro-description {
        font-size: 1rem;
    }
    .page-slot-games__game-grid, .page-slot-games__promotions-grid, .page-slot-games__steps-grid, .page-slot-games__features-grid {
        grid-template-columns: 1fr;
    }
    .page-slot-games__content-wrapper .page-slot-games__text {
        margin-right: 0;
        margin-left: 0;
    }
    .page-slot-games__content-wrapper .page-slot-games__image--left {
        order: 0;
        max-width: 100%;
    }
    .page-slot-games__faq-question {
        font-size: 1rem;
        padding: 15px;
    }
    .page-slot-games__faq-answer {
        padding: 0 15px 15px;
    }
    /* Ensure all content area images are responsive */
    .page-slot-games__section img {
        max-width: 100%;
        height: auto;
    }
    .page-slot-games__game-card-image, .page-slot-games__promo-image {
        height: auto; /* Allow auto height for mobile responsiveness */
    }
    .page-slot-games__feature-icon {
        width: 100px; /* Adjust icon size for mobile if needed, but maintain min 200px rule for content images */
        height: 100px;
        min-width: 80px;
        min-height: 80px;
    }
    /* Critical: Ensure content area images are not smaller than 200px in display */
    .page-slot-games__section img:not(.page-slot-games__feature-icon) {
        min-width: 200px;
        min-height: 200px;
    }
}