.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 {
    position: relative;
    padding: 10px 0 40px; /* Small top padding, more bottom padding */
    text-align: center;
    overflow: hidden;
    background-color: #2F6BFF; /* Main Color for hero background */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-slot-games__hero-image {
    width: 100%;
    max-width: 1920px; /* Max width for the image */
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 20px; /* Space between image and content */
    border-radius: 8px; /* Slightly rounded corners for the image */
    min-width: 200px;
    min-height: 200px;
}

.page-slot-games__hero-content {
    max-width: 900px;
    padding: 0 20px;
    color: #FFFFFF; /* White text on blue background */
}

.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: #FFFFFF;
}

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

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

.page-slot-games__btn {
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.page-slot-games__btn--primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
}

.page-slot-games__btn--primary:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(47, 107, 255, 0.6);
}

.page-slot-games__btn--secondary {
    background-color: #6FA3FF; /* Auxiliary color */
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(111, 163, 255, 0.3);
}

.page-slot-games__btn--secondary:hover {
    background-color: #2F6BFF; /* Main color on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(111, 163, 255, 0.5);
}

.page-slot-games__section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin: 60px 0 40px;
    color: #1F2D3D; /* Text Main */
}

.page-slot-games__features-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

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

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

.page-slot-games__game-showcase {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.page-slot-games__game-card {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

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

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

.page-slot-games__game-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.page-slot-games__game-title a:hover {
    color: #2F6BFF; /* Main Color */
}

.page-slot-games__game-description {
    font-size: 0.95rem;
    color: #1F2D3D; /* Text Main */
    padding: 0 15px;
    margin-bottom: 20px;
    flex-grow: 1; /* Allows description to take available space */
}

.page-slot-games__btn--play {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
    color: #FFFFFF;
    padding: 10px 20px;
    margin: 0 15px 20px;
    width: calc(100% - 30px);
    box-sizing: border-box;
    font-size: 0.95rem;
}

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

.page-slot-games__view-all-cta {
    text-align: center;
    margin-top: 20px;
}

.page-slot-games__btn--view-all {
    background-color: #6FA3FF; /* Auxiliary color */
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.page-slot-games__btn--view-all:hover {
    background-color: #2F6BFF; /* Main color on hover */
}

.page-slot-games__faq-section {
    padding: 40px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-slot-games__faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-slot-games__faq-item {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #D6E2FF; /* Border color */
}

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

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

.page-slot-games__faq-answer a {
    color: #2F6BFF; /* Main Color */
    text-decoration: none;
    font-weight: 600;
}

.page-slot-games__faq-answer a:hover {
    text-decoration: underline;
}

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

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

    .page-slot-games__description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

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

    .page-slot-games__btn {
        width: 80%; /* Make buttons wider on mobile */
        margin: 0 auto;
    }

    .page-slot-games__section-title {
        font-size: 1.8rem;
        margin: 40px 0 30px;
    }

    .page-slot-games__features-grid {
        grid-template-columns: 1fr;
    }

    .page-slot-games__game-list {
        grid-template-columns: 1fr;
    }

    .page-slot-games__game-image {
        max-width: 100%; /* Ensure images don't overflow */
        height: auto;
    }

    /* Specific override for game card images to ensure they are not too small */
    .page-slot-games__game-card .page-slot-games__game-image {
        min-width: 250px; /* Adjust as needed, but ensure it's >= 200px */
        min-height: 180px; /* Adjust as needed, but ensure it's >= 200px for smallest dimension */
        height: auto; /* Override fixed height for responsiveness, let auto take over */
    }

    .page-slot-games__faq-question {
        font-size: 1.1rem;
    }
}

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