.page-slot-games {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    padding-bottom: 40px;
}

/* Hero Section */
.page-slot-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding */
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 40px;
}

.page-slot-games__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-slot-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
}

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

.page-slot-games__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 15px;
    /* No fixed font-size, rely on weight/spacing, or use clamp if absolutely needed */
}

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

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

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

/* General Sections */
.page-slot-games__section-title {
    font-size: 2.2em;
    font-weight: 700;
    color: #000000; /* Custom Color_1776249996415 */
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
    padding: 0 20px;
}

/* Features Section */
.page-slot-games__features-section {
    max-width: 1200px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
}

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

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

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

.page-slot-games__feature-icon {
    width: 100%; /* Must be >= 200px for content images */
    height: auto;
    max-width: 250px; /* Adjust to ensure minimum 200x200 display */
    min-width: 200px; /* Enforce minimum display size */
    min-height: 200px;
    margin: 0 auto 20px auto;
    border-radius: 8px;
    object-fit: cover;
    display: block;
}

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

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

/* Game Types Section */
.page-slot-games__game-types-section {
    max-width: 1200px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
}

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

.page-slot-games__game-type-card {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.page-slot-games__game-type-image {
    width: 100%;
    height: auto;
    min-height: 200px; /* Ensure image is not too small */
    object-fit: cover;
    display: block;
}

.page-slot-games__game-type-content {
    padding: 25px;
}

.page-slot-games__game-type-title {
    font-size: 1.5em;
    font-weight: 600;
    color: #2F6BFF; /* Main Color */
    margin-bottom: 10px;
}

.page-slot-games__game-type-text {
    font-size: 0.95em;
    line-height: 1.6;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 20px;
}

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

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

/* Tips Section */
.page-slot-games__tips-section {
    max-width: 1000px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
    text-align: center;
}

.page-slot-games__tips-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.page-slot-games__tip-item {
    background-color: #FFFFFF; /* Card BG */
    border-left: 5px solid #2F6BFF; /* Main Color for emphasis */
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-slot-games__tip-title {
    font-size: 1.3em;
    font-weight: 600;
    color: #2F6BFF; /* Main Color */
    margin-top: 0;
    margin-bottom: 10px;
}

.page-slot-games__tip-text {
    font-size: 1em;
    line-height: 1.6;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 0;
}

.page-slot-games__cta-wrapper {
    margin-top: 40px;
}

.page-slot-games__cta-button--secondary {
    background: linear-gradient(180deg, #6FA3FF 0%, #2F6BFF 100%); /* Using a variant of the main colors */
}

.page-slot-games__cta-button--secondary:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
}

/* FAQ Section */
.page-slot-games__faq-section {
    max-width: 900px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
}

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

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

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

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

    .page-slot-games__section-title {
        font-size: 1.8em;
    }

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

    .page-slot-games__hero-section {
        padding-top: 10px;
    }

    /* Ensure content images are responsive and not too small */
    .page-slot-games__feature-icon,
    .page-slot-games__game-type-image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Still enforce minimum size */
        min-height: 200px;
    }
    /* Specific rule for mobile image sizing to prevent overflow */
    .page-slot-games img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-slot-games__cta-button {
        padding: 12px 25px;
        font-size: 0.9em;
    }

    .page-slot-games__feature-card,
    .page-slot-games__game-type-card,
    .page-slot-games__tip-item,
    .page-slot-games__faq-item {
        padding: 20px;
    }
}