.page-slot-games__hero-section {
    padding-top: 10px; /* Small top padding to avoid overlap with header */
    padding-bottom: 40px;
    text-align: center;
    background-color: #FFFFFF;
    color: #000000;
    max-width: 100%;
    overflow-x: hidden;
}

.page-slot-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 16/9; /* Standard widescreen aspect ratio for hero */
    margin-bottom: 20px;
    border-radius: 8px;
}

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

.page-slot-games__main-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #000000;
}

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

.page-slot-games__cta-button {
    display: inline-block;
    background-color: #26A9E0; /* Primary color */
    color: #FFFFFF;
    padding: 14px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.page-slot-games__cta-button:hover {
    background-color: #1a8ccb; /* Slightly darker primary on hover */
}

.page-slot-games__cta-button--secondary {
    background-color: #EA7C07; /* Login color for secondary CTA */
}

.page-slot-games__cta-button--secondary:hover {
    background-color: #c96806;
}

.page-slot-games__about-section,
.page-slot-games__features-section,
.page-slot-games__guide-section,
.page-slot-games__faq-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px 15px;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: #000000;
}

.page-slot-games__section-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #26A9E0; /* Primary color for section titles */
}

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

.page-slot-games__text-block {
    flex: 1;
    min-width: 300px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #333333;
}

.page-slot-games__content-image {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    filter: none; /* Ensure no CSS filter changes image color */
}

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

.page-slot-games__feature-item {
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
}

.page-slot-games__feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #26A9E0; /* Primary color for feature titles */
}

.page-slot-games__feature-description {
    font-size: 1rem;
    line-height: 1.5;
    color: #555555;
}

.page-slot-games__guide-list {
    list-style: none;
    padding: 0;
    counter-reset: guide-step;
}

.page-slot-games__guide-item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 25px;
}

.page-slot-games__guide-item::before {
    content: counter(guide-step);
    counter-increment: guide-step;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #26A9E0; /* Primary color for step numbers */
    color: #FFFFFF;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.page-slot-games__guide-step-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #000000;
}

.page-slot-games__guide-step-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #555555;
}

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

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

.page-slot-games__faq-question {
    font-size: 1.15rem;
    font-weight: 600;
    color: #26A9E0; /* Primary color for FAQ questions */
    margin-bottom: 10px;
}

.page-slot-games__faq-answer {
    font-size: 1rem;
    line-height: 1.6;
    color: #555555;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-slot-games__main-title {
        font-size: clamp(1.6rem, 6vw, 2.5rem);
    }
    .page-slot-games__description {
        font-size: 1rem;
    }
    .page-slot-games__content-wrapper {
        flex-direction: column;
    }
    .page-slot-games__content-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-slot-games__hero-section {
        padding-bottom: 30px;
    }
    .page-slot-games__hero-image {
        width: 100%;
        height: auto;
        aspect-ratio: 4/3; /* Adjust for mobile */
    }
    .page-slot-games__about-section,
    .page-slot-games__features-section,
    .page-slot-games__guide-section,
    .page-slot-games__faq-section {
        margin: 30px auto;
        padding: 15px;
    }
    .page-slot-games__section-title {
        font-size: clamp(1.3rem, 5vw, 2rem);
        margin-bottom: 20px;
    }
    .page-slot-games__text-block {
        font-size: 0.95rem;
    }
    .page-slot-games__feature-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-slot-games__feature-title {
        font-size: 1.2rem;
    }
    .page-slot-games__guide-item {
        padding-left: 35px;
    }
    .page-slot-games__guide-item::before {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
    .page-slot-games__faq-question {
        font-size: 1.05rem;
    }

    /* Ensure all images in content area are responsive and not smaller than 200px (display size) */
    .page-slot-games img {
        max-width: 100% !important;
        height: auto !important;
        min-width: 200px; /* Enforce minimum display width */
        min-height: 200px; /* Enforce minimum display height */
    }
    .page-slot-games__hero-image {
        min-width: unset; /* Hero can be smaller on mobile if needed, but its aspect-ratio keeps it large */
        min-height: unset;
    }
}

@media (max-width: 549px) {
    .page-slot-games__main-title {
        font-size: clamp(1.4rem, 7vw, 2.2rem);
    }
    .page-slot-games__cta-button {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    .page-slot-games__content-image {
        min-width: 200px; /* Ensure images are at least 200px */
        min-height: 200px;
    }
}