.page-slot-games {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-slot-games__hero-section {
    padding-top: 10px; /* Small top padding to avoid double padding with body */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
    background-color: #0a0909; /* Dark background for hero section */
    padding-bottom: 40px;
}

.page-slot-games__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Ensure it doesn't stretch too wide on huge screens */
    margin-bottom: 30px;
}

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

.page-slot-games__hero-content {
    max-width: 900px;
    padding: 0 20px;
    color: #FFFFFF;
}

.page-slot-games__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    color: #d6d604; /* Yellow-green/lemon yellow for emphasis */
    /* No fixed font-size for H1, relying on clamp if needed, otherwise browser default with weight */
}

@media (max-width: 768px) {
    .page-slot-games__main-title {
        font-size: clamp(2em, 5vw, 2.5em); /* Example clamp for H1 on mobile */
    }
}


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

.page-slot-games__cta-button {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games__cta-button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    transform: translateY(-2px);
}

.page-slot-games__section-title {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 40px;
    color: #1F2D3D; /* Text Main */
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games__features-section,
.page-slot-games__game-showcase-section,
.page-slot-games__promotions-section,
.page-slot-games__guide-section,
.page-slot-games__faq-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.page-slot-games__feature-card,
.page-slot-games__game-card {
    background-color: #FFFFFF; /* Card BG */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #D6E2FF; /* Border */
}

.page-slot-games__feature-card:hover,
.page-slot-games__game-card:hover {
    transform: translateY(-5px);
}

.page-slot-games__card-title,
.page-slot-games__game-card-title {
    font-size: 1.5em;
    color: #2F6BFF; /* Main color */
    margin-bottom: 15px;
}

.page-slot-games__card-text,
.page-slot-games__game-card-text {
    color: #1F2D3D; /* Text Main */
    font-size: 1em;
}

.page-slot-games__game-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency in cards */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-slot-games__game-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    border-radius: 25px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.page-slot-games__game-button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

.page-slot-games__promotions-content {
    background-color: #FFFFFF; /* Card BG */
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid #D6E2FF; /* Border */
}

.page-slot-games__promotion-banner {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-slot-games__promotion-text {
    font-size: 1.1em;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 30px;
}

.page-slot-games__promotion-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.page-slot-games__promotion-button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

.page-slot-games__guide-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-slot-games__guide-list li {
    background-color: #FFFFFF; /* Card BG */
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #D6E2FF; /* Border */
}

.page-slot-games__guide-step-title {
    font-size: 1.3em;
    color: #2F6BFF; /* Main color */
    margin-bottom: 10px;
}

.page-slot-games__guide-list li p {
    color: #1F2D3D; /* Text Main */
}

.page-slot-games__guide-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
    margin-top: 20px;
    text-align: center;
    width: auto;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
    display: block; /* Make it block to center */
}

.page-slot-games__guide-button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

.page-slot-games__faq-item {
    background-color: #FFFFFF; /* Card BG */
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    border: 1px solid #D6E2FF; /* Border */
}

.page-slot-games__faq-question {
    font-size: 1.2em;
    color: #2F6BFF; /* Main color */
    margin-bottom: 10px;
}

.page-slot-games__faq-answer {
    color: #1F2D3D; /* Text Main */
    font-size: 0.95em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-slot-games__hero-section {
        padding-top: 10px;
        margin-bottom: 30px;
    }

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

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

    .page-slot-games__cta-button {
        padding: 12px 25px;
    }

    .page-slot-games__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-slot-games__features-section,
    .page-slot-games__game-showcase-section,
    .page-slot-games__promotions-section,
    .page-slot-games__guide-section,
    .page-slot-games__faq-section {
        padding: 40px 15px;
    }

    .page-slot-games__features-grid,
    .page-slot-games__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Ensure images in content area are responsive and not too small */
    .page-slot-games__game-image,
    .page-slot-games__promotion-banner {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure minimum size is maintained */
        min-height: 200px; /* Ensure minimum size is maintained */
    }

    /* Specific rule for content images within .page-slot-games on mobile to prevent overflow */
    .page-slot-games img {
        max-width: 100% !important;
        height: auto !important;
    }
}

/* Ensure no image filter */
.page-slot-games img {
    filter: none;
}

/* CSS for content area images, ensuring min-width/height */
.page-slot-games__game-image,
.page-slot-games__promotion-banner {
    width: 100%; /* Default to 100% width of parent */
    height: auto; /* Maintain aspect ratio */
    min-width: 200px;
    min-height: 200px;
}

/* General image size check to ensure no small icons */
.page-slot-games img {
    min-width: 200px;
    min-height: 200px;
}