.page-slot-games {
    padding-top: 10px; /* Small top padding, relying on body for header offset */
    background-color: #F4F7FB; /* Background color */
    color: #1F2D3D; /* Main text color */
    font-family: Arial, sans-serif;
}

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

/* Hero Section */
.page-slot-games__hero-section {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column; /* Ensure image is above text */
    align-items: center;
    text-align: center;
    padding: 20px 0; /* Add some padding around the hero section */
}

.page-slot-games__hero-image {
    width: 100%;
    height: auto;
    max-width: 1920px; /* Max width for the image */
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Even hero image needs min size */
    min-height: 200px;
}

.page-slot-games__hero-content {
    padding: 40px 20px;
    max-width: 900px;
    margin-top: 20px; /* Space between image and content */
}

.page-slot-games__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 20px;
    /* No fixed font-size, relying on weight and line-height */
}

.page-slot-games__hero-description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #1F2D3D;
}

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

.page-slot-games__hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

/* Section Titles */
.page-slot-games__section-title {
    font-size: 2.2em;
    font-weight: bold;
    color: #000000; /* Custom Color_1776249996415 */
    text-align: center;
    margin-bottom: 30px;
    padding-top: 40px;
}

.page-slot-games__text-content {
    font-size: 1.05em;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #1F2D3D;
}

/* Features Grid */
.page-slot-games__introduction-section {
    padding: 60px 0;
    background-color: #FFFFFF; /* Card BG color */
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.page-slot-games__feature-item {
    background-color: #F4F7FB; /* Background color */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.page-slot-games__feature-title {
    font-size: 1.4em;
    font-weight: bold;
    color: #2F6BFF; /* Main color */
    margin-bottom: 15px;
}

.page-slot-games__feature-description {
    font-size: 0.95em;
    line-height: 1.6;
    color: #1F2D3D;
}

/* Games Showcase */
.page-slot-games__games-showcase {
    padding: 60px 0;
    margin-bottom: 40px;
}

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

.page-slot-games__game-card {
    background-color: #FFFFFF; /* Card BG color */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.page-slot-games__game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-slot-games__game-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency, images will cover */
    object-fit: cover;
    display: block;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px; /* Ensure images are not too small */
}

.page-slot-games__game-card h3,
.page-slot-games__game-card p,
.page-slot-games__game-card a {
    padding: 0 20px; /* Padding for text inside card */
}

.page-slot-games__game-title {
    font-size: 1.3em;
    font-weight: bold;
    color: #2F6BFF; /* Main color */
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-slot-games__game-description {
    font-size: 0.9em;
    line-height: 1.5;
    color: #1F2D3D;
    flex-grow: 1; /* Make description take available space */
    margin-bottom: 20px;
}

.page-slot-games__game-button {
    display: block;
    width: calc(100% - 40px); /* Adjust for padding */
    margin: 0 20px 20px 20px; /* Center with margin */
    padding: 12px 0;
    border-radius: 8px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-slot-games__game-button:hover {
    background: linear-gradient(180deg, #6FA3FF 0%, #4A8BFF 100%); /* Lighter blue on hover */
}

/* Promotions Section */
.page-slot-games__promotions-section {
    background-color: #F4F7FB; /* Background color */
    padding: 60px 0;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-slot-games__promotion-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto;
}

.page-slot-games__promotion-item {
    background-color: #FFFFFF; /* Card BG color */
    padding: 20px 25px;
    margin-bottom: 15px;
    border-left: 5px solid #2F6BFF; /* Main color */
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1.05em;
    color: #1F2D3D;
}

.page-slot-games__promotions-button {
    display: block;
    width: fit-content;
    margin: 30px auto 0 auto;
    padding: 15px 30px;
    border-radius: 8px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-slot-games__promotions-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

/* CTA Section */
.page-slot-games__cta-section {
    padding: 60px 0;
    text-align: center;
    background-color: #2F6BFF; /* Main color */
    color: #FFFFFF;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-slot-games__cta-section .page-slot-games__section-title,
.page-slot-games__cta-section .page-slot-games__text-content {
    color: #FFFFFF;
}

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

.page-slot-games__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    background: #FFFFFF; /* White button on blue background */
    color: #2F6BFF; /* Main color for text */
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games__cta-button:hover {
    background-color: #F4F7FB; /* Lighter white/grey */
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-slot-games__faq-section {
    padding: 60px 0;
    background-color: #FFFFFF; /* Card BG color */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-slot-games__faq-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #D6E2FF; /* Border color */
}

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

.page-slot-games__faq-question {
    font-size: 1.25em;
    font-weight: bold;
    color: #2F6BFF; /* Main color */
    margin-bottom: 15px;
}

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

.page-slot-games__faq-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 20px auto 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px; /* Ensure images are not too small */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-slot-games__container {
        padding: 15px;
    }

    .page-slot-games__hero-content {
        padding: 20px 15px;
    }

    .page-slot-games__main-title {
        font-size: 1.8em; /* Adjusted for smaller screens */
    }

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

    .page-slot-games__text-content {
        font-size: 1em;
        margin-bottom: 30px;
    }

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

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

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

    /* Ensure all content area images are responsive and don't overflow */
    .page-slot-games img {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure content area images are at least 200px wide/high */
.page-slot-games img:not(.page-slot-games__hero-image) {
    min-width: 200px;
    min-height: 200px;
}