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

.page-slot-games__section {
    padding: 40px 0;
    margin-bottom: 20px;
}

.page-slot-games__container {
    max-width: 1200px; /* Max-width for content */
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section */
.page-slot-games__hero-section {
    position: relative;
    overflow: hidden;
    padding-bottom: 40px; /* Separates hero content from the image below */
    display: flex; /* For upper image, lower text */
    flex-direction: column; /* Stacks image and content vertically */
    align-items: center; /* Centers content horizontally if narrower */
}

.page-slot-games__hero-image {
    width: 100%;
    max-width: 1920px; /* Ensure large image for hero */
    height: auto;
    display: block;
    margin-bottom: 20px; /* Spacing between image and text */
}

.page-slot-games__hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 15px;
}

.page-slot-games__hero-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1F2D3D;
    margin-bottom: 15px;
    font-size: clamp(2.2em, 4vw, 3em); /* Clamp for H1 as per rule */
}

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

.page-slot-games__hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Buttons */
.page-slot-games__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

.page-slot-games__button--primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-slot-games__button--secondary {
    background-color: #FFFFFF; /* Card BG */
    color: #2F6BFF; /* Main color */
    border: 1px solid #D6E2FF; /* Border color */
}

.page-slot-games__button--secondary:hover {
    background-color: #F4F7FB; /* Background color */
    color: #2F6BFF;
}

/* Section Titles and Descriptions */
.page-slot-games__section-title {
    font-weight: 700;
    line-height: 1.3;
    color: #1F2D3D;
    text-align: center;
    margin-bottom: 20px;
    font-size: clamp(1.8em, 3.5vw, 2.5em);
}

.page-slot-games__section-description {
    font-size: 1em;
    line-height: 1.6;
    color: #1F2D3D;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

/* General Images */
.page-slot-games__image {
    width: 100%;
    max-width: 800px; /* Example max-width for content images */
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px;
}

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

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

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

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

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

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

.page-slot-games__faq-question {
    font-size: 1.15em;
    font-weight: 600;
    color: #2F6BFF; /* Main color */
    margin-bottom: 10px;
    cursor: pointer;
}

.page-slot-games__faq-answer {
    font-size: 1em;
    line-height: 1.6;
    color: #1F2D3D;
    display: none; /* Initially hidden, JS will toggle */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-slot-games__hero-title {
        font-size: clamp(2.0em, 4.5vw, 2.8em); /* Adjusted clamp for H1 */
    }
    .page-slot-games__section-title {
        font-size: clamp(1.6em, 3.8vw, 2.2em);
    }
}

@media (max-width: 768px) {
    .page-slot-games__hero-title {
        font-size: clamp(1.6em, 6vw, 2.2em);
    }
    .page-slot-games__section-title {
        font-size: clamp(1.4em, 5vw, 2.0em);
    }
    .page-slot-games__hero-actions {
        flex-direction: column;
        gap: 10px;
    }
    .page-slot-games__button {
        width: 100%;
        max-width: 300px; /* Constrain button width on mobile */
    }
    .page-slot-games__image {
        max-width: 100%; /* Ensure images don't overflow */
        height: auto;
    }
    .page-slot-games__features-grid {
        grid-template-columns: 1fr;
    }
    /* Mobile content image constraint */
    .page-slot-games__introduction-section img,
    .page-slot-games__features-section img {
        max-width: 100%;
        height: auto;
    }
    /* Ensure no content area image is smaller than 200px (already handled by min-width/min-height) */
    .page-slot-games img {
        min-width: 200px;
        min-height: 200px;
    }
}