/* =========================================================
   SİNEMA MODU — Tanıtım Filmi Oynatıcı
   Tamamen HTML/CSS/JS ile üretilmiş sinematik sunum
   ========================================================= */

.cinema {
    position: fixed; inset: 0; z-index: 99998;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .45s ease, visibility .45s ease;
    padding: clamp(0px, 2vw, 26px);
    --c-accent: #00B4D8;
    --c-accent-2: #48CAE4;
    --c-ice: #90E0EF;
    --c-ink: #030718;
}
.cinema.open { opacity: 1; visibility: visible; pointer-events: auto; }

/* Sinema içindeki tüm başlıklar koyu zemin üzerinde beyaz */
.cinema h1, .cinema h2, .cinema h3, .cinema h4, .cinema h5 { color: #fff; }

.cinema-backdrop {
    position: absolute; inset: 0;
    background: rgba(1, 4, 20, .97);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
}

.cinema-shell {
    position: relative; width: 100%; max-width: 1320px;
    display: flex; flex-direction: column; gap: 10px;
    transform: scale(.94) translateY(18px); opacity: 0;
    transition: transform .5s cubic-bezier(.2,.9,.25,1), opacity .5s ease;
}
.cinema.open .cinema-shell { transform: none; opacity: 1; }

/* ---------- ÜST ÇUBUK ---------- */
.c-topbar {
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    color: #fff; padding: 0 4px;
}
.c-title { display: flex; align-items: center; gap: 14px; min-width: 0; }
.c-live {
    display: inline-flex; align-items: center; gap: 7px; font-size: .64rem; font-weight: 800;
    letter-spacing: 1.6px; color: #FF5A6E; border: 1px solid rgba(255,90,110,.45);
    padding: 4px 10px; border-radius: 30px; white-space: nowrap;
}
.c-live i { font-size: .45rem; animation: cLive 1.4s infinite; }
@keyframes cLive { 50% { opacity: .2; } }
.c-title strong { display: block; font-family: 'Cinzel', serif; font-size: 1rem; line-height: 1.25; }
.c-title small { display: block; color: var(--c-ice); font-size: .72rem; letter-spacing: 1px; }
.c-top-actions { display: flex; align-items: center; gap: 8px; }
.c-badge {
    font-size: .64rem; font-weight: 800; letter-spacing: 1.2px; color: var(--c-ice);
    border: 1px solid rgba(144,224,239,.35); padding: 3px 8px; border-radius: 6px;
}

.c-icon-btn {
    width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.07); color: #fff; cursor: pointer; display: grid; place-items: center;
    font-size: .95rem; transition: all .22s ease; flex-shrink: 0;
}
.c-icon-btn:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.3); }
.c-icon-btn.play {
    width: 48px; height: 48px; font-size: 1.1rem;
    background: linear-gradient(135deg, #0077B6, var(--c-accent)); border: none;
    box-shadow: 0 8px 22px rgba(0,180,216,.4);
}
.c-icon-btn.play:hover { transform: scale(1.06); }
.c-icon-btn .spd { font-size: .76rem; font-weight: 800; }

/* ---------- EKRAN ---------- */
.c-screen {
    position: relative; width: 100%; border-radius: 16px; overflow: hidden;
    background: #01040F; box-shadow: 0 40px 100px rgba(0,0,0,.7), 0 0 0 1px rgba(144,224,239,.12);
}
.c-stage {
    position: relative; width: 100%; aspect-ratio: 16 / 9;
    background:
        radial-gradient(1000px 600px at 50% 42%, #0A1B4E 0%, #050D2E 45%, #01040F 100%);
    overflow: hidden;
}

/* Sinematik katmanlar */
.c-vignette {
    position: absolute; inset: 0; pointer-events: none; z-index: 60;
    background: radial-gradient(circle at 50% 50%, transparent 45%, rgba(0,0,0,.55) 100%);
}
.c-grain {
    position: absolute; inset: -50%; pointer-events: none; z-index: 61; opacity: .05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
    animation: grainMove .7s steps(4) infinite;
}
@keyframes grainMove {
    0% { transform: translate(0,0); }   25% { transform: translate(-4%, 3%); }
    50% { transform: translate(3%, -4%); } 75% { transform: translate(-3%, -2%); }
    100% { transform: translate(2%, 4%); }
}
.c-bar {
    position: absolute; left: 0; right: 0; height: 5.5%; background: #000; z-index: 62; pointer-events: none;
    transition: height .5s ease;
}
.c-bar.top { top: 0; } .c-bar.bottom { bottom: 0; }

/* ---------- POSTER / YÜKLEME ---------- */
.c-poster {
    position: absolute; inset: 0; z-index: 80;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
    text-align: center; color: #fff; padding: 20px;
    background: radial-gradient(circle at 50% 45%, rgba(3,32,90,.55), rgba(1,4,15,.94));
    transition: opacity .5s ease, visibility .5s ease;
}
.c-poster.hide { opacity: 0; visibility: hidden; }
.c-poster h3 { font-family: 'Cinzel', serif; font-size: clamp(1.1rem, 2.6vw, 1.7rem); }
.c-poster p { color: var(--c-ice); font-size: clamp(.75rem, 1.7vw, .9rem); letter-spacing: 1px; }
.c-bigplay {
    width: clamp(70px, 10vw, 96px); height: clamp(70px, 10vw, 96px); border-radius: 50%;
    border: 2px solid var(--c-ice); background: rgba(255,255,255,.08); color: #fff;
    font-size: clamp(1.5rem, 2.6vw, 2.1rem); cursor: pointer; margin-bottom: 16px;
    display: grid; place-items: center; transition: all .3s ease;
    animation: cPulse 2.4s infinite cubic-bezier(.66,0,0,1);
}
.c-bigplay i { margin-left: 6px; }
.c-bigplay:hover { background: var(--c-accent); border-color: var(--c-accent); transform: scale(1.08); animation: none; }
@keyframes cPulse {
    0%   { box-shadow: 0 0 0 0 rgba(144,224,239,.55); }
    100% { box-shadow: 0 0 0 34px rgba(144,224,239,0); }
}

.c-loading {
    position: absolute; inset: 0; z-index: 85; display: none;
    flex-direction: column; align-items: center; justify-content: center; gap: 16px;
    background: rgba(1,4,15,.8); color: var(--c-ice); font-size: .82rem; letter-spacing: 1.5px;
}
.c-loading.show { display: flex; }
.c-spinner {
    width: 46px; height: 46px; border-radius: 50%;
    border: 3px solid rgba(144,224,239,.2); border-top-color: var(--c-accent);
    animation: cSpin .8s linear infinite;
}
@keyframes cSpin { to { transform: rotate(360deg); } }

/* Orta durum ikonu (play/pause flash) */
.c-flash {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(.7);
    width: 92px; height: 92px; border-radius: 50%; background: rgba(0,0,0,.55);
    display: grid; place-items: center; color: #fff; font-size: 2rem; z-index: 70;
    opacity: 0; pointer-events: none;
}
.c-flash.go { animation: cFlash .65s ease forwards; }
@keyframes cFlash {
    0% { opacity: .95; transform: translate(-50%,-50%) scale(.7); }
    100% { opacity: 0; transform: translate(-50%,-50%) scale(1.5); }
}

/* Altyazı */
.c-subtitle {
    position: absolute; left: 50%; transform: translateX(-50%); bottom: 15%;
    z-index: 65; max-width: 82%; text-align: center; pointer-events: none;
    transition: opacity .3s ease, bottom .35s ease;
}
/* Kontroller gizlendiğinde altyazı aşağı iner */
.c-screen.idle .c-subtitle { bottom: 8%; }
.c-subtitle span {
    display: inline-block; background: rgba(0,0,0,.62); color: #fff;
    padding: 6px 14px; border-radius: 6px; font-size: clamp(.72rem, 1.6vw, .95rem);
    font-weight: 600; line-height: 1.5; letter-spacing: .2px;
}
.c-subtitle:empty, .c-subtitle.off { opacity: 0; }
.c-subtitle span:empty { display: none; }

/* =========================================================
   SAHNE ÇEKİRDEĞİ
   ========================================================= */
.scene {
    position: absolute; inset: 0; z-index: 10;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 7% 6%; color: #fff;
    opacity: 0; visibility: hidden;
}
.scene.active { opacity: 1; visibility: visible; }

/* Duraklatıldığında tüm animasyonlar donar */
.cinema.paused .scene, .cinema.paused .scene * { animation-play-state: paused !important; }

/* Ortak öğeler */
.s-kicker {
    font-size: clamp(.6rem, 1.3vw, .74rem); font-weight: 800; letter-spacing: 4px;
    color: var(--c-accent-2); margin-bottom: 14px; text-transform: uppercase;
    animation: kickIn .8s ease both; animation-delay: calc(var(--sd, .1s) - var(--seek, 0s));
}
@keyframes kickIn { from { opacity: 0; letter-spacing: 12px; } to { opacity: 1; letter-spacing: 4px; } }

.s-title {
    font-family: 'Cinzel', serif; font-size: clamp(1.15rem, 3.6vw, 2.9rem); line-height: 1.22;
    margin-bottom: 6px; color: #fff;
    animation: titleIn 1s cubic-bezier(.2,.8,.2,1) both; animation-delay: calc(var(--sd, .35s) - var(--seek, 0s));
}
@keyframes titleIn { from { opacity: 0; transform: translateY(26px); filter: blur(6px); } to { opacity: 1; transform: none; filter: none; } }
.s-title.big { font-size: clamp(1.9rem, 8vw, 5.4rem); letter-spacing: 4px; }

/* ---------- SAHNE 1: AÇILIŞ ---------- */
.sc-1 .s1-rings { position: absolute; inset: 0; display: grid; place-items: center; }
.sc-1 .s1-rings i {
    position: absolute; border: 1px solid rgba(0,180,216,.35); border-radius: 50%;
    width: 160px; height: 160px;
    animation: ringOut 3.4s ease-out infinite; animation-delay: calc(var(--rd, 0s) - var(--seek, 0s));
}
.sc-1 .s1-rings i:nth-child(2) { --rd: 1.1s; }
.sc-1 .s1-rings i:nth-child(3) { --rd: 2.2s; }
@keyframes ringOut { 0% { transform: scale(.4); opacity: .9; } 100% { transform: scale(5); opacity: 0; } }

.sc-1 .s1-logo { position: relative; overflow: hidden; padding: 4px 10px; }
.sc-1 .s1-mono {
    display: block; font-family: 'Cinzel', serif; font-weight: 800;
    font-size: clamp(2.6rem, 11vw, 7rem); letter-spacing: 6px; color: #fff;
    text-shadow: 0 0 42px rgba(0,180,216,.55);
    animation: monoIn 1.5s cubic-bezier(.2,.9,.2,1) both; animation-delay: calc(.2s - var(--seek, 0s));
}
.sc-1 .s1-mono b { color: var(--c-accent); }
@keyframes monoIn {
    0% { opacity: 0; transform: scale(1.5); filter: blur(18px); letter-spacing: 34px; }
    60% { opacity: 1; filter: blur(0); }
    100% { opacity: 1; transform: scale(1); letter-spacing: 6px; }
}
.sc-1 .s1-sweep {
    position: absolute; top: 0; bottom: 0; width: 42%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
    animation: sweep 1.6s ease-in-out both; animation-delay: calc(1.1s - var(--seek, 0s));
}
@keyframes sweep { from { left: -50%; } to { left: 120%; } }

.sc-1 .s1-tag {
    margin-top: 18px; font-size: clamp(.62rem, 1.7vw, .92rem); font-weight: 800;
    color: var(--c-ice);
    animation: tagIn 1.2s ease both; animation-delay: calc(1.4s - var(--seek, 0s));
}
@keyframes tagIn { from { opacity: 0; letter-spacing: 0; } to { opacity: 1; letter-spacing: 6px; } }
.sc-1 .s1-sub {
    margin-top: 12px; font-size: clamp(.62rem, 1.5vw, .82rem); letter-spacing: 3px;
    color: rgba(255,255,255,.5);
    animation: fadeIn 1s ease both; animation-delay: calc(2.2s - var(--seek, 0s));
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------- SAHNE 2: TAKDİM ---------- */
.sc-2 { padding: 5% 6%; }
.s2-wrap { display: flex; align-items: center; gap: clamp(18px, 4vw, 56px); width: 100%; max-width: 940px; }
.s2-photo {
    position: relative; width: clamp(120px, 24vw, 280px); flex-shrink: 0; border-radius: 16px; overflow: hidden;
    animation: photoIn 1.3s cubic-bezier(.2,.9,.2,1) both; animation-delay: calc(.15s - var(--seek, 0s));
}
@keyframes photoIn { from { opacity: 0; transform: translateX(-40px) scale(.94); } to { opacity: 1; transform: none; } }
.s2-photo img { width: 100%; display: block; filter: contrast(1.05) saturate(.95); }
.s2-frame {
    position: absolute; inset: 0; border: 2px solid var(--c-accent); border-radius: 16px; z-index: 3;
    box-shadow: inset 0 0 40px rgba(0,180,216,.25);
}
.s2-mask {
    position: absolute; inset: 0; background: #050D2E; z-index: 2; transform-origin: bottom;
    animation: maskUp 1.1s cubic-bezier(.7,0,.3,1) both; animation-delay: calc(.4s - var(--seek, 0s));
}
@keyframes maskUp { from { transform: scaleY(1); } to { transform: scaleY(0); } }

.s2-info { text-align: left; min-width: 0; }
.s2-kicker {
    font-size: .66rem; font-weight: 800; letter-spacing: 4px; color: var(--c-accent-2);
    animation: kickIn .8s ease both; animation-delay: calc(.7s - var(--seek, 0s));
}
.s2-info h2 {
    font-family: 'Cinzel', serif; font-size: clamp(1.05rem, 3.8vw, 2.7rem); line-height: 1.2;
    margin: 10px 0 14px; color: #fff;
    animation: titleIn 1s cubic-bezier(.2,.8,.2,1) both; animation-delay: calc(.9s - var(--seek, 0s));
}
.s2-roles { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 10px; }
.s2-roles span {
    font-size: clamp(.66rem, 1.6vw, .92rem); font-weight: 700; color: var(--c-ice);
    animation: roleIn .7s ease both; animation-delay: calc(var(--rd) - var(--seek, 0s));
}
.s2-roles span:nth-of-type(1) { --rd: 1.3s; }
.s2-roles span:nth-of-type(2) { --rd: 1.55s; }
.s2-roles span:nth-of-type(3) { --rd: 1.8s; }
.s2-roles i {
    width: 5px; height: 5px; background: var(--c-accent); border-radius: 50%; display: inline-block;
    animation: fadeIn .5s ease both; animation-delay: calc(1.6s - var(--seek, 0s));
}
@keyframes roleIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.s2-info > p {
    font-size: clamp(.66rem, 1.6vw, .92rem); color: rgba(255,255,255,.62); letter-spacing: .5px;
    animation: fadeIn 1s ease both; animation-delay: calc(2.1s - var(--seek, 0s));
}

/* ---------- SAHNE 3: KİNETİK YAZI ---------- */
.sc-3 .s3-grid {
    position: absolute; inset: 0; z-index: -1; opacity: .35;
    background-image: linear-gradient(rgba(0,180,216,.14) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0,180,216,.14) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at 50% 50%, #000 10%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 10%, transparent 70%);
    animation: gridPan 12s linear infinite; animation-delay: calc(0s - var(--seek, 0s));
}
@keyframes gridPan { to { background-position: 60px 60px, 60px 60px; } }

.s3-lines { display: flex; flex-direction: column; gap: clamp(2px, .8vw, 8px); }
.s3-lines span {
    display: block; font-family: 'Cinzel', serif; font-weight: 700;
    font-size: clamp(1.15rem, 5.2vw, 3.4rem); line-height: 1.22; color: #fff;
    animation: lineUp .9s cubic-bezier(.2,.9,.2,1) both;
    animation-delay: calc(var(--sd) - var(--seek, 0s));
}
.s3-lines .l1 { --sd: .25s; }
.s3-lines .l2 { --sd: .75s; color: var(--c-accent); }
.s3-lines .l3 { --sd: 2.1s; }
.s3-lines .l4 { --sd: 2.6s; color: var(--c-accent); }
@keyframes lineUp {
    from { opacity: 0; transform: translateY(38px) rotateX(-45deg); filter: blur(8px); }
    to   { opacity: 1; transform: none; filter: none; }
}

/* ---------- SAHNE 4: MAKRO ANALİZ ---------- */
.s4-charts {
    display: flex; align-items: flex-end; gap: clamp(14px, 3vw, 40px); width: 100%;
    max-width: 820px; margin-top: clamp(14px, 3vw, 32px); height: clamp(90px, 20vh, 170px);
}
.s4-bars { flex: 1; display: flex; align-items: flex-end; gap: clamp(4px, 1vw, 12px); height: 100%; }
.s4-bars i {
    flex: 1; height: 0; border-radius: 5px 5px 0 0;
    background: linear-gradient(180deg, var(--c-accent-2), rgba(0,119,182,.45));
    animation: barGrow .9s cubic-bezier(.2,.9,.2,1) both;
    animation-delay: calc(var(--bd) - var(--seek, 0s));
}
.s4-bars i:nth-child(1) { --bd: .8s; } .s4-bars i:nth-child(2) { --bd: .92s; }
.s4-bars i:nth-child(3) { --bd: 1.04s; } .s4-bars i:nth-child(4) { --bd: 1.16s; }
.s4-bars i:nth-child(5) { --bd: 1.28s; } .s4-bars i:nth-child(6) { --bd: 1.4s; }
.s4-bars i:nth-child(7) { --bd: 1.52s; }
.s4-bars i:nth-child(8) { --bd: 1.64s; background: linear-gradient(180deg, #fff, var(--c-accent)); }
@keyframes barGrow { from { height: 0; opacity: .2; } to { height: var(--h); opacity: 1; } }

.s4-line { flex: 1.2; height: 100%; position: relative; }
.s4-line svg { width: 100%; height: 100%; overflow: visible; }
.s4-stroke {
    stroke-dasharray: 460; stroke-dashoffset: 460;
    filter: drop-shadow(0 0 8px rgba(0,180,216,.7));
    animation: drawLine 2.2s cubic-bezier(.35,.1,.25,1) both;
    animation-delay: calc(1s - var(--seek, 0s));
}
@keyframes drawLine { to { stroke-dashoffset: 0; } }
.s4-area { opacity: 0; animation: fadeIn 1.4s ease both; animation-delay: calc(1.8s - var(--seek, 0s)); }
.s4-dot {
    position: absolute; right: -5px; top: 10%; width: 12px; height: 12px; border-radius: 50%;
    background: #fff; box-shadow: 0 0 0 4px rgba(0,180,216,.4), 0 0 22px var(--c-accent);
    opacity: 0; animation: dotPop .6s ease both; animation-delay: calc(3.1s - var(--seek, 0s));
}
@keyframes dotPop { from { opacity: 0; transform: scale(0); } to { opacity: 1; transform: scale(1); } }

/* ---------- SAHNE 5: RAKAMLAR ---------- */
.s5-nums {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: clamp(18px, 6vw, 70px); margin-top: clamp(18px, 4vw, 44px);
}
.s5-item {
    display: flex; flex-direction: column; align-items: center;
    animation: numIn .8s cubic-bezier(.2,.9,.2,1) both; animation-delay: calc(var(--nd) - var(--seek, 0s));
}
.s5-item:nth-child(1) { --nd: .7s; } .s5-item:nth-child(2) { --nd: .95s; } .s5-item:nth-child(3) { --nd: 1.2s; }
@keyframes numIn { from { opacity: 0; transform: translateY(30px) scale(.85); } to { opacity: 1; transform: none; } }
.s5-val { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.s5-item b {
    font-family: 'Cinzel', serif; font-size: clamp(1.8rem, 7vw, 4.2rem); font-weight: 800; color: #fff;
    line-height: 1; text-shadow: 0 0 30px rgba(0,180,216,.45); font-variant-numeric: tabular-nums;
}
.s5-val i {
    font-family: 'Cinzel', serif; font-style: normal; font-weight: 800;
    font-size: clamp(1rem, 3vw, 2.2rem); color: var(--c-accent);
}
.s5-item small {
    font-size: clamp(.58rem, 1.4vw, .8rem); letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--c-ice); margin-top: 8px;
}

/* ---------- SAHNE 6: HİZMETLER ---------- */
.s6-cards {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(8px, 1.6vw, 20px);
    width: 100%; max-width: 900px; margin-top: clamp(14px, 3vw, 34px);
}
.s6-card {
    background: rgba(255,255,255,.06); border: 1px solid rgba(144,224,239,.20); border-radius: 14px;
    padding: clamp(10px, 2vw, 22px) clamp(6px, 1.4vw, 16px); backdrop-filter: blur(6px);
    animation: cardIn .8s cubic-bezier(.2,.9,.2,1) both; animation-delay: calc(var(--cd) - var(--seek, 0s));
}
.s6-card:nth-child(1) { --cd: .8s; } .s6-card:nth-child(2) { --cd: 1.0s; }
.s6-card:nth-child(3) { --cd: 1.2s; } .s6-card:nth-child(4) { --cd: 1.4s; }
@keyframes cardIn { from { opacity: 0; transform: translateY(34px) rotateX(-24deg); } to { opacity: 1; transform: none; } }
.s6-card i { font-size: clamp(1rem, 2.4vw, 1.7rem); color: var(--c-accent); margin-bottom: 8px; display: block; }
.s6-card h4 { font-family: 'Cinzel', serif; font-size: clamp(.66rem, 1.6vw, 1rem); color: #fff; margin-bottom: 5px; }
.s6-card p { font-size: clamp(.52rem, 1.2vw, .76rem); color: rgba(255,255,255,.62); line-height: 1.45; }

/* ---------- SAHNE 7: MİLLİ VİZYON ---------- */
.s7-map { position: absolute; inset: 0; z-index: -1; }
.s7-map .node {
    position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--c-accent);
    box-shadow: 0 0 0 0 rgba(0,180,216,.55);
    animation: nodePulse 2.6s ease-out infinite; animation-delay: calc(var(--nd) - var(--seek, 0s));
}
@keyframes nodePulse {
    0% { box-shadow: 0 0 0 0 rgba(0,180,216,.6); opacity: .35; }
    50% { opacity: 1; }
    100% { box-shadow: 0 0 0 26px rgba(0,180,216,0); opacity: .35; }
}
.s7-map .n1 { top: 22%; left: 14%; --nd: .2s; }
.s7-map .n2 { top: 68%; left: 22%; --nd: .6s; }
.s7-map .n3 { top: 35%; left: 33%; --nd: 1.0s; }
.s7-map .n4 { top: 78%; left: 46%; --nd: 1.4s; }
.s7-map .n5 { top: 18%; left: 62%; --nd: .4s; }
.s7-map .n6 { top: 58%; left: 72%; --nd: .9s; }
.s7-map .n7 { top: 30%; left: 86%; --nd: 1.3s; }
.s7-map .n8 { top: 82%; left: 88%; --nd: 1.7s; }

.sc-7 .s-title.big {
    background: linear-gradient(120deg, #fff 20%, var(--c-accent) 50%, #fff 80%);
    background-size: 220% auto; -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleIn 1.1s cubic-bezier(.2,.8,.2,1) both, shine 4s linear infinite;
    animation-delay: calc(.35s - var(--seek, 0s)), calc(1.4s - var(--seek, 0s));
}
@keyframes shine { to { background-position: 220% center; } }
.s7-desc {
    margin-top: 16px; max-width: 620px; font-size: clamp(.68rem, 1.7vw, 1rem);
    color: rgba(255,255,255,.72); line-height: 1.65;
    animation: fadeIn 1.2s ease both; animation-delay: calc(1.6s - var(--seek, 0s));
}

/* ---------- SAHNE 8: DEĞERLER ---------- */
.s8-pillars {
    display: flex; justify-content: center; align-items: flex-end;
    gap: clamp(14px, 4vw, 52px); margin-top: clamp(16px, 3vw, 36px);
}
.s8-p {
    display: flex; flex-direction: column; align-items: center; position: relative; padding-top: 10px;
    animation: fadeIn .6s ease both; animation-delay: calc(var(--pd) - var(--seek, 0s));
}
.s8-p:nth-child(1) { --pd: .7s; } .s8-p:nth-child(2) { --pd: 1.0s; } .s8-p:nth-child(3) { --pd: 1.3s; }
.s8-p .col {
    position: absolute; bottom: -18px; width: 100%; height: 3px; border-radius: 3px;
    background: linear-gradient(90deg, transparent, var(--c-accent), transparent);
    transform: scaleX(0); transform-origin: center;
    animation: colGrow .9s cubic-bezier(.2,.9,.2,1) both; animation-delay: calc(var(--pd) - var(--seek, 0s));
}
@keyframes colGrow { to { transform: scaleX(1); } }
.s8-p i {
    font-size: clamp(1.2rem, 3vw, 2.2rem); color: var(--c-accent); margin-bottom: 10px;
    animation: iconDrop .8s cubic-bezier(.2,.9,.2,1) both; animation-delay: calc(var(--pd) - var(--seek, 0s));
}
@keyframes iconDrop { from { opacity: 0; transform: translateY(-24px) scale(.6); } to { opacity: 1; transform: none; } }
.s8-p h4 { font-family: 'Cinzel', serif; font-size: clamp(.8rem, 2.2vw, 1.35rem); color: #fff; margin-bottom: 4px; }
.s8-p p { font-size: clamp(.55rem, 1.3vw, .8rem); color: rgba(255,255,255,.6); }

/* ---------- SAHNE 9: KAPANIŞ ---------- */
.s9-glow {
    position: absolute; width: 60%; aspect-ratio: 1; border-radius: 50%; z-index: -1;
    background: radial-gradient(circle, rgba(0,180,216,.28), transparent 65%);
    animation: glowIn 2s ease both; animation-delay: calc(0s - var(--seek, 0s));
}
@keyframes glowIn { from { opacity: 0; transform: scale(.4); } to { opacity: 1; transform: scale(1); } }
.s9-mono {
    font-family: 'Cinzel', serif; font-weight: 800; font-size: clamp(1.6rem, 6vw, 3.4rem);
    letter-spacing: 5px; color: #fff; margin-bottom: 14px;
    animation: monoIn 1.2s cubic-bezier(.2,.9,.2,1) both; animation-delay: calc(.15s - var(--seek, 0s));
}
.s9-mono b { color: var(--c-accent); }
.sc-9 .s-title { --sd: .7s; }
.s9-desc {
    color: rgba(255,255,255,.68); font-size: clamp(.68rem, 1.7vw, 1rem); margin-top: 8px;
    animation: fadeIn 1s ease both; animation-delay: calc(1.2s - var(--seek, 0s));
}
.s9-actions {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: clamp(14px, 3vw, 28px);
    animation: numIn .8s cubic-bezier(.2,.9,.2,1) both; animation-delay: calc(1.6s - var(--seek, 0s));
}
.s9-actions .btn { padding: 12px 22px; font-size: .84rem; }
.s9-socials {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px;
    margin-top: clamp(14px, 3vw, 26px); font-size: clamp(.56rem, 1.3vw, .78rem);
    color: rgba(255,255,255,.55);
    animation: fadeIn 1s ease both; animation-delay: calc(2.1s - var(--seek, 0s));
}
.s9-socials span { display: inline-flex; align-items: center; gap: 7px; }
.s9-socials i { color: var(--c-accent); }

/* =========================================================
   KONTROLLER
   ========================================================= */
.c-controls {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 90;
    padding: 26px 16px 12px;
    background: linear-gradient(0deg, rgba(1,4,15,.94) 12%, rgba(1,4,15,.55) 60%, transparent);
    transition: opacity .35s ease, transform .35s ease;
}
.c-screen.idle .c-controls { opacity: 0; transform: translateY(12px); pointer-events: none; }
.c-screen.idle { cursor: none; }

/* Zaman çubuğu */
.c-seek { position: relative; padding: 9px 0; cursor: pointer; touch-action: none; }
.c-seek-track { position: relative; height: 5px; background: rgba(255,255,255,.20); border-radius: 5px; }
.c-seek-buffer { position: absolute; inset: 0; width: 100%; background: rgba(255,255,255,.10); border-radius: 5px; }
.c-seek-fill {
    position: absolute; left: 0; top: 0; bottom: 0; width: 0; border-radius: 5px;
    background: linear-gradient(90deg, #0077B6, var(--c-accent)); box-shadow: 0 0 12px rgba(0,180,216,.6);
}
.c-seek-knob {
    position: absolute; top: 50%; left: 0; width: 14px; height: 14px; border-radius: 50%;
    background: #fff; transform: translate(-50%, -50%) scale(0); transition: transform .18s ease;
    box-shadow: 0 0 0 4px rgba(0,180,216,.35);
}
.c-seek:hover .c-seek-knob, .c-seek.dragging .c-seek-knob { transform: translate(-50%, -50%) scale(1); }
.c-seek:hover .c-seek-track { height: 7px; }
.c-seek-track { transition: height .18s ease; }

.c-chapters { position: absolute; left: 0; right: 0; top: 9px; height: 5px; pointer-events: none; }
.c-chapters i {
    position: absolute; top: 0; width: 2px; height: 100%; background: rgba(1,4,15,.85);
}
.c-tip {
    position: absolute; bottom: 30px; transform: translateX(-50%); pointer-events: none;
    background: rgba(1,4,15,.94); border: 1px solid rgba(144,224,239,.28); border-radius: 8px;
    padding: 6px 11px; opacity: 0; transition: opacity .2s ease; white-space: nowrap;
}
.c-seek:hover .c-tip { opacity: 1; }
.c-tip b { display: block; color: #fff; font-size: .74rem; font-family: 'Cinzel', serif; }
.c-tip span { color: var(--c-ice); font-size: .68rem; font-variant-numeric: tabular-nums; }

.c-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 4px; }
.c-left { display: flex; align-items: center; gap: 8px; min-width: 0; flex: 1 1 auto; }
.c-right { display: flex; align-items: center; gap: 8px; flex: 0 0 auto; }
.c-time {
    color: #fff; font-size: .8rem; font-variant-numeric: tabular-nums; margin-left: 6px;
    white-space: nowrap; overflow: hidden; text-overflow: clip; min-width: 0;
}
.c-time b { font-weight: 700; }
.c-sep { font-style: normal; opacity: .55; margin: 0 4px; }
.c-chapter-name {
    color: var(--c-ice); font-size: .76rem; font-weight: 700; letter-spacing: 1px;
    padding-right: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 140px;
}

.c-volume { display: flex; align-items: center; gap: 6px; }
.c-volume input[type="range"] {
    width: 0; opacity: 0; transition: width .28s ease, opacity .28s ease;
    accent-color: var(--c-accent); height: 4px; cursor: pointer;
}
.c-volume:hover input[type="range"], .c-volume input[type="range"]:focus { width: 78px; opacity: 1; }
.c-icon-btn.on { color: var(--c-accent); border-color: rgba(0,180,216,.5); background: rgba(0,180,216,.14); }

/* ---------- BÖLÜM LİSTESİ ---------- */
.c-chapterlist {
    display: flex; gap: 8px; overflow-x: auto; padding: 4px 2px 6px;
    scrollbar-width: thin;
}
.c-chapterlist::-webkit-scrollbar { height: 5px; }
.c-chapterlist::-webkit-scrollbar-thumb { background: rgba(144,224,239,.35); border-radius: 5px; }
.c-chip {
    flex-shrink: 0; display: flex; flex-direction: column; gap: 2px; cursor: pointer;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px; padding: 8px 13px; color: rgba(255,255,255,.72);
    font-size: .74rem; font-weight: 700; transition: all .22s ease; text-align: left;
}
.c-chip small { font-size: .62rem; opacity: .6; font-variant-numeric: tabular-nums; font-weight: 500; }
.c-chip:hover { background: rgba(255,255,255,.14); color: #fff; }
.c-chip.active { background: linear-gradient(135deg, rgba(0,119,182,.55), rgba(0,180,216,.45)); color: #fff; border-color: rgba(0,180,216,.6); }

.c-hint {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px;
    color: rgba(255,255,255,.35); font-size: .68rem; padding: 2px 0 4px;
}
.c-hint b { color: rgba(255,255,255,.65); border: 1px solid rgba(255,255,255,.2); border-radius: 4px; padding: 1px 5px; font-size: .64rem; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
    .s6-cards { grid-template-columns: repeat(2, 1fr); }
    .s6-card:nth-child(3) { --cd: 1.1s; } .s6-card:nth-child(4) { --cd: 1.25s; }
    .c-chapter-name { display: none; }
    .c-hint { display: none; }
}

@media (max-width: 700px) {
    .cinema { padding: 0; align-items: stretch; }
    .cinema-shell { max-width: none; height: 100svh; justify-content: center; gap: 6px; padding: 8px; }
    .c-screen { border-radius: 10px; }
    .c-stage { aspect-ratio: 16 / 10; }
    .c-topbar { padding: 4px 6px; gap: 8px; }
    .c-title { gap: 8px; flex: 1 1 auto; }
    .c-title > div { min-width: 0; }
    .c-title strong { font-size: .8rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .c-title small { font-size: .6rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .c-live { display: none; }
    .c-badge { display: none; }
    .c-icon-btn { width: 36px; height: 36px; font-size: .85rem; }
    .c-icon-btn.play { width: 42px; height: 42px; }
    .c-controls { padding: 20px 10px 8px; }
    .c-time { font-size: .7rem; margin-left: 2px; }
    .c-volume input[type="range"] { display: none; }
    #c-speed { display: none; }
    /* Dikey telefonda ekranı mevcut yüksekliğe yay: sahne, altyazı ve
       kontroller birbirine girmesin */
    .c-stage {
        aspect-ratio: auto;
        height: min(calc(100vh - 150px), 640px);
        height: min(calc(100svh - 150px), 640px);
        min-height: 380px;
    }
    .scene { padding: 10% 5% 26%; }
    .c-subtitle { bottom: 108px; }
    .c-screen.idle .c-subtitle { bottom: 26px; }
    .c-subtitle span { padding: 5px 10px; }
    .s2-wrap { flex-direction: column; text-align: center; gap: 14px; }
    .s2-info { text-align: center; }
    .s2-roles { justify-content: center; }
    .s2-photo { width: clamp(96px, 30vw, 150px); }
    .s4-charts { flex-direction: column; align-items: stretch; height: auto; gap: 12px; }
    .s4-bars { height: 70px; } .s4-line { height: 80px; }
    .s8-pillars { gap: 12px; }
    .c-bar { height: 3%; }
    .c-subtitle { max-width: 92%; }
    .c-chapterlist { padding-bottom: 2px; }
    .c-chip { padding: 6px 10px; font-size: .68rem; }
    .c-chip small { display: none; }
}

@media (max-width: 430px) {
    .s6-cards { grid-template-columns: 1fr 1fr; gap: 7px; }
    .s5-nums { gap: 14px; }
    .s9-actions .btn { padding: 10px 16px; font-size: .74rem; }
    .s9-socials { display: none; }
    .c-sep, #c-dur { display: none; }     /* dar ekranda sadece geçen süre */
    .c-title small { display: none; }
    .c-left, .c-right { gap: 5px; }
    .c-icon-btn { width: 34px; height: 34px; }
}

/* Yatay mobil */
@media (max-height: 480px) and (orientation: landscape) {
    .cinema-shell { gap: 4px; padding: 4px; }
    .c-topbar, .c-chapterlist, .c-hint { display: none; }
    .c-stage { aspect-ratio: auto; height: calc(100svh - 16px); }
}

@media (prefers-reduced-motion: reduce) {
    .c-grain, .s1-rings, .s7-map { display: none; }
}
