.page-slot-games {
    background-color: #F4F7FB;
    color: #1F2D3D;
    font-family: Arial, sans-serif;
}

.page-slot-games__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 40px;
    background-color: #2F6BFF;
    color: #FFFFFF;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-slot-games__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Ensure image wrapper doesn't exceed common max-width */
    margin-bottom: 20px;
}

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

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

.page-slot-games__main-title {
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFFFFF;
    max-width: 100%;
}

.page-slot-games__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-slot-games__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.page-slot-games__section-title {
    font-size: 2.2em;
    color: #1F2D3D;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    padding-top: 60px;
}

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

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

.page-slot-games__feature-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 25px;
    text-align: center;
    border: 1px solid #D6E2FF;
    transition: transform 0.3s ease;
}

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

.page-slot-games__feature-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-slot-games__feature-title {
    font-size: 1.5em;
    color: #1F2D3D;
    margin-bottom: 10px;
    font-weight: bold;
}

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

.page-slot-games__how-to-play-section {
    background-color: #EBF2FF;
    padding: 60px 20px;
    text-align: center;
}

.page-slot-games__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-slot-games__step-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #D6E2FF;
}

.page-slot-games__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #2F6BFF;
    color: #FFFFFF;
    border-radius: 50%;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
}

.page-slot-games__step-title {
    font-size: 1.4em;
    color: #1F2D3D;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-slot-games__step-text {
    font-size: 0.95em;
    color: #1F2D3D;
    line-height: 1.6;
    margin-bottom: 20px;
}

.page-slot-games__step-link {
    color: #2F6BFF;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-slot-games__step-link:hover {
    color: #6FA3FF;
}

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

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

.page-slot-games__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #D6E2FF;
    border-radius: 8px;
    padding: 25px;
}

.page-slot-games__faq-question {
    font-size: 1.2em;
    color: #1F2D3D;
    margin-bottom: 10px;
    font-weight: bold;
}

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

@media (max-width: 768px) {
    .page-slot-games__hero-section {
        padding-top: 10px;
        padding-bottom: 30px;
    }

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

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

    .page-slot-games__section-title {
        font-size: 1.8em;
        padding-top: 40px;
        margin-bottom: 30px;
    }

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

    .page-slot-games__features-section,
    .page-slot-games__how-to-play-section,
    .page-slot-games__faq-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-slot-games__feature-image,
    .page-slot-games__hero-image {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-slot-games__main-title {
        font-size: 1.5em;
    }

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

    .page-slot-games__cta-button {
        padding: 12px 25px;
        font-size: 0.9em;
    }

    .page-slot-games__feature-title {
        font-size: 1.3em;
    }

    .page-slot-games__step-title {
        font-size: 1.2em;
    }

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