.page-slot-games {
    background-color: #100224; /* Dark background from WOW88 style */
    color: #FFFFFF;
    font-family: Arial, sans-serif;
}

.page-slot-games__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 40px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-slot-games__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Adjust as needed for hero image container */
    margin-bottom: 20px;
}

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

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

.page-slot-games__main-title {
    font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size for H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ff9500, #ff5e3a); /* Gold to Orange gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

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

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

.page-slot-games__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.page-slot-games__btn--register {
    background-color: #C30808; /* Custom Register color */
    color: #FFFF00; /* Custom Register font color */
    border: none;
}

.page-slot-games__btn--register:hover {
    background-color: #e00b0b;
}

.page-slot-games__btn--login {
    background-color: #C30808; /* Custom Login color */
    color: #FFFF00; /* Custom Login font color */
    border: none;
}

.page-slot-games__btn--login:hover {
    background-color: #e00b0b;
}

.page-slot-games__section-title {
    font-size: 2.5em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ff9500, #ff5e3a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.page-slot-games__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    color: #E0E0E0;
}

.page-slot-games__games-showcase,
.page-slot-games__why-choose-us,
.page-slot-games__cta-section,
.page-slot-games__faq-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

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

.page-slot-games__game-card {
    background-color: #017439; /* Main color as card background */
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-slot-games__game-thumbnail {
    width: 100%;
    height: 200px; /* Fixed height for consistency, will be responsive */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-slot-games__game-title {
    font-size: 1.4em;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-slot-games__game-title a {
    color: #FFFFFF; /* White for title links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-slot-games__game-title a:hover {
    color: #ff9500;
}

.page-slot-games__game-provider {
    font-size: 0.9em;
    color: #cccccc;
    margin-bottom: 20px;
}

.page-slot-games__btn--play {
    background-color: #83a1f2; /* Blue pill button */
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.95em;
}

.page-slot-games__btn--play:hover {
    background-color: #688cec;
}

.page-slot-games__view-all {
    text-align: center;
}

.page-slot-games__btn--secondary {
    background-color: #017439;
    color: #FFFFFF;
    border: 1px solid #ff9500;
}

.page-slot-games__btn--secondary:hover {
    background-color: #02944b;
    border-color: #ff5e3a;
}

.page-slot-games__why-choose-us {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-slot-games__why-choose-content,
.page-slot-games__why-choose-image {
    flex: 1;
    min-width: 300px;
}

.page-slot-games__benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-slot-games__benefit-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    margin-bottom: 10px;
    border-left: 4px solid #ff9500;
    border-radius: 5px;
    font-size: 1.05em;
    line-height: 1.5;
}

.page-slot-games__benefit-item strong {
    color: #ff9500;
}

.page-slot-games__feature-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    min-width: 200px; /* Ensure minimum size */
}

.page-slot-games__cta-section {
    display: flex;
    flex-wrap: wrap-reverse; /* Image on right, content on left for desktop */
    align-items: center;
    gap: 40px;
    background-color: #017439;
    border-radius: 10px;
    padding: 50px;
    margin: 60px auto;
}

.page-slot-games__cta-content,
.page-slot-games__cta-image {
    flex: 1;
    min-width: 300px;
}

.page-slot-games__cta-content .page-slot-games__section-title,
.page-slot-games__cta-content .page-slot-games__section-description {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.page-slot-games__cta-content .page-slot-games__section-title {
    color: #FFFFFF;
    background: none;
    -webkit-text-fill-color: #FFFFFF;
    margin-bottom: 15px;
}

.page-slot-games__cta-content .page-slot-games__section-description {
    color: #E0E0E0;
    margin-bottom: 30px;
}

.page-slot-games__cta-illustration {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    min-width: 200px; /* Ensure minimum size */
}

.page-slot-games__btn--register {
    background-color: #C30808;
    color: #FFFF00;
    border: none;
}

.page-slot-games__faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-slot-games__faq-item {
    background-color: #017439;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-slot-games__faq-item:hover {
    background-color: #02944b;
}

.page-slot-games__faq-question {
    font-size: 1.2em;
    font-weight: 600;
    color: #ff9500;
    margin: 0;
    position: relative;
    padding-right: 30px;
}

.page-slot-games__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFFFFF;
}

.page-slot-games__faq-item.active .page-slot-games__faq-question::after {
    content: '-';
}

.page-slot-games__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

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

.page-slot-games__faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: #E0E0E0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-slot-games__hero-section {
        padding-top: 10px;
    }
    .page-slot-games__main-title {
        font-size: clamp(2em, 8vw, 2.5em);
    }

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

    .page-slot-games__section-title {
        font-size: 2em;
    }

    .page-slot-games__why-choose-us,
    .page-slot-games__cta-section {
        flex-direction: column;
        text-align: center;
    }

    .page-slot-games__why-choose-content,
    .page-slot-games__cta-content {
        text-align: center;
    }

    .page-slot-games__cta-content .page-slot-games__section-title,
    .page-slot-games__cta-content .page-slot-games__section-description {
        text-align: center;
    }

    .page-slot-games__games-showcase,
    .page-slot-games__why-choose-us,
    .page-slot-games__cta-section,
    .page-slot-games__faq-section {
        padding: 40px 15px;
    }

    .page-slot-games__game-thumbnail,
    .page-slot-games__feature-image,
    .page-slot-games__cta-illustration {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure minimum size */
    }

    /* Crucial for mobile overflow prevention */
    .page-slot-games img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-slot-games__btn {
        width: 100%;
    }
    .page-slot-games__game-grid {
        grid-template-columns: 1fr;
    }
}