/* ============================================================
   Altay Dinç — Sanatçı sitesi
   1. Tokenlar        5. Bölümler
   2. Reset           6. Bileşenler
   3. Tipografi       7. Modal / Menü
   4. Yerleşim        8. Responsive
   ============================================================ */

/* ---------- 1. TOKENLAR ---------- */
:root {
  --bg:        #08080a;
  --bg-2:      #0d0d10;
  --surface:   #131317;
  --surface-2: #1a1a20;
  --line:      rgba(255,255,255,.10);
  --line-2:    rgba(255,255,255,.18);

  --ink:       #f4f2ee;
  --ink-dim:   rgba(244,242,238,.64);
  --ink-faint: rgba(244,242,238,.38);

  --acid:      #c8ff2e;
  --acid-dim:  rgba(200,255,46,.14);
  --flame:     #ff3d1f;

  --nav-h:     72px;
  --pad:       clamp(20px, 5vw, 64px);
  --maxw:      1320px;

  --ease:      cubic-bezier(.2,.7,.2,1);
  --ease-out:  cubic-bezier(.16,1,.3,1);

  --f-display: "Anton", "Haettenschweiler", "Arial Narrow", Impact, sans-serif;
  --f-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

/* ---------- 2. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 24px);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-locked { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }

[hidden] { display: none !important; }

::selection { background: var(--acid); color: #000; }

:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Kaydırma çubuğu */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a2a30; border: 2px solid var(--bg); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #3a3a44; }

/* ---------- 3. TİPOGRAFİ ---------- */
.display {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: .84;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.kicker {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--acid);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--acid);
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(38px, 6.5vw, 88px);
  line-height: .9;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin-top: 18px;
}

.lead { color: var(--ink-dim); font-size: clamp(15px, 1.6vw, 18px); }

/* ---------- 4. YERLEŞİM ---------- */
.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section { padding-block: clamp(72px, 11vw, 150px); position: relative; }
.section--tight { padding-block: clamp(56px, 8vw, 100px); }
.section-head { margin-bottom: clamp(36px, 5vw, 64px); }

/* Grenli doku katmanı */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: .05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- 5. NAVİGASYON ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 900;
  display: flex;
  align-items: center;
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(8,8,10,.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}

.nav__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.brand__mark {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: var(--acid);
  color: #000;
  font-family: var(--f-display);
  font-size: 20px;
  line-height: 1;
  padding-top: 2px;
}
.brand__name {
  font-family: var(--f-display);
  font-size: 21px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nav__links { display: flex; gap: 4px; }
.nav__link {
  position: relative;
  padding: 8px 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-dim);
  transition: color .2s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 12px; right: 12px; bottom: 2px;
  height: 1.5px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--ink); }

.btn-ghost, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 42px;
  padding-inline: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn {
  background: var(--acid);
  color: #000;
}
.btn:hover { background: #fff; transform: translateY(-2px); }
.btn-ghost {
  border: 1px solid var(--line-2);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--acid); color: var(--acid); }
.btn--lg { height: 54px; padding-inline: 30px; font-size: 14px; }

.burger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .2s;
}
.burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobil tam ekran menü */
.menu {
  position: fixed;
  inset: 0;
  z-index: 890;
  background: var(--bg);
  padding: calc(var(--nav-h) + 32px) var(--pad) 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(-100%);
  transition: transform .5s var(--ease-out);
  visibility: hidden;
}
.menu.is-open { transform: translateY(0); visibility: visible; }
.menu__list { display: flex; flex-direction: column; gap: 2px; }
.menu__link {
  font-family: var(--f-display);
  font-size: clamp(34px, 11vw, 62px);
  text-transform: uppercase;
  line-height: 1.08;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding-block: 10px;
}
.menu__link span {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--acid);
}
.menu__foot { display: flex; flex-wrap: wrap; gap: 10px; padding-top: 28px; }

/* ---------- 6. HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 72px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 78% 12%, rgba(200,255,46,.16), transparent 58%),
    radial-gradient(90% 70% at 12% 88%, rgba(255,61,31,.13), transparent 62%),
    linear-gradient(180deg, #0b0b0e 0%, #08080a 55%, #060608 100%);
  background-size: cover;
  background-position: center 28%;
}

/* Poster katmanı: klip inerken ekranda duran görsel. Klip oynamaya
   hazır olunca yumuşakça çekilir; klip hiç gelmezse kalıcı olarak kalır. */
.hero__poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 26%;
  transition: opacity 1.4s var(--ease-out);
}
.hero__poster.is-out { opacity: 0; }

/* Arka plan klibi. Yüklenemezse opacity 0 kalır ve altındaki
   poster görünür — sayfa hiçbir durumda boş kalmaz. */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s var(--ease-out);
}
.hero__video.is-ready { opacity: .5; }

/* Yazının okunabilirliğini garanti eden karartma katmanı */
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,6,8,.93) 0%, rgba(6,6,8,.66) 48%, rgba(6,6,8,.3) 100%),
    linear-gradient(180deg, rgba(6,6,8,.6) 0%, transparent 26%, transparent 52%, var(--bg) 100%);
}

/* Ses aç/kapa — hero'nun sağ üstü her zaman boş kalan tek köşe */
.hero__sound {
  position: absolute;
  top: calc(var(--nav-h) + 18px);
  right: var(--pad);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 36px;
  padding-inline: 14px;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  background: rgba(8,8,10,.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.hero__sound:hover { border-color: var(--acid); color: var(--acid); }
.hero__sound-bars { display: flex; align-items: flex-end; gap: 2px; height: 12px; }
.hero__sound-bars i { width: 2px; height: 3px; background: currentColor; }
.hero__sound.is-on .hero__sound-bars i { animation: eq .8s ease-in-out infinite alternate; }
.hero__sound.is-on .hero__sound-bars i:nth-child(2) { animation-delay: .18s; }
.hero__sound.is-on .hero__sound-bars i:nth-child(3) { animation-delay: .36s; }
@keyframes eq { from { height: 3px; } to { height: 12px; } }

/* Arka plandaki dev harfler */
.hero__ghost {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  font-family: var(--f-display);
  font-size: clamp(180px, 34vw, 560px);
  line-height: .8;
  letter-spacing: -.03em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.055);
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.hero__inner { position: relative; z-index: 2; width: 100%; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 10px;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  color: var(--ink-dim);
  transition: border-color .25s, color .25s;
}
.hero__badge:hover { border-color: var(--acid); color: var(--ink); }
.hero__badge i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 0 rgba(200,255,46,.6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 9px rgba(200,255,46,0); }
  100% { box-shadow: 0 0 0 0 rgba(200,255,46,0); }
}

.hero__title {
  font-family: var(--f-display);
  font-size: clamp(64px, 15.5vw, 240px);
  line-height: .9;
  letter-spacing: -.025em;
  text-transform: uppercase;
  margin: 26px 0 0;
}
.hero__title .l2 {
  display: block;
  padding-left: clamp(0px, 8vw, 150px);
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero__sub { max-width: 46ch; color: var(--ink-dim); font-size: 15.5px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero__scroll {
  position: absolute;
  bottom: 26px;
  right: var(--pad);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero__scroll i {
  width: 1px; height: 44px;
  background: linear-gradient(var(--acid), transparent);
  animation: drop 1.8s var(--ease) infinite;
}
@keyframes drop {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- 7. KAYAN YAZI ---------- */
.ticker {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  padding-block: 14px;
  display: flex;
}
.ticker__track {
  display: flex;
  gap: 40px;
  padding-right: 40px;
  flex: 0 0 auto;
  animation: slide 34s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-100%); } }
.ticker__item {
  display: flex;
  align-items: center;
  gap: 40px;
  font-family: var(--f-display);
  font-size: 24px;
  letter-spacing: .01em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink-dim);
}
.ticker__item::after {
  content: "";
  width: 9px; height: 9px;
  background: var(--acid);
  transform: rotate(45deg);
  flex: 0 0 auto;
}

/* ---------- 8. SON ÇIKAN ---------- */
.release { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(28px, 5vw, 72px); align-items: start; }

.cover {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #111;
  border: 1px solid var(--line);
}
.cover__art { position: absolute; inset: 0; }
.cover__art img { width: 100%; height: 100%; object-fit: cover; }
.cover__gen {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 12%;
}
.cover__gen::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(115deg, rgba(0,0,0,.35) 0 2px, transparent 2px 9px);
  mix-blend-mode: multiply;
}
.cover__gen span {
  position: relative;
  font-family: var(--f-display);
  font-size: clamp(24px, 4.6vw, 58px);
  line-height: .86;
  text-transform: uppercase;
  text-align: center;
  color: #06060a;
  mix-blend-mode: hard-light;
  letter-spacing: -.01em;
}
.cover__tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 3;
  background: #000;
  color: var(--acid);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .18em;
  padding: 6px 11px;
}

.release__title {
  font-family: var(--f-display);
  font-size: clamp(38px, 5.4vw, 76px);
  line-height: .9;
  text-transform: uppercase;
  margin-top: 14px;
}
.release__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.release__facts span { display: flex; align-items: center; gap: 18px; }
.release__facts span + span::before { content: "/"; color: var(--line-2); }
.release__credit {
  margin-top: 12px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--acid);
}
.release__desc { margin-top: 20px; color: var(--ink-dim); max-width: 54ch; }
.release__links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding-inline: 16px;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-dim);
  transition: all .22s var(--ease);
}
.pill:hover { background: var(--acid); border-color: var(--acid); color: #000; }

/* Parça listesi */
.tracks { margin-top: 32px; border-top: 1px solid var(--line); }
.track {
  display: grid;
  grid-template-columns: 42px 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 13px 8px;
  border-bottom: 1px solid var(--line);
  transition: background .2s, padding-left .25s var(--ease);
  text-align: left;
  width: 100%;
}
.track:hover { background: rgba(255,255,255,.035); padding-left: 16px; }
.track__no { font-family: var(--f-mono); font-size: 11px; color: var(--ink-faint); }
.track__name { font-weight: 600; font-size: 15px; }
.track__feat { color: var(--ink-faint); font-weight: 400; font-size: 13px; }
.track__dur { font-family: var(--f-mono); font-size: 12px; color: var(--ink-faint); }
.track__play {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  color: var(--ink-dim);
  transition: all .2s;
}
.track:hover .track__play { border-color: var(--acid); color: var(--acid); }
.track.is-playing { background: var(--acid-dim); }
.track.is-playing .track__play { background: var(--acid); border-color: var(--acid); color: #000; }
.track.is-playing .track__name { color: var(--acid); }

/* ---------- 9. BİYOGRAFİ ---------- */
.bio { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 6fr); gap: clamp(28px, 5vw, 76px); align-items: start; }

.portrait {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #24242a, #0a0a0c);
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait__gen { position: absolute; inset: 0; display: grid; place-items: center; }
.portrait__gen::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,.045) 0 1px, transparent 1px 5px);
}
.portrait__gen span {
  font-family: var(--f-display);
  font-size: clamp(70px, 12vw, 150px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,255,46,.5);
  letter-spacing: -.02em;
}
.portrait__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,.85));
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.bio__text p { color: var(--ink-dim); margin-top: 18px; max-width: 62ch; }
.bio__text p:first-child { margin-top: 0; font-size: 17px; color: var(--ink); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 40px;
  background: var(--line);
  border: 1px solid var(--line);
}
.stat { background: var(--bg); padding: 22px 18px; }
.stat__num {
  font-family: var(--f-display);
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1;
  color: var(--acid);
}
.stat__label {
  margin-top: 8px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* Zaman çizelgesi */
.timeline { margin-top: 48px; border-top: 1px solid var(--line); }
.tl {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  transition: background .25s;
}
.tl:hover { background: rgba(255,255,255,.03); }
.tl__year {
  font-family: var(--f-display);
  font-size: 26px;
  color: var(--acid);
  line-height: 1;
}
.tl__title { font-weight: 700; font-size: 15.5px; }
.tl__text { color: var(--ink-faint); font-size: 14px; margin-top: 3px; }

/* ---------- 10. DİSKOGRAFİ ---------- */
.grid-albums {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
}
.album { display: block; }
.album .cover { transition: transform .4s var(--ease-out), border-color .3s; }
.album:hover .cover { transform: translateY(-6px); border-color: var(--acid); }
.album__meta { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-top: 14px; }
.album__title { font-family: var(--f-display); font-size: 21px; text-transform: uppercase; line-height: 1.05; }
.album__year { font-family: var(--f-mono); font-size: 11px; color: var(--ink-faint); }
.album__sub {
  margin-top: 4px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ---------- 11. VİDEO ---------- */
.grid-videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(16px, 2.4vw, 26px);
}
.video {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #101014;
  display: block;
  width: 100%;
  text-align: left;
}
.video__bg { position: absolute; inset: 0; transition: transform .6s var(--ease-out); }
.video__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.035) 0 1px, transparent 1px 7px);
}
.video:hover .video__bg { transform: scale(1.06); }
.video::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.82));
}
.video__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
}
.video__play i {
  width: 62px; height: 62px;
  display: grid; place-items: center;
  border: 1.5px solid rgba(255,255,255,.6);
  border-radius: 50%;
  background: rgba(0,0,0,.3);
  backdrop-filter: blur(4px);
  transition: all .3s var(--ease);
}
.video:hover .video__play i { background: var(--acid); border-color: var(--acid); color: #000; transform: scale(1.08); }
.video__info {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
}
.video__bg img { width: 100%; height: 100%; object-fit: cover; }
.video__title { font-family: var(--f-display); font-size: 24px; text-transform: uppercase; line-height: 1; display: block; }
.video__credit {
  display: block;
  margin-top: 6px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--acid);
}
.video__stat { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .1em; color: var(--ink-faint); text-align: right; }

/* ---------- 12. TURNE ---------- */
.tour { border-top: 1px solid var(--line); }
.show {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  padding: 22px 10px;
  border-bottom: 1px solid var(--line);
  transition: background .25s var(--ease), padding-left .3s var(--ease);
}
.show:hover { background: rgba(255,255,255,.035); padding-left: 20px; }
.show__date { text-align: center; border-right: 1px solid var(--line); padding-right: 14px; }
.show__day { font-family: var(--f-display); font-size: 34px; line-height: .9; }
.show__month { font-family: var(--f-mono); font-size: 10px; letter-spacing: .16em; color: var(--acid); }
.show__city { font-family: var(--f-display); font-size: clamp(22px, 3vw, 34px); text-transform: uppercase; line-height: 1; }
.show__venue { color: var(--ink-faint); font-size: 13.5px; margin-top: 5px; }
.show__cta { display: flex; align-items: center; gap: 14px; }
.tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--line-2);
  color: var(--ink-faint);
}
.tag--few { border-color: var(--flame); color: var(--flame); }

/* Henüz tarih yokken turne bölümünün hâli */
.empty-note {
  border: 1px dashed var(--line-2);
  padding: clamp(28px, 4vw, 48px);
  text-align: center;
  color: var(--ink-dim);
  font-size: 15px;
}
.show--soldout { opacity: .5; }
.show--soldout:hover { background: none; padding-left: 10px; }

/* ---------- 13. GALERİ ---------- */
/* auto-fit: fotoğraf sayısı azken boş sütunlar çöker, kalanlar satırı doldurur.
   Fotoğraf çoğaldıkça kendiliğinden 4 sütunlu mozaiğe döner. */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  grid-auto-rows: clamp(190px, 25vw, 300px);
  grid-auto-flow: dense;
  gap: 12px;
}
.shot {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #101014;
  display: block;
  width: 100%;
  padding: 0;
}
.shot--tall { grid-row: span 2; }
.shot--wide { grid-column: span 2; }
.shot__bg { position: absolute; inset: 0; transition: transform .7s var(--ease-out); }
.shot__bg img { width: 100%; height: 100%; object-fit: cover; }
.shot:hover .shot__bg { transform: scale(1.08); }

/* Fotoğraf yokken boş kutu gibi durmasın: ince çapraz doku + işaret.
   Gerçek fotoğraf varsa doku uygulanmaz. */
.shot__bg:not(:has(img))::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.03) 0 1px, transparent 1px 8px);
}
.shot__mark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-size: 54px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.14);
  transition: -webkit-text-stroke-color .35s;
  pointer-events: none;
}
.shot:hover .shot__mark { -webkit-text-stroke-color: rgba(200,255,46,.45); }

.shot__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 34px 14px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,.9));
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-align: left;
  transition: color .3s var(--ease);
}
.shot:hover .shot__cap { color: var(--acid); }

/* ---------- 14. BASINDA ---------- */
.press-strip { background: var(--bg-2); border-block: 1px solid var(--line); }
.press-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1px; background: var(--line); }
.quote { background: var(--bg-2); padding: clamp(28px, 4vw, 46px) clamp(20px, 3vw, 38px); }
.quote p {
  font-family: var(--f-display);
  font-size: clamp(19px, 2.1vw, 26px);
  line-height: 1.18;
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.quote cite {
  display: block;
  margin-top: 16px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--acid);
}

/* ---------- 15. İLETİŞİM ---------- */
.contact { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.channels { margin-top: 34px; border-top: 1px solid var(--line); }
.channel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  transition: padding-left .25s var(--ease), color .2s;
}
a.channel:hover { padding-left: 12px; color: var(--acid); }
.channel__label { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); }
.channel__value { font-weight: 600; font-size: 15px; }

.form { display: grid; gap: 14px; }
.field { display: grid; gap: 7px; }
.field label {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.field input, .field textarea, .field select {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 13px 15px;
  font-size: 15px;
  transition: border-color .2s, background .2s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--acid);
  background: var(--surface-2);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__note { font-size: 12.5px; color: var(--ink-faint); }
.form .btn { justify-self: start; padding-inline: 42px; }

/* ---------- 16. FOOTER ---------- */
.footer { border-top: 1px solid var(--line); padding-block: 56px 34px; }
.footer__big {
  font-family: var(--f-display);
  font-size: clamp(58px, 17vw, 260px);
  line-height: .78;
  text-transform: uppercase;
  letter-spacing: -.03em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.16);
  text-align: center;
  user-select: none;
}
.footer__bar {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--ink-faint);
}
.socials { display: flex; gap: 8px; }
.social {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .04em;
  color: var(--ink-dim);
  transition: all .25s var(--ease);
}
.social:hover { background: var(--acid); border-color: var(--acid); color: #000; transform: translateY(-3px); }

/* ---------- 17. MODAL ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 950;
  display: grid;
  place-items: center;
  padding: var(--pad);
  background: rgba(4,4,6,.92);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__box {
  width: min(1000px, 100%);
  transform: scale(.96);
  transition: transform .35s var(--ease-out);
}
.modal.is-open .modal__box { transform: scale(1); }
.modal__close {
  position: absolute;
  top: 20px; right: 20px;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  transition: all .2s;
}
.modal__close:hover { background: var(--acid); border-color: var(--acid); color: #000; }
.modal__frame { aspect-ratio: 16/9; background: #000; border: 1px solid var(--line); }
.modal__frame iframe { width: 100%; height: 100%; border: 0; }
.modal__empty {
  height: 100%;
  display: grid;
  place-content: center;
  gap: 10px;
  text-align: center;
  padding: 30px;
}
.modal__empty strong { font-family: var(--f-display); font-size: 26px; text-transform: uppercase; }
.modal__empty code {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--acid);
  background: rgba(200,255,46,.1);
  padding: 3px 8px;
}
.modal__cap { margin-top: 14px; font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); }
.modal__img { aspect-ratio: 3/2; border: 1px solid var(--line); position: relative; overflow: hidden; }

/* ---------- 18. ÇALAR (alt bar) ---------- */
.player {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 880;
  background: rgba(13,13,16,.94);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform .45s var(--ease-out);
}
.player.is-visible { transform: translateY(0); }
/* Çalar açıkken sayfanın son satırı bar altında kalmasın */
body.has-player { padding-bottom: 68px; }
.player__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 12px var(--pad);
  display: flex;
  align-items: center;
  gap: 16px;
}
.player__btn {
  width: 42px; height: 42px;
  flex: 0 0 auto;
  display: grid; place-items: center;
  background: var(--acid);
  color: #000;
  border-radius: 50%;
  transition: transform .2s;
}
.player__btn:hover { transform: scale(1.06); }
.player__info { min-width: 0; flex: 0 0 auto; max-width: 34%; }
.player__title { font-weight: 700; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player__sub { font-family: var(--f-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); }
.player__bar { flex: 1; height: 3px; background: var(--line); position: relative; cursor: pointer; }
.player__fill { position: absolute; inset: 0 100% 0 0; background: var(--acid); }
.player__time { font-family: var(--f-mono); font-size: 11px; color: var(--ink-faint); flex: 0 0 auto; }
.player__close { flex: 0 0 auto; color: var(--ink-faint); padding: 6px; }
.player__close:hover { color: var(--ink); }

/* ---------- 19. TOAST ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 96px;
  z-index: 990;
  transform: translate(-50%, 20px);
  background: var(--acid);
  color: #000;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 20px;
  opacity: 0;
  pointer-events: none;
  transition: all .3s var(--ease-out);
  max-width: calc(100vw - 40px);
  text-align: center;
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }

/* ---------- 20. AÇILIŞ ANİMASYONU ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- 21. RESPONSIVE ---------- */
@media (max-width: 1080px) {
  .release, .bio, .contact { grid-template-columns: 1fr; }
  .bio .portrait { max-width: 420px; }
  .release .cover { max-width: 460px; }   /* tek sütuna düşünce kapak dev olmasın */
}

@media (max-width: 860px) {
  .nav__links, .navCta { display: none; }
  .nav .btn { display: none; }
  .burger { display: flex; }
  .hero__title .l2 { padding-left: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-auto-rows: 180px; }
  .shot--wide, .shot--tall { grid-column: auto; grid-row: auto; }
  .hero__scroll { display: none; }
  .show { grid-template-columns: 66px 1fr; row-gap: 14px; }
  .show__cta { grid-column: 1 / -1; justify-content: flex-start; }
  .footer__bar { flex-direction: column; align-items: flex-start; }
  .player__info { max-width: none; flex: 1; }
  .player__bar, .player__time { display: none; }
}

@media (max-width: 560px) {
  .track { grid-template-columns: 30px 1fr auto; }
  .track__play { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .tl { grid-template-columns: 62px 1fr; gap: 14px; }
  .tl__year { font-size: 21px; }
}

/* ---------- 22. HAREKET AZALTMA ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- 23. YAZDIRMA ---------- */
@media print {
  .nav, .player, .grain, .hero__scroll, .ticker, .modal { display: none !important; }
  body { background: #fff; color: #000; }
}
