.page-slot-games {
    background-color: #F4F7FB; /* Background color from custom配色 */
    color: #1F2D3D; /* Text Main from custom配色 */
    padding-top: 10px; /* Small top padding as per rules */
}

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

.page-slot-games__hero-section {
    display: flex;
    flex-direction: column; /* Ensure image is above text */
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    background-color: #F4F7FB; /* Consistent with page background */
}

.page-slot-games__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Constrain image width */
    margin-bottom: 20px;
}

.page-slot-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-slot-games__hero-content {
    max-width: 800px;
}

.page-slot-games__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 15px;
    font-size: clamp(2.2rem, 4vw, 3rem); /* Example clamp for responsiveness */
}

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

.page-slot-games__cta-button {
    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: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.3);
}

.page-slot-games__section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #000000; /* Custom Color_1776249996415 */
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

.page-slot-games__features-section {
    padding: 50px 0;
    background-color: #FFFFFF; /* Card BG */
}

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

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

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

.page-slot-games__feature-image {
    width: 100%; /* Ensure image fills card width */
    max-width: 300px; /* Max width for card images */
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px; /* Min size constraint */
    min-height: 200px; /* Min size constraint */
    object-fit: cover;
}

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

.page-slot-games__feature-card-description {
    font-size: 1rem;
    line-height: 1.5;
    color: #1F2D3D; /* Text Main */
}

.page-slot-games__secondary-cta-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 12px 25px;
    background-color: #6FA3FF; /* Auxiliary color */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.page-slot-games__secondary-cta-button:hover {
    background-color: #2F6BFF; /* Primary color on hover */
}

.page-slot-games__promotion-section {
    padding: 50px 0;
    text-align: center;
}

.page-slot-games__promotion-description {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #1F2D3D; /* Text Main */
}

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

.page-slot-games__promotion-item {
    background-color: #FFFFFF; /* Card BG */
    border: 1px solid #D6E2FF; /* Border color */
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #1F2D3D; /* Text Main */
    text-align: left;
    display: flex;
    align-items: center;
}

.page-slot-games__promotion-item::before {
    content: '✅';
    margin-right: 10px;
    font-size: 1.2em;
}

.page-slot-games__guide-section {
    padding: 50px 0;
    background-color: #FFFFFF; /* Card BG */
    text-align: center;
}

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

.page-slot-games__guide-step {
    background-color: #F4F7FB; /* Background color */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.page-slot-games__guide-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

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

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

.page-slot-games__faq-section {
    padding: 50px 0;
}

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

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

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

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

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

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

    .page-slot-games__section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .page-slot-games__feature-grid,
    .page-slot-games__guide-steps {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

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

    /* Content area images must not cause overflow */
    .page-slot-games img {
        max-width: 100%;
        height: auto;
    }

    .page-slot-games__feature-image,
    .page-slot-games__hero-image {
        width: 100%; /* Take full width of parent on mobile */
        height: auto;
        min-width: unset; /* Remove min-width constraint on mobile for fluid sizing */
        min-height: unset; /* Remove min-height constraint on mobile for fluid sizing */
    }
}