/* =================================================================
   EKOFUTBOL — Ana Stil Dosyası
   EkoFutbol Dünya Kupası 2026 Futbol Programı Microsite
   © EkoFutbol — EkoFutbol
   ================================================================= */

/* ---------- TİPOGRAFİ ----------
   KVKK ve performans için harici font yüklemesi kaldırıldı.
   Modern sistem fontları (SF Pro / Segoe UI / Roboto) kullanılıyor.
   Türkçe karakter desteği tüm platformlarda garanti. */

/* ---------- DEĞİŞKENLER ---------- */
:root {
  /* Renkler */
  --c-night: #07111F;
  --c-deep: #0D1B2F;
  --c-deep-2: #11253D;
  --c-line: rgba(244, 240, 232, 0.08);
  --c-line-strong: rgba(244, 240, 232, 0.18);
  --c-gold: #D6A84F;
  --c-gold-soft: rgba(214, 168, 79, 0.14);
  --c-pitch: #4FD1A1;
  --c-pitch-soft: rgba(79, 209, 161, 0.14);
  --c-cream: #F4F0E8;
  --c-light: #F8FAFC;
  --c-muted: rgba(244, 240, 232, 0.62);
  --c-muted-2: rgba(244, 240, 232, 0.42);

  /* Tipografi — sistem font stack'leri (KVKK + hız) */
  --f-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", "Helvetica Neue", system-ui, sans-serif;
  --f-body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, "Helvetica Neue", Roboto, sans-serif;
  --f-mono: ui-monospace, "SF Mono", "Cascadia Code", "JetBrains Mono", "Consolas", "Roboto Mono", monospace;

  /* Alias değişkenler — inline stillerle uyum için */
  --font-display: var(--f-display);
  --font-body: var(--f-body);
  --font-mono: var(--f-mono);
  --text: var(--c-cream);
  --text-soft: var(--c-muted);
  --border: var(--c-line);
  --gold: var(--c-gold);
  --pitch: var(--c-pitch);
  --transition: var(--t-med);

  /* Boşluklar */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;

  /* Geometri */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Geçişler */
  --t-fast: 160ms cubic-bezier(0.2, 0, 0, 1);
  --t-med: 280ms cubic-bezier(0.2, 0, 0, 1);
  --t-slow: 480ms cubic-bezier(0.2, 0, 0, 1);

  /* Container */
  --w-max: 1280px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-cream);
  background: var(--c-night);
  background-image:
    radial-gradient(1200px 600px at 75% -100px, rgba(214, 168, 79, 0.08), transparent 60%),
    radial-gradient(900px 500px at 10% 30%, rgba(79, 209, 161, 0.05), transparent 60%),
    linear-gradient(180deg, var(--c-night) 0%, #050B14 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* İnce film grain tekstürü — atmosfer için */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.5;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

::selection { background: var(--c-gold); color: var(--c-night); }

/* ---------- KONTEYNER ---------- */
.container {
  width: 100%;
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 0 var(--s-5);
  position: relative;
  z-index: 2;
}

/* ---------- TİPOGRAFİ ---------- */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--c-gold);
}

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--c-light);
}

h1 { font-size: clamp(2.6rem, 6.5vw, 5.5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.3rem); }

p { color: var(--c-muted); }

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--c-cream);
  max-width: 60ch;
  line-height: 1.55;
}

/* Vurgu metin — italik display sürüm */
.accent-italic {
  font-style: italic;
  font-weight: 500;
  color: var(--c-gold);
}

/* ---------- BUTONLAR ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--t-med);
  white-space: nowrap;
}

.btn-primary {
  background: var(--c-gold);
  color: var(--c-night);
}
.btn-primary:hover {
  background: var(--c-cream);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(214, 168, 79, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--c-cream);
  border: 1px solid var(--c-line-strong);
}
.btn-ghost:hover {
  background: rgba(244, 240, 232, 0.04);
  border-color: var(--c-gold);
  color: var(--c-gold);
}

.btn-arrow { transition: transform var(--t-med); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ---------- NAVİGASYON ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 17, 31, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--c-line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--c-light);
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--c-deep-2), var(--c-deep));
  border: 1px solid var(--c-line-strong);
}
.brand-mark svg { width: 22px; height: 22px; }

.brand-sub {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--c-gold);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--c-muted);
  position: relative;
  padding: var(--s-2) 0;
  transition: color var(--t-fast);
}
.nav-links a:hover { color: var(--c-cream); }

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--c-gold);
  transition: width var(--t-med);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; gap: var(--s-3); align-items: center; }

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid var(--c-line-strong);
  align-items: center;
  justify-content: center;
}
.menu-btn span {
  width: 18px;
  height: 1.5px;
  background: var(--c-cream);
  position: relative;
}
.menu-btn span::before, .menu-btn span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: var(--c-cream);
}
.menu-btn span::before { top: -6px; }
.menu-btn span::after { top: 6px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: var(--s-9) 0 var(--s-10);
  overflow: hidden;
  isolation: isolate;
}

/* Gece stadyumu atmosferi — spot ışıkları, saha çizgisi, derinlik */
.hero-decoration {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    /* Üst sol spot ışığı */
    radial-gradient(ellipse 60% 40% at 15% -10%,
      rgba(214, 168, 79, 0.18) 0%,
      rgba(214, 168, 79, 0) 65%),
    /* Üst sağ spot ışığı */
    radial-gradient(ellipse 50% 35% at 85% -10%,
      rgba(79, 209, 161, 0.12) 0%,
      rgba(79, 209, 161, 0) 65%),
    /* Orta yumuşak ışık halesi */
    radial-gradient(circle 40% at 50% 30%,
      rgba(244, 240, 232, 0.04) 0%,
      rgba(244, 240, 232, 0) 70%),
    /* Alt yumuşak karartma */
    linear-gradient(180deg,
      transparent 60%,
      rgba(7, 17, 31, 0.6) 100%);
}

/* Saha çizgisi vurguları — alt kenarda */
.hero-decoration::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(79, 209, 161, 0.4) 30%,
    rgba(214, 168, 79, 0.5) 50%,
    rgba(79, 209, 161, 0.4) 70%,
    transparent 100%);
  filter: blur(0.5px);
}

/* Yatay saha çizgileri — abstract */
.hero-decoration::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg,
      transparent 0%, transparent 75%,
      rgba(214, 168, 79, 0.06) 75.2%, rgba(214, 168, 79, 0.06) 75.5%,
      transparent 75.7%);
  background-size: 100% 100%;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--s-8);
  align-items: end;
}

.hero-title {
  margin: var(--s-5) 0 var(--s-5);
  font-size: clamp(2.5rem, 5.8vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.hero-title .line { display: block; }
.hero-title .line.gold {
  color: var(--c-gold);
  text-shadow: 0 0 38px rgba(214, 168, 79, 0.25);
}
.hero-title .line.italic {
  font-style: italic;
  font-weight: 600;
  color: var(--c-cream);
  letter-spacing: -0.035em;
}

.hero-desc {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--c-muted);
  max-width: 52ch;
  margin-bottom: var(--s-6);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: var(--s-3); }

/* Hero data panel — sağdaki saat tablosu */
.hero-panel {
  background: linear-gradient(180deg, rgba(13, 27, 47, 0.65), rgba(13, 27, 47, 0.35));
  border: 1px solid var(--c-line-strong);
  border-radius: var(--r-xl);
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244, 240, 232, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 240, 232, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.4;
}

.hero-panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.hero-panel-title h4 {
  font-size: 1rem;
  color: var(--c-cream);
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-pitch);
}
.live-dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-pitch);
  box-shadow: 0 0 0 0 var(--c-pitch);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(79, 209, 161, 0.5); }
  100% { box-shadow: 0 0 0 12px rgba(79, 209, 161, 0); }
}

.slot-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--s-4);
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--c-line);
  align-items: center;
  position: relative;
  z-index: 1;
}
.slot-row:last-child { border-bottom: 0; }

.slot-time {
  font-family: var(--f-mono);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--c-gold);
  letter-spacing: 0.02em;
}

.slot-name { font-size: 0.95rem; font-weight: 600; color: var(--c-cream); }
.slot-tag {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-muted-2);
}

/* Yan dekoratif element */
.hero-decoration {
  position: absolute;
  right: -100px;
  bottom: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 168, 79, 0.12) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

/* ---------- BÖLÜM BAŞLIKLARI ---------- */
section { padding: var(--s-9) 0; position: relative; }

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s-5);
  align-items: end;
  margin-bottom: var(--s-7);
  border-bottom: 1px solid var(--c-line);
  padding-bottom: var(--s-5);
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.section-title h2 { line-height: 1; }

.section-link {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  transition: gap var(--t-med);
}
.section-link:hover { gap: var(--s-4); }

/* ---------- BUGÜNKÜ MAÇLAR ---------- */
.fixture-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-4);
}

.fixture-card {
  background: linear-gradient(180deg, rgba(13, 27, 47, 0.6), rgba(13, 27, 47, 0.3));
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 1.4rem;
  transition: all var(--t-med);
  position: relative;
  overflow: hidden;
}
.fixture-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-line-strong);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.fixture-card.live {
  border-color: var(--c-pitch);
  background: linear-gradient(180deg, rgba(79, 209, 161, 0.08), rgba(13, 27, 47, 0.4));
}

.fixture-card.featured {
  border-color: var(--c-gold);
  background: linear-gradient(180deg, rgba(214, 168, 79, 0.06), rgba(13, 27, 47, 0.4));
}

.fixture-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-muted-2);
}

.fixture-meta .grup-tag {
  background: var(--c-gold-soft);
  color: var(--c-gold);
  padding: 3px 9px;
  border-radius: 4px;
}

.fixture-teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--s-3);
  align-items: center;
  margin-bottom: var(--s-4);
}

.team {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-light);
}
.team-2 { justify-content: flex-end; flex-direction: row-reverse; }

.team-flag {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--c-deep-2), var(--c-deep));
  display: grid;
  place-items: center;
  font-family: var(--f-mono);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--c-gold);
  border: 1px solid var(--c-line-strong);
}

.vs {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  color: var(--c-muted-2);
  letter-spacing: 0.1em;
}

.fixture-time {
  text-align: center;
  padding: 1.3rem 0;
  background: linear-gradient(180deg, rgba(7, 17, 31, 0.65), rgba(13, 27, 47, 0.5));
  border-radius: var(--r-md);
  margin-bottom: var(--s-3);
  border: 1px solid var(--c-line);
  position: relative;
}

.fixture-time::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
  opacity: 0.5;
}

.fixture-time .tr-saat {
  font-family: var(--f-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--c-gold);
  letter-spacing: -0.025em;
  display: block;
  line-height: 1;
  text-shadow: 0 0 28px rgba(214, 168, 79, 0.28);
}

.fixture-time .tr-label {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-cream);
  opacity: 0.7;
  margin-top: 0.5rem;
  display: block;
}

.fixture-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--c-muted);
  padding-top: var(--s-3);
  border-top: 1px solid var(--c-line);
}
.fixture-foot .yayin-tag {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.yayin-tag.prime { color: var(--c-gold); }
.yayin-tag.gece { color: #7BB8FF; }
.yayin-tag.sabah { color: var(--c-pitch); }

/* ---------- YAYIN AKIŞI ---------- */
.broadcast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--s-4);
}

.broadcast-card {
  background: var(--c-deep);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 1.6rem;
  position: relative;
  overflow: hidden;
  transition: all var(--t-med);
}
.broadcast-card:hover {
  border-color: var(--c-line-strong);
  transform: translateY(-3px);
}

.broadcast-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--c-gold);
}
.broadcast-card.gece::before { background: #7BB8FF; }
.broadcast-card.sabah::before { background: var(--c-pitch); }

.broadcast-time {
  font-family: var(--f-mono);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--c-gold);
  margin-bottom: var(--s-3);
}
.broadcast-card.gece .broadcast-time { color: #7BB8FF; }
.broadcast-card.sabah .broadcast-time { color: var(--c-pitch); }

.broadcast-name {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: var(--s-3);
  color: var(--c-light);
}

.broadcast-desc {
  font-size: 0.92rem;
  color: var(--c-muted);
  line-height: 1.55;
}

/* ---------- DÜNYA KUPASI MERKEZİ ---------- */
.wc-center {
  background: linear-gradient(180deg, rgba(7, 17, 31, 0) 0%, rgba(13, 27, 47, 0.4) 50%, rgba(7, 17, 31, 0) 100%);
  position: relative;
}

.wc-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--s-4);
  margin: var(--s-6) 0;
}

.wc-stat {
  text-align: center;
  padding: 1.4rem 1rem;
  background: rgba(7, 17, 31, 0.55);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
}

.wc-stat-num {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--c-gold);
  display: block;
  line-height: 1;
  letter-spacing: -0.02em;
}

.wc-stat-label {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-muted-2);
  margin-top: var(--s-3);
  display: block;
}

/* WC Stage Timeline */
.wc-stages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--s-3);
  margin-top: var(--s-6);
}

.wc-stage {
  padding: 1.1rem;
  background: rgba(7, 17, 31, 0.4);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  border-left: 3px solid var(--c-gold);
}
.wc-stage h4 {
  font-size: 0.95rem;
  margin-bottom: var(--s-2);
  color: var(--c-cream);
}
.wc-stage .date {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  color: var(--c-gold);
  letter-spacing: 0.04em;
}

/* Ev sahibi şehirler */
.cities {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-6);
}
.city-chip {
  padding: 0.55rem 1rem;
  background: rgba(13, 27, 47, 0.6);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--c-cream);
  transition: all var(--t-fast);
}
.city-chip:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
  cursor: default;
}
.city-chip .flag {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  color: var(--c-muted-2);
  margin-left: var(--s-2);
  letter-spacing: 0.12em;
}

/* ---------- PROGRAM MODÜLLERİ ---------- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-4);
}

.program-card {
  background: var(--c-deep);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
  transition: all var(--t-med);
}

.program-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at 100% 0%, var(--c-gold-soft), transparent 60%);
  opacity: 0;
  transition: opacity var(--t-med);
  pointer-events: none;
}
.program-card:hover::after { opacity: 1; }
.program-card:hover {
  border-color: var(--c-gold);
  transform: translateY(-4px);
}

.program-tag {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--s-3);
}

.program-card h3 {
  margin-bottom: var(--s-3);
  font-size: 1.55rem;
}

.program-time {
  font-family: var(--f-mono);
  font-size: 0.88rem;
  color: var(--c-pitch);
  margin-bottom: var(--s-4);
  letter-spacing: 0.04em;
}

.program-desc {
  color: var(--c-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: var(--s-4);
}

.program-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}
.program-tags span {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  padding: 0.35rem 0.65rem;
  background: rgba(7, 17, 31, 0.5);
  border: 1px solid var(--c-line);
  border-radius: 4px;
  color: var(--c-muted);
}

/* ---------- VIDEO MERKEZİ ---------- */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-4);
}

.video-card {
  background: var(--c-deep);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t-med);
  cursor: pointer;
}
.video-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-line-strong);
}

.video-thumb {
  aspect-ratio: 16/9;
  background:
    radial-gradient(circle at 30% 40%, rgba(214, 168, 79, 0.12), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(79, 209, 161, 0.1), transparent 50%),
    linear-gradient(135deg, var(--c-deep-2), var(--c-night));
  position: relative;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--c-line);
}

.video-play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(7, 17, 31, 0.7);
  backdrop-filter: blur(6px);
  border: 1px solid var(--c-gold);
  display: grid;
  place-items: center;
  transition: all var(--t-fast);
}
.video-card:hover .video-play {
  background: var(--c-gold);
  transform: scale(1.1);
}
.video-card:hover .video-play svg { color: var(--c-night); }
.video-play svg { width: 22px; height: 22px; color: var(--c-gold); transition: color var(--t-fast); }

.video-info { padding: 1.2rem; }

.video-cat {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--s-3);
}

.video-title {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-light);
  margin-bottom: var(--s-3);
  line-height: 1.35;
}

.video-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--c-muted-2);
}

/* ---------- SEZON SONRASI ---------- */
.season-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s-4);
}

.season-tile {
  padding: 1.5rem;
  background: rgba(13, 27, 47, 0.4);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  transition: all var(--t-med);
}
.season-tile:hover {
  background: rgba(13, 27, 47, 0.7);
  border-color: var(--c-pitch);
}
.season-tile h4 {
  font-size: 1.1rem;
  margin-bottom: var(--s-2);
}
.season-tile p {
  font-size: 0.86rem;
  color: var(--c-muted);
}

/* ---------- SPONSOR ALANI ---------- */
.sponsor {
  background:
    radial-gradient(800px 400px at 20% 50%, var(--c-gold-soft), transparent 70%),
    linear-gradient(180deg, rgba(13, 27, 47, 0.5), rgba(7, 17, 31, 0));
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}

.sponsor-lead {
  max-width: 60ch;
  font-size: 1.05rem;
  margin-bottom: var(--s-7);
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--s-3);
}

.sponsor-pack {
  padding: 1.4rem;
  background: rgba(7, 17, 31, 0.4);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  transition: all var(--t-med);
}
.sponsor-pack:hover {
  border-color: var(--c-gold);
  background: rgba(7, 17, 31, 0.6);
}

.pack-num {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  color: var(--c-gold);
  margin-bottom: var(--s-3);
}

.sponsor-pack h4 {
  font-size: 1.15rem;
  margin-bottom: var(--s-3);
}

.sponsor-pack p {
  font-size: 0.88rem;
  color: var(--c-muted);
  line-height: 1.5;
}

/* ---------- İLETİŞİM ---------- */
.contact-card {
  background:
    radial-gradient(600px 300px at 100% 0%, var(--c-pitch-soft), transparent 60%),
    linear-gradient(180deg, var(--c-deep), var(--c-deep-2));
  border: 1px solid var(--c-line-strong);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-7);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.contact-card h2 { margin-bottom: var(--s-4); }
.contact-card p { color: var(--c-muted); margin-bottom: var(--s-5); }

.contact-info { display: grid; gap: var(--s-4); }

.contact-row {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 0.95rem;
}
.contact-row .label {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-muted-2);
  display: block;
  margin-bottom: 4px;
}
.contact-row a { color: var(--c-gold); }
.contact-row a:hover { color: var(--c-cream); }

/* ---------- FOOTER ---------- */
.footer {
  padding: var(--s-7) 0 var(--s-5);
  border-top: 1px solid var(--c-line);
  background: rgba(5, 11, 20, 0.5);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--s-6);
  margin-bottom: var(--s-6);
}

.footer-brand p {
  font-size: 0.88rem;
  max-width: 38ch;
  margin-top: var(--s-4);
}

.footer-col h5 {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--s-4);
  font-weight: 500;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: var(--s-2); }
.footer-col a {
  font-size: 0.88rem;
  color: var(--c-muted);
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--c-cream); }

.footer-bottom {
  padding-top: var(--s-5);
  border-top: 1px solid var(--c-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-3);
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--c-muted-2);
  letter-spacing: 0.05em;
}

.copyright-note { color: var(--c-muted); }
.tz-note { color: var(--c-pitch); }

/* ---------- ANİMASYONLAR ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero starting animations */
.hero .eyebrow { animation: fadeUp 0.7s ease 0.1s both; }
.hero h1 { animation: fadeUp 0.7s ease 0.25s both; }
.hero .hero-desc { animation: fadeUp 0.7s ease 0.4s both; }
.hero .hero-actions { animation: fadeUp 0.7s ease 0.55s both; }
.hero .hero-panel { animation: fadeUp 0.7s ease 0.7s both; }
