.page-slot-games {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding as per instruction */
}

/* Hero Section */
.page-slot-games__hero-section {
    position: relative;
    overflow: hidden;
    padding-bottom: 40px; /* Space below content */
    display: flex; /* Enforce flex for image above text */
    flex-direction: column; /* Image above text */
    align-items: center; /* Center content horizontally */
    background-color: #2F6BFF; /* Main color for hero background */
    color: #FFFFFF;
}

.page-slot-games__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width for the image */
    margin-bottom: 20px; /* Space between image and text */
}

.page-slot-games__hero-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 200px; /* Ensure min height */
    min-width: 200px; /* Ensure min width */
}

.page-slot-games__hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    margin-top: -20px; /* Pull content up slightly to overlap hero image background for visual effect, but text is not on image */
}

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

.page-slot-games__hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #FFFFFF;
}

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

.page-slot-games__btn {
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    min-width: 150px;
    text-align: center;
    font-size: 1rem;
}

.page-slot-games__btn--primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    border: none;
}

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

.page-slot-games__btn--secondary {
    background: #6FA3FF; /* Auxiliary color */
    color: #FFFFFF;
    border: none;
}

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

.page-slot-games__btn--outline {
    background-color: transparent;
    border: 2px solid #2F6BFF;
    color: #2F6BFF;
}

.page-slot-games__btn--outline:hover {
    background-color: #2F6BFF;
    color: #FFFFFF;
}

/* General Section Styling */
.page-slot-games__intro-section,
.page-slot-games__types-section,
.page-slot-games__strategy-section,
.page-slot-games__benefits-section,
.page-slot-games__faq-section {
    max-width: 1200px; /* Boxed layout */
    margin: 40px auto;
    padding: 20px;
    background-color: #FFFFFF; /* Card BG */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.page-slot-games__section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem); /* Responsive font size */
    color: #2F6BFF; /* Main color */
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

.page-slot-games__text-content {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #1F2D3D; /* Text Main */
}

/* Types Section */
.page-slot-games__types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.page-slot-games__type-card {
    background-color: #F4F7FB; /* Background color for cards */
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-slot-games__type-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-slot-games__type-title {
    font-size: 1.4rem;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
    font-weight: 600;
}

.page-slot-games__type-description {
    font-size: 0.95rem;
    color: #1F2D3D; /* Text Main */
}

.page-slot-games__action-area {
    text-align: center;
    margin-top: 30px;
}

/* Strategy Section */
.page-slot-games__strategy-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.page-slot-games__strategy-text {
    flex: 1;
    min-width: 300px;
}

.page-slot-games__strategy-list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #1F2D3D; /* Text Main */
}

.page-slot-games__strategy-list li {
    margin-bottom: 8px;
    font-size: 1rem;
}

.page-slot-games__strategy-list strong {
    color: #000000; /* Custom Color_1776249996415 */
}

.page-slot-games__strategy-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-slot-games__strategy-image {
    width: 100%;
    height: auto;
    max-width: 600px;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

/* Benefits Section */
.page-slot-games__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.page-slot-games__benefit-card {
    background-color: #F4F7FB; /* Background color for cards */
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.page-slot-games__benefit-title {
    font-size: 1.3rem;
    color: #2F6BFF; /* Main color */
    margin-bottom: 10px;
    font-weight: 600;
}

.page-slot-games__benefit-description {
    font-size: 0.95rem;
    color: #1F2D3D; /* Text Main */
}

/* FAQ Section */
.page-slot-games__faq-item {
    background-color: #F4F7FB; /* Background color for FAQ items */
    border: 1px solid #D6E2FF; /* Border color */
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
}

.page-slot-games__faq-question {
    font-size: 1.15rem;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
    font-weight: 600;
}

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

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

    .page-slot-games__hero-title {
        font-size: clamp(2rem, 6vw, 2.8rem);
    }

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

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

    .page-slot-games__btn {
        width: 80%;
        max-width: 300px;
    }

    .page-slot-games__intro-section,
    .page-slot-games__types-section,
    .page-slot-games__strategy-section,
    .page-slot-games__benefits-section,
    .page-slot-games__faq-section {
        margin: 20px auto;
        padding: 15px;
    }

    .page-slot-games__section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 20px;
    }

    .page-slot-games__types-grid,
    .page-slot-games__benefits-grid {
        grid-template-columns: 1fr;
    }

    .page-slot-games__strategy-content {
        flex-direction: column;
    }

    .page-slot-games__strategy-image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce min size */
        min-height: 200px; /* Enforce min size */
    }

    /* Enforce max-width: 100%; height: auto; for all images in content area */
    .page-slot-games img {
        max-width: 100%;
        height: auto;
    }

    /* Content area image CSS dimensions must not be smaller than 200px */
    .page-slot-games__type-image,
    .page-slot-games__strategy-image {
        width: 100%; /* Ensure it takes full width of its container */
        height: auto; /* Maintain aspect ratio */
        min-width: 200px;
        min-height: 200px;
    }
}

/* Ensure all content area images meet min size requirements */
.page-slot-games__type-image,
.page-slot-games__strategy-image {
    min-width: 200px;
    min-height: 200px;
}