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

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

/* Hero Section */
.page-slot-games__hero-section {
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    margin-bottom: 40px;
    text-align: center;
}

.page-slot-games__hero-image-wrapper {
    margin-bottom: 20px;
}

.page-slot-games__hero-image {
    width: 100%;
    max-width: 1200px; /* Max width for display */
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

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

.page-slot-games__hero-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive H1, using clamp */
    font-weight: bold;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 15px;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games__hero-description {
    font-size: 1.1em;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-slot-games__hero-cta:hover {
    opacity: 0.9;
}

/* General Sections */
.page-slot-games__intro-section,
.page-slot-games__features-section,
.page-slot-games__game-types-section,
.page-slot-games__cta-section,
.page-slot-games__faq-section {
    padding: 40px 0;
    margin-bottom: 20px;
}

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

.page-slot-games__text-content {
    font-size: 1.1em;
    color: #1F2D3D; /* Text Main */
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px auto;
}

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

.page-slot-games__feature-card {
    background-color: #FFFFFF; /* Card B G */
    border: 1px solid #D6E2FF; /* Border */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-slot-games__feature-icon {
    width: 250px; /* Ensure images are not too small */
    height: auto;
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
    object-fit: cover;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games__feature-title {
    font-size: 1.4em;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
}

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

/* Game Types Grid */
.page-slot-games__game-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.page-slot-games__game-card {
    background-color: #FFFFFF; /* Card B G */
    border: 1px solid #D6E2FF; /* Border */
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease;
}

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

.page-slot-games__game-title {
    font-size: 1.3em;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
}

.page-slot-games__game-description {
    font-size: 0.9em;
    color: #1F2D3D; /* Text Main */
}

/* CTA Section */
.page-slot-games__cta-section {
    background-color: #E6EEF9; /* A lighter shade of background, or a gradient */
    padding: 60px 0;
    text-align: center;
    border-radius: 10px;
    margin: 40px auto;
    max-width: 1200px;
}

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

.page-slot-games__button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 180px;
    text-align: center;
}

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

.page-slot-games__button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.page-slot-games__button--secondary {
    background-color: #FFFFFF; /* Card B G */
    color: #2F6BFF; /* Main color for text */
    border: 2px solid #2F6BFF; /* Main color for border */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-slot-games__button--secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    background-color: #F0F5FF; /* Slight hover effect */
}

/* FAQ Section */
.page-slot-games__faq-section {
    padding-bottom: 60px;
}

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

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

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

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-slot-games__hero-title {
        font-size: clamp(2em, 5vw, 3em);
    }
    .page-slot-games__section-title {
        font-size: 2em;
    }
}

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

    .page-slot-games__hero-section {
        margin-bottom: 30px;
    }

    .page-slot-games__hero-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
    }

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

    .page-slot-games__hero-cta {
        padding: 12px 25px;
        font-size: 0.95em;
    }

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

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

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

    .page-slot-games__feature-icon {
        width: 200px; /* Minimum size */
        min-width: 200px; /* Enforce minimum display size */
        min-height: 200px;
    }

    .page-slot-games__button {
        padding: 12px 25px;
        font-size: 0.95em;
        min-width: unset;
    }

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

    /* Ensure images in content area are responsive and don't overflow */
    .page-slot-games img {
        max-width: 100%;
        height: auto;
    }
    /* Specific rule for content area images to ensure min size */
    .page-slot-games__features-section img,
    .page-slot-games__game-types-section img {
        min-width: 200px; /* Enforce minimum display size */
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-slot-games__hero-title {
        font-size: clamp(1.5em, 7vw, 2em);
    }
    .page-slot-games__section-title {
        font-size: 1.5em;
    }
}