.page-promotions-daily-bonus {
    padding-top: 10px; /* Small top padding for inner pages, body handles header offset */
    background-color: #F5F7FA; /* Background color from custom配色 */
    color: #333333; /* Text Main color */
    font-family: Arial, sans-serif;
}

.page-promotions-daily-bonus__container {
    max-width: 1200px; /* Boxed layout */
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-promotions-daily-bonus__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    text-align: center;
    background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%); /* Button gradient for hero background for visual tie-in */
    padding-bottom: 40px; /* Space below content */
    border-radius: 8px; /* Optional: subtle rounded corners */
    overflow: hidden; /* Ensure content doesn't spill */
    margin: 0 auto 40px auto; /* Centered, with margin below */
    max-width: 1240px; /* Slightly wider than container for effect */
}

.page-promotions-daily-bonus__hero-image-wrapper {
    width: 100%;
    margin-bottom: 20px; /* Space between image and text */
}

.page-promotions-daily-bonus__hero-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9; /* Maintain aspect ratio for 1600x900 or 1920x1080 source */
    object-fit: cover;
    object-position: center;
    filter: none; /* Ensure no CSS filters */
}

.page-promotions-daily-bonus__hero-content {
    max-width: 800px; /* Constrain text width */
    padding: 0 20px;
    color: #FFFFFF; /* White text on dark background */
}

.page-promotions-daily-bonus__main-title {
    font-size: clamp(1.8rem, 4.5vw, 2.5rem); /* Responsive H1 font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.page-promotions-daily-bonus__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.page-promotions-daily-bonus__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%); /* Button color from custom配色 */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-bonus__cta-button:hover {
    background: linear-gradient(180deg, #E53935 0%, #FF5A4F 100%); /* Invert gradient on hover */
}

/* Section Titles */
.page-promotions-daily-bonus__section-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #E53935; /* Primary color for titles */
    position: relative;
    padding-bottom: 10px;
}

.page-promotions-daily-bonus__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FF5A4F; /* Secondary color for underline */
    border-radius: 2px;
}

/* How It Works Section */
.page-promotions-daily-bonus__how-it-works-section {
    padding: 60px 0;
}

.page-promotions-daily-bonus__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-promotions-daily-bonus__step-card {
    background-color: #FFFFFF; /* Card BG color */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid #E0E0E0; /* Border color */
}

.page-promotions-daily-bonus__step-card:hover {
    transform: translateY(-10px);
}

.page-promotions-daily-bonus__step-icon {
    width: 100%; /* Ensure image fills card */
    max-width: 200px; /* Constrain icon size */
    height: auto;
    margin: 0 auto 20px auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3; /* Aspect ratio for 400x300 */
    border-radius: 5px;
    filter: none; /* No CSS filters */
}


.page-promotions-daily-bonus__step-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #E53935; /* Primary color */
}

.page-promotions-daily-bonus__step-description {
    font-size: 1rem;
    line-height: 1.5;
    color: #333333; /* Text Main color */
}

/* Benefits Section */
.page-promotions-daily-bonus__benefits-section {
    padding: 60px 0;
    background-color: #F5F7FA; /* Background color */
}

.page-promotions-daily-bonus__benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 900px; /* Constrain list width */
}

.page-promotions-daily-bonus__benefit-item {
    background-color: #FFFFFF; /* Card BG color */
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #FF5A4F; /* Secondary color accent */
    color: #333333; /* Text Main color */
}

.page-promotions-daily-bonus__benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #E53935; /* Primary color */
}

.page-promotions-daily-bonus__benefit-description {
    font-size: 0.95rem;
    line-height: 1.5;
}

.page-promotions-daily-bonus__cta-button--secondary {
    margin-top: 40px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%); /* Same button style */
}

/* Terms and Conditions Section */
.page-promotions-daily-bonus__terms-section {
    padding: 60px 0;
    background-color: #FFFFFF; /* Card BG for this section */
}

.page-promotions-daily-bonus__terms-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: #333333; /* Text Main color */
}

.page-promotions-daily-bonus__terms-content p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.page-promotions-daily-bonus__terms-list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    font-size: 1rem;
}

.page-promotions-daily-bonus__terms-list li {
    margin-bottom: 8px;
}

.page-promotions-daily-bonus__read-more-link {
    display: inline-block;
    color: #E53935; /* Primary color for link */
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: color 0.3s ease;
}

.page-promotions-daily-bonus__read-more-link:hover {
    color: #FF5A4F; /* Secondary color on hover */
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-promotions-daily-bonus__container {
        padding: 15px;
    }

    .page-promotions-daily-bonus__hero-section {
        padding-bottom: 30px;
        margin-bottom: 30px;
        border-radius: 0; /* Full width on mobile */
        max-width: 100%;
    }

    .page-promotions-daily-bonus__main-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }

    .page-promotions-daily-bonus__description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .page-promotions-daily-bonus__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .page-promotions-daily-bonus__section-title {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
        margin-bottom: 30px;
    }

    .page-promotions-daily-bonus__how-it-works-section,
    .page-promotions-daily-bonus__benefits-section,
    .page-promotions-daily-bonus__terms-section {
        padding: 40px 0;
    }

    .page-promotions-daily-bonus__steps-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

    .page-promotions-daily-bonus__step-card {
        padding: 25px;
    }

    .page-promotions-daily-bonus__step-icon {
        max-width: 150px; /* Smaller icon on mobile */
    }

    .page-promotions-daily-bonus__benefits-list {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

    .page-promotions-daily-bonus__terms-content {
        padding: 0 15px;
    }

    /* Ensure all images are responsive and don't cause overflow */
    .page-promotions-daily-bonus img {
        max-width: 100%;
        height: auto;
        display: block;
    }
}