.story-video-section {
    background: var(--black);
    position: relative;
    overflow: hidden;
    padding: 0;
}

.story-video-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

/* Left: text panel */
.story-video-left {
    padding: 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.story-video-left .section-label span {
    color: rgba(255, 255, 255, 0.35);
}

.story-video-left h2 {
    font-family: 'Bangers', cursive;
    font-size: clamp(40px, 4.5vw, 62px);
    letter-spacing: 2px;
    color: white;
    line-height: 1.0;
    margin-bottom: 24px;
}

.story-video-left h2 .accent {
    color: var(--red);
}

.story-video-desc {
    font-family: 'Lora', serif;
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 16px;
}

/* Right: video embed panel */
.story-video-right {
    position: relative;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-video-right iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: none;
    display: block;
}

.story-video {
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
}

/* Kanji watermark on left */
.story-video-kanji {
    position: absolute;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 300px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.015);
    bottom: -60px;
    left: -20px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}