.page-slot-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light background */
    background-color: #f8f9fa; /* Body background color from shared.css */
}

.page-slot-games__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    padding-top: 10px; /* Small padding-top, body handles --header-offset */
    background-color: #08160F;
    color: #F2FFF6;
}

.page-slot-games__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    margin-bottom: 20px;
}

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

.page-slot-games__hero-content {
    text-align: center;
    max-width: 900px;
    margin-top: 20px;
}

.page-slot-games__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #F2FFF6;
}

.page-slot-games__description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #A7D9B8;
}

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

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

.page-slot-games__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    border: none;
}

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

.page-slot-games__btn-secondary {
    background-color: transparent;
    color: #57E38D;
    border: 2px solid #57E38D;
}

.page-slot-games__btn-secondary:hover {
    background-color: #57E38D;
    color: #08160F;
}

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

.page-slot-games__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    color: #11A84E; /* Main color for titles */
}

.page-slot-games__introduction-section,
.page-slot-games__how-to-play-section,
.page-slot-games__benefits-section,
.page-slot-games__faq-section {
    padding: 60px 0;
    background-color: #f8f9fa; /* Light background */
    color: #333333;
}

.page-slot-games__types-section,
.page-slot-games__giftcode-section,
.page-slot-games__video-section {
    padding: 60px 0;
    background-color: #08160F; /* Dark background */
    color: #F2FFF6;
}

.page-slot-games__types-section .page-slot-games__section-title,
.page-slot-games__giftcode-section .page-slot-games__section-title,
.page-slot-games__video-section .page-slot-games__section-title {
    color: #F2FFF6; /* Light text for dark background */
}

.page-slot-games__sub-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #11A84E;
}

.page-slot-games__dark-bg .page-slot-games__sub-title {
    color: #22C768;
}

.page-slot-games__list,
.page-slot-games__numbered-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-slot-games__list-item,
.page-slot-games__numbered-list-item {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.page-slot-games__list-item::before {
    content: '•';
    color: #11A84E;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-slot-games__numbered-list-item {
    counter-increment: list-counter;
}

.page-slot-games__numbered-list-item::before {
    content: counter(list-counter) '.';
    color: #11A84E;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-slot-games__dark-bg .page-slot-games__list-item::before,
.page-slot-games__dark-bg .page-slot-games__numbered-list-item::before {
    color: #22C768;
}

.page-slot-games__list-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #11A84E;
}

.page-slot-games__dark-bg .page-slot-games__list-title {
    color: #F2FFF6;
}

.page-slot-games img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    object-fit: cover;
}

.page-slot-games__video-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%; /* Ensure video wrapper is responsive */
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin: 20px auto;
    border-radius: 8px;
    background-color: #0A4B2C;
    box-sizing: border-box;
}

.page-slot-games__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    max-width: 100%;
    object-fit: cover;
    cursor: pointer;
}

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

.page-slot-games__faq-item {
    background-color: #11271B; /* Card BG color */
    border: 1px solid #2E7A4E; /* Border color */
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    color: #F2FFF6;
}

.page-slot-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    color: #F2FFF6;
    background-color: #11271B;
    user-select: none;
    transition: background-color 0.3s ease;
}

.page-slot-games__faq-question:hover {
    background-color: #0A4B2C;
}

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

.page-slot-games__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-slot-games__faq-item[open] .page-slot-games__faq-toggle {
    transform: rotate(45deg); /* Change '+' to 'x' or similar for open state */
}

.page-slot-games__faq-answer {
    padding: 0 20px 18px;
    font-size: 1rem;
    color: #A7D9B8;
}

/* Ensure summary marker is hidden */
.page-slot-games__faq-item summary {
    list-style: none;
}
.page-slot-games__faq-item summary::-webkit-details-marker {
    display: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-slot-games__hero-content {
        padding: 0 15px;
    }

    .page-slot-games__main-title {
        font-size: 2.2rem;
    }

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

    .page-slot-games__cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 15px;
    }

    .page-slot-games__btn-primary,
    .page-slot-games__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        margin-bottom: 10px; /* Add margin between stacked buttons */
    }
    
    .page-slot-games__container {
        padding: 0 15px;
    }

    .page-slot-games__section-title {
        font-size: 1.8rem;
    }

    .page-slot-games__sub-title {
        font-size: 1.3rem;
    }

    .page-slot-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    .page-slot-games__hero-image-wrapper,
    .page-slot-games__introduction-section,
    .page-slot-games__types-section,
    .page-slot-games__how-to-play-section,
    .page-slot-games__giftcode-section,
    .page-slot-games__benefits-section,
    .page-slot-games__video-section,
    .page-slot-games__faq-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-slot-games__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0;
        margin-right: 0;
        border-radius: 0;
    }

    .page-slot-games__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .page-slot-games__video-section {
        padding-top: 10px !important; /* body already handles --header-offset */
    }
    
    .page-slot-games__faq-question {
        font-size: 1rem;
        padding: 15px;
    }
    
    .page-slot-games__faq-answer {
        padding: 0 15px 15px;
    }
}