.page-slot-games {
    background-color: #08160F;
    color: #F2FFF6;
    font-family: Arial, sans-serif;
}

.page-slot-games__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
}

.page-slot-games__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Adjust as needed */
    overflow: hidden;
}

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

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

.page-slot-games__main-title {
    font-size: clamp(2.2em, 4vw, 3.2em);
    font-weight: 700;
    line-height: 1.2;
    color: #F2FFF6;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #F2C14E, #57E38D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.page-slot-games__description {
    font-size: 1.1em;
    color: #A7D9B8;
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-slot-games__cta-button,
.page-slot-games__secondary-cta-button {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05em;
    transition: all 0.3s ease;
    margin: 0 10px;
    border: none;
}

.page-slot-games__cta-button {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
}

.page-slot-games__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(42, 209, 111, 0.4);
}

.page-slot-games__secondary-cta-button {
    background-color: transparent;
    border: 2px solid #2E7A4E;
    color: #A7D9B8;
}

.page-slot-games__secondary-cta-button:hover {
    background-color: rgba(46, 122, 78, 0.2);
    color: #F2FFF6;
}

.page-slot-games__introduction-section,
.page-slot-games__game-showcase-section,
.page-slot-games__how-to-play-section,
.page-slot-games__promotions-section,
.page-slot-games__why-choose-section,
.page-slot-games__faq-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-slot-games__section-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #F2FFF6;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(90deg, #F2C14E, #57E38D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

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

.page-slot-games__text-content {
    flex: 1;
}

.page-slot-games__text-content p {
    font-size: 1.05em;
    line-height: 1.7;
    color: #A7D9B8;
    margin-bottom: 15px;
}

.page-slot-games__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-slot-games__feature-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

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

.page-slot-games__game-card,
.page-slot-games__promo-card,
.page-slot-games__step-card {
    background-color: #11271B;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #2E7A4E;
}

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

.page-slot-games__game-thumbnail,
.page-slot-games__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-slot-games__game-title,
.page-slot-games__promo-title {
    font-size: 1.4em;
    color: #F2FFF6;
    margin-bottom: 10px;
    line-height: 1.3;
}

.page-slot-games__game-title a,
.page-slot-games__promo-title a {
    color: #F2FFF6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-slot-games__game-title a:hover,
.page-slot-games__promo-title a:hover {
    color: #57E38D;
}

.page-slot-games__game-provider,
.page-slot-games__promo-description {
    font-size: 0.95em;
    color: #A7D9B8;
    margin-bottom: 20px;
}

.page-slot-games__play-button,
.page-slot-games__promo-button {
    display: inline-block;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background 0.3s ease, transform 0.3s ease;
}

.page-slot-games__play-button:hover,
.page-slot-games__promo-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(42, 209, 111, 0.3);
}

.page-slot-games__view-all-wrapper,
.page-slot-games__play-now-wrapper {
    text-align: center;
    margin-top: 20px;
}

.page-slot-games__step-card {
    text-align: left;
}

.page-slot-games__step-title {
    font-size: 1.3em;
    color: #F2C14E;
    margin-bottom: 10px;
}

.page-slot-games__step-card p {
    font-size: 1em;
    color: #A7D9B8;
    line-height: 1.6;
}

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

.page-slot-games__benefit-item {
    background-color: #11271B;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #1E3A2A;
}

.page-slot-games__benefit-title {
    font-size: 1.3em;
    color: #57E38D;
    margin-bottom: 10px;
}

.page-slot-games__benefit-item p {
    font-size: 1em;
    color: #A7D9B8;
    line-height: 1.6;
}

.page-slot-games__faq-container {
    background-color: #11271B;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #2E7A4E;
}

.page-slot-games__faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #1E3A2A;
    padding-bottom: 20px;
}

.page-slot-games__faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-slot-games__faq-question {
    font-size: 1.2em;
    color: #F2FFF6;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.page-slot-games__faq-question:hover {
    color: #57E38D;
}

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

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

.page-slot-games__faq-answer {
    font-size: 1em;
    color: #A7D9B8;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    padding: 0 10px;
}

.page-slot-games__faq-answer.active {
    max-height: 200px; /* Adjust based on content */
    padding: 10px 10px 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-slot-games__section-title {
        font-size: 2em;
    }
    .page-slot-games__content-wrapper {
        flex-direction: column;
    }
    .page-slot-games__image-wrapper {
        margin-top: 30px;
    }
    .page-slot-games__game-grid,
    .page-slot-games__promo-grid,
    .page-slot-games__steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-slot-games__hero-section {
        padding-bottom: 40px;
    }
    .page-slot-games__main-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
    }
    .page-slot-games__description {
        font-size: 1em;
    }
    .page-slot-games__cta-button,
    .page-slot-games__secondary-cta-button {
        padding: 12px 25px;
        font-size: 1em;
        margin: 5px;
    }
    .page-slot-games__introduction-section,
    .page-slot-games__game-showcase-section,
    .page-slot-games__how-to-play-section,
    .page-slot-games__promotions-section,
    .page-slot-games__why-choose-section,
    .page-slot-games__faq-section {
        padding: 40px 15px;
    }
    .page-slot-games__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-slot-games__game-thumbnail,
    .page-slot-games__promo-image,
    .page-slot-games__feature-image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce minimum size */
        min-height: 200px; /* Enforce minimum size */
    }
    .page-slot-games__game-grid,
    .page-slot-games__promo-grid,
    .page-slot-games__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-slot-games__benefits-list {
        grid-template-columns: 1fr;
    }
    .page-slot-games__faq-question {
        font-size: 1.1em;
    }
    .page-slot-games__faq-answer {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .page-slot-games__cta-button,
    .page-slot-games__secondary-cta-button {
        display: block;
        width: calc(100% - 20px);
        margin: 10px auto;
    }
    .page-slot-games__section-title {
        font-size: 1.6em;
    }
    .page-slot-games__game-title,
    .page-slot-games__promo-title {
        font-size: 1.2em;
    }
    .page-slot-games__step-title,
    .page-slot-games__benefit-title {
        font-size: 1.2em;
    }
}