.page-slot-games {
    font-family: 'Arial', sans-serif;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
}

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

.page-slot-games__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    overflow: hidden;
}

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

.page-slot-games__hero-content {
    padding: 40px 15px;
    max-width: 800px;
    margin-top: -80px; /* Adjust if needed to not overlap text on image */
    position: relative;
    z-index: 1;
    background-color: rgba(8, 22, 15, 0.8); /* Semi-transparent background for readability */
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-slot-games__main-title {
    font-size: clamp(2em, 5vw, 3.5em); /* Responsive font size */
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
}

.page-slot-games__hero-description {
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary,
.page-slot-games__card-link {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-slot-games__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
    color: #F2FFF6;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-slot-games__btn-secondary {
    background: transparent;
    color: #2AD16F;
    border: 2px solid #2AD16F;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-slot-games__btn-secondary:hover {
    background: rgba(42, 209, 111, 0.1);
    color: #F2FFF6;
    border-color: #F2FFF6;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games__section-title {
    font-size: 2.5em;
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    font-weight: bold;
}

.page-slot-games__text-block {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #F2FFF6; /* Text Main */
    text-align: justify;
}

.page-slot-games__introduction-section,
.page-slot-games__guide-section,
.page-slot-games__conclusion-section {
    padding: 80px 0;
    background-color: #0A4B2C; /* Deep Green for dark sections */
}

.page-slot-games__game-types-section,
.page-slot-games__promotions-section,
.page-slot-games__why-choose-section,
.page-slot-games__faq-section {
    padding: 80px 0;
    background-color: #08160F; /* Background */
}

.page-slot-games__dark-bg {
    background-color: #0A4B2C; /* Deep Green */
    color: #F2FFF6;
}

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

.page-slot-games__game-card,
.page-slot-games__promo-card,
.page-slot-games__faq-item {
    background-color: #11271B; /* Card BG */
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: #F2FFF6;
    border: 1px solid #2E7A4E; /* Border */
}

.page-slot-games__game-image,
.page-slot-games__promo-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-slot-games__card-title {
    font-size: 1.5em;
    color: #F2C14E; /* Gold */
    padding: 20px 20px 10px;
    margin: 0;
}

.page-slot-games__card-description {
    font-size: 0.95em;
    color: #A7D9B8; /* Text Secondary */
    padding: 0 20px 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.page-slot-games__card-link {
    margin: 0 20px 20px;
    padding: 10px 15px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
    color: #F2FFF6;
    border-radius: 5px;
    text-align: center;
    font-size: 0.9em;
}

.page-slot-games__card-link:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

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

.page-slot-games__guide-item {
    background-color: #11271B; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #2E7A4E; /* Border */
}

.page-slot-games__guide-title {
    font-size: 1.4em;
    color: #2AD16F; /* Main Color Green */
    margin-bottom: 15px;
}

.page-slot-games__guide-description {
    font-size: 1em;
    color: #A7D9B8; /* Text Secondary */
    line-height: 1.7;
}

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

.page-slot-games__advantage-item {
    background-color: #11271B; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #2E7A4E; /* Border */
}

.page-slot-games__advantage-title {
    font-size: 1.4em;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
}

.page-slot-games__advantage-description {
    font-size: 1em;
    color: #A7D9B8; /* Text Secondary */
    line-height: 1.7;
}

.page-slot-games__faq-list {
    margin-top: 40px;
}

.page-slot-games__faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #2E7A4E; /* Border */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #1E3A2A; /* Divider */
    cursor: pointer;
    font-size: 1.2em;
    color: #F2FFF6;
    font-weight: bold;
    border-bottom: 1px solid #2E7A4E;
    list-style: none; /* For details summary */
}

.page-slot-games__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker */
}

.page-slot-games__faq-question:hover {
    background-color: #2E7A4E; /* Border on hover */
}

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

.page-slot-games__faq-toggle {
    font-size: 1.5em;
    margin-left: 15px;
    color: #2AD16F; /* Main Color Green */
}

.page-slot-games__faq-answer {
    padding: 20px;
    background-color: #11271B; /* Card BG */
    color: #A7D9B8;
    font-size: 1em;
    line-height: 1.7;
}

.page-slot-games__faq-answer p {
    margin-bottom: 0;
}

.page-slot-games__faq-answer a {
    color: #2AD16F;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-slot-games__hero-content {
        margin-top: -40px;
        padding: 20px 15px;
    }

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

    .page-slot-games__hero-description {
        font-size: 1em;
    }

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

    .page-slot-games__btn-primary,
    .page-slot-games__btn-secondary,
    .page-slot-games a[class*="button"],
    .page-slot-games a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-slot-games__section-title {
        font-size: 2em;
        margin-bottom: 30px;
        padding-top: 40px;
    }

    .page-slot-games__introduction-section,
    .page-slot-games__game-types-section,
    .page-slot-games__guide-section,
    .page-slot-games__promotions-section,
    .page-slot-games__why-choose-section,
    .page-slot-games__faq-section,
    .page-slot-games__conclusion-section {
        padding: 40px 0;
    }

    .page-slot-games__game-grid,
    .page-slot-games__promo-grid,
    .page-slot-games__guide-steps,
    .page-slot-games__advantages-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-slot-games__game-image,
    .page-slot-games__promo-image {
        height: 180px;
    }

    .page-slot-games__card-title {
        font-size: 1.3em;
        padding: 15px 15px 5px;
    }

    .page-slot-games__card-description {
        font-size: 0.9em;
        padding: 0 15px 15px;
    }

    .page-slot-games__card-link {
        margin: 0 15px 15px;
        padding: 12px 20px;
    }

    .page-slot-games__guide-item,
    .page-slot-games__advantage-item {
        padding: 20px;
    }

    .page-slot-games__guide-title,
    .page-slot-games__advantage-title {
        font-size: 1.2em;
    }

    .page-slot-games__faq-question {
        padding: 15px;
        font-size: 1.1em;
    }

    .page-slot-games__faq-answer {
        padding: 15px;
    }
    
    /* Mobile image responsiveness */
    .page-slot-games img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    .page-slot-games__hero-section {
        padding-top: 10px !important; /* Small padding for hero section */
    }

    .page-slot-games__section,
    .page-slot-games__card,
    .page-slot-games__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}