/* =========================================
   BONUS SECTION (ISOLATED STYLE)
   ========================================= */

/* ID Scope to prevent conflicts */
#bonuses {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

/* Container Override */
#bonuses .container {
    max-width: 1000px;
    width: 96%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Card Layout */
.bonus-card-v2 {
    display: flex;
    flex-direction: column;
    background: rgba(10, 10, 20, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

@media (min-width: 769px) {
    .bonus-card-v2 {
        flex-direction: row;
        align-items: stretch;
    }
}

/* Left: Visual Area (Thumbnail) */
.bonus-visual-v2 {
    width: 100%;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
}

@media (min-width: 769px) {
    .bonus-visual-v2 {
        width: 50%;
        aspect-ratio: auto;
        /* Let flexbox handle height */
    }
}

.bonus-thumb-v2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bonus-visual-v2:hover .bonus-thumb-v2 {
    transform: scale(1.05);
}

/* Play Button Overlay */
.bonus-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.bonus-play-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 24px;
    backdrop-filter: blur(4px);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.bonus-visual-v2:hover .bonus-play-icon {
    background: var(--c-accent-gold, #c1a265);
    border-color: var(--c-accent-gold, #c1a265);
    color: #000;
    transform: scale(1.1);
}

.bonus-play-label {
    font-family: 'Cinzel', serif;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    background: #000;
    padding: 2px 8px;
    border: 1px solid rgba(193, 162, 101, 0.5);
    /* Goldish border */
}

/* Right: Content Area */
.bonus-content-v2 {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

@media (min-width: 769px) {
    .bonus-content-v2 {
        width: 50%;
        padding: 3rem;
    }
}

/* Badge */
.bonus-badge-st {
    display: inline-block;
    background: linear-gradient(90deg, #c1a265, #e6d3a3);
    color: #000;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 1rem;
    align-self: flex-start;
}

/* Typography */
.bonus-title-main {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    line-height: 1.4;
    color: #fff;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 1rem;
}

.bonus-desc {
    font-size: 1rem;
    line-height: 2.0;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

/* List */
.bonus-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bonus-list li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
}

.bonus-list li::before {
    content: "▶";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.6rem;
    color: #c1a265;
}

/* Mobile */
@media (max-width: 768px) {
    .bonus-content-v2 {
        padding: 1.5rem 1rem;
    }

    .bonus-title-main {
        font-size: 1.3rem;
        line-height: 1.6;
    }

    .bonus-desc {
        font-size: 0.95rem;
        line-height: 2.2;
    }

    .bonus-list li {
        font-size: 0.92rem;
        line-height: 2.0;
        margin-bottom: 0.6rem;
    }
}