/* =================================================================
   EKOFUTBOL — SECTION STİLLERİ
   Türkiye Maçları kutusu, Ev Sahibi Şehirler, Grup Merkezi
   ================================================================= */

/* ---------- TÜRKİYE MAÇLARI KUTUSU ---------- */
.tr-mac-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.tr-mac-card {
  position: relative;
  padding: 1.6rem 1.5rem 1.4rem;
  background: linear-gradient(135deg, rgba(227, 10, 23, 0.08), rgba(13, 27, 47, 0.55));
  border: 1px solid rgba(227, 10, 23, 0.25);
  border-radius: 18px;
  overflow: hidden;
  transition: transform var(--t-med), border-color var(--t-med);
}

.tr-mac-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #E30A17, #D6A84F);
}

.tr-mac-card:hover {
  transform: translateY(-3px);
  border-color: var(--c-gold);
}

.tr-mac-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.78rem;
}

.tr-mac-tag {
  font-family: var(--f-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-cream);
  font-weight: 600;
}

.tr-mac-date {
  font-family: var(--f-mono);
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tr-mac-teams {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.tr-mac-team {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-cream);
  letter-spacing: -0.01em;
  flex: 1;
}

.tr-mac-team:last-child {
  text-align: right;
}

.tr-mac-vs {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--c-muted-2);
  letter-spacing: 0.15em;
}

.tr-mac-time {
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 1rem;
}

.tr-mac-saat {
  display: block;
  font-family: var(--f-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--c-gold);
  letter-spacing: -0.02em;
  line-height: 1;
}

.tr-mac-label {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.4rem;
}

.tr-mac-foot {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--c-muted);
  gap: 0.5rem;
}

.tr-mac-foot strong {
  color: var(--c-cream);
  font-family: var(--f-mono);
  font-weight: 600;
}

.tr-mac-status {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.3rem 0.7rem;
  background: rgba(214, 168, 79, 0.12);
  color: var(--c-gold);
  font-family: var(--f-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
}

.tr-mac-status.confirmed {
  background: var(--c-pitch-soft);
  color: var(--c-pitch);
}

/* ---------- EV SAHİBİ ŞEHİRLER ---------- */
.sehir-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 2rem;
}

.sehir-filter-btn {
  appearance: none;
  background: rgba(13, 27, 47, 0.55);
  color: var(--c-muted);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--t-med);
}

.sehir-filter-btn:hover {
  color: var(--c-cream);
  border-color: var(--c-gold);
}

.sehir-filter-btn.active {
  background: var(--c-gold);
  color: var(--c-night);
  border-color: var(--c-gold);
  font-weight: 600;
}

.sehir-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.1rem;
}

.sehir-card {
  padding: 1.4rem 1.3rem 1.2rem;
  background: linear-gradient(180deg, rgba(13, 27, 47, 0.6), rgba(7, 17, 31, 0.4));
  border: 1px solid var(--c-line);
  border-radius: 16px;
  transition: transform var(--t-med), border-color var(--t-med);
}

.sehir-card:hover {
  transform: translateY(-3px);
  border-color: var(--c-pitch);
}

.sehir-card-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
}

.sehir-bayrak {
  font-size: 1.4rem;
  line-height: 1;
}

.sehir-ad {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-cream);
  letter-spacing: -0.01em;
  margin: 0;
}

.sehir-stadyum {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  color: var(--c-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.7rem;
}

.sehir-desc {
  font-size: 0.85rem;
  color: var(--c-muted);
  line-height: 1.5;
  margin: 0 0 0.9rem;
}

.sehir-meta {
  display: flex;
  gap: 0.8rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--c-line);
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--c-muted-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- GRUP MERKEZİ ---------- */
.grup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.grup-card {
  padding: 1.3rem 1.2rem 1.1rem;
  background: linear-gradient(180deg, rgba(13, 27, 47, 0.55), rgba(7, 17, 31, 0.3));
  border: 1px solid var(--c-line);
  border-radius: 16px;
  transition: border-color var(--t-med);
}

.grup-card:hover {
  border-color: var(--c-gold);
}

.grup-card-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--c-line);
}

.grup-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--c-gold);
  color: var(--c-night);
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 800;
}

.grup-label {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.grup-takimlar {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.grup-takimlar li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0;
  border-bottom: 1px dashed rgba(244, 240, 232, 0.06);
  font-size: 0.92rem;
  color: var(--c-cream);
}

.grup-takimlar li:last-child {
  border-bottom: none;
}

.grup-takimlar li.team-tbd {
  color: var(--c-muted-2);
  font-style: italic;
}

.team-flag-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: var(--c-deep);
  color: var(--c-muted);
  font-size: 0.75rem;
  font-family: var(--f-mono);
}

.grup-card-foot {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  color: var(--c-muted-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  padding-top: 0.5rem;
  border-top: 1px solid var(--c-line);
}

/* ---------- DOĞRULAMA UYARI ROZETLERİ ---------- */
.dogrulama-uyari {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  font-family: var(--f-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 3px;
  background: rgba(214, 168, 79, 0.12);
  color: var(--c-gold);
}

.dogrulama-uyari.senaryo { background: rgba(214, 168, 79, 0.18); }
.dogrulama-uyari.sablon  { background: rgba(244, 240, 232, 0.08); color: var(--c-muted); }
.dogrulama-uyari.confirmed { background: var(--c-pitch-soft); color: var(--c-pitch); }

/* ---------- MOBİL ---------- */
@media (max-width: 720px) {
  .tr-mac-saat { font-size: 2rem; }
  .tr-mac-team { font-size: 1rem; }
  .sehir-grid, .grup-grid { gap: 0.8rem; }
}


/* ---------- SENARYO UYARI BANNER'I (v1.2) ---------- */
.senaryo-banner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  margin-bottom: 2rem;
  background:
    linear-gradient(90deg, rgba(227, 10, 23, 0.10), rgba(214, 168, 79, 0.06));
  border: 1px solid rgba(214, 168, 79, 0.22);
  border-left: 4px solid #E30A17;
  border-radius: 12px;
}

.senaryo-banner-tag {
  flex-shrink: 0;
  display: inline-block;
  padding: 0.35rem 0.7rem;
  background: #E30A17;
  color: #fff;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  border-radius: 4px;
  align-self: center;
}

.senaryo-banner p {
  margin: 0;
  color: var(--c-cream);
  font-size: 0.92rem;
  line-height: 1.55;
}

.senaryo-banner strong {
  color: var(--c-gold);
  font-weight: 700;
}

/* ---------- KART POLISH (v1.2) ---------- */
.sehir-card,
.grup-card,
.tr-mac-card {
  position: relative;
}

/* Sehir kartı premium hover — saha çizgisi alt vurgusu */
.sehir-card::after {
  content: "";
  position: absolute;
  left: 1.3rem; right: 1.3rem;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-pitch), transparent);
  opacity: 0;
  transition: opacity var(--t-med);
}

.sehir-card:hover::after { opacity: 1; }

/* Grup kartı premium — sol kenar gold çubuğu (hover) */
.grup-card {
  transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
}

.grup-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(7, 17, 31, 0.45);
}

.grup-letter {
  box-shadow: 0 4px 14px rgba(214, 168, 79, 0.3);
}

/* Türkiye maç kartı — daha güçlü hover + senaryo durumunda kırmızı vurgu */
.tr-mac-card.senaryo {
  border-color: rgba(227, 10, 23, 0.3);
}

.tr-mac-card.senaryo::before {
  background: linear-gradient(180deg, #E30A17, #D6A84F);
}

.tr-mac-card:hover {
  box-shadow: 0 22px 44px rgba(227, 10, 23, 0.12);
}

/* Pasif modül rozeti */
.yakinda-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  background: rgba(214, 168, 79, 0.14);
  color: var(--c-gold);
  font-family: var(--f-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 4px;
  border: 1px solid rgba(214, 168, 79, 0.22);
}

.yakinda-badge::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--c-gold);
  box-shadow: 0 0 8px rgba(214, 168, 79, 0.7);
  animation: pulse-soft 2.4s ease-in-out infinite;
}

@keyframes pulse-soft {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

/* Footer kaynak/doğrulama notu */
.footer-source-note {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  background: rgba(13, 27, 47, 0.4);
  border: 1px solid var(--c-line);
  border-radius: 8px;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--c-muted);
  line-height: 1.5;
}

.footer-source-note strong {
  color: var(--c-gold);
  letter-spacing: 0.08em;
}

/* ---------- MOBİL OPTİMİZASYON (v1.2) ---------- */
@media (max-width: 720px) {
  .senaryo-banner {
    flex-direction: column;
    gap: 0.7rem;
    padding: 1rem 1.1rem;
  }
  .senaryo-banner-tag {
    align-self: flex-start;
    font-size: 0.65rem;
  }
  .senaryo-banner p { font-size: 0.86rem; }

  .tr-mac-grid, .sehir-grid, .grup-grid {
    gap: 0.85rem;
  }
  .tr-mac-card { padding: 1.3rem 1.2rem 1.1rem; }
  .sehir-card  { padding: 1.2rem 1.1rem 1rem; }
  .grup-card   { padding: 1.1rem 1rem 0.9rem; }

  .tr-mac-saat { font-size: 1.8rem; }
  .tr-mac-team { font-size: 0.95rem; }
  .sehir-ad    { font-size: 1.05rem; }
  .grup-letter { width: 32px; height: 32px; font-size: 1.05rem; }

  .sehir-filter-bar {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.3rem;
  }
  .sehir-filter-btn {
    flex-shrink: 0;
    font-size: 0.8rem;
    padding: 0.45rem 0.95rem;
  }
}


/* ---------- v1.3 MOBİL: SENARYO İLK BAKIŞTA GÖRÜNÜR ---------- */
@media (max-width: 720px) {
  .hero {
    padding: 2rem 0 1.5rem !important;
  }
  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .hero-panel {
    order: 2;
    padding: 1.2rem !important;
  }
  /* Türkiye section'ı ilk scroll içinde — büyük başlık küçültülmüş */
  #turkiye {
    padding-top: 1rem;
  }
  #turkiye .section-title {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    margin-top: 0.5rem;
  }
  #turkiye .section-lead {
    font-size: 0.95rem;
  }
  /* Banner mobilde de pulse'lansın (sağ üst köşeden hafif glow) */
  .senaryo-banner {
    animation: senaryo-glow 4s ease-in-out infinite;
  }
}

@keyframes senaryo-glow {
  0%, 100% { box-shadow: 0 0 0 rgba(227, 10, 23, 0); }
  50% { box-shadow: 0 0 22px rgba(227, 10, 23, 0.18); }
}


/* ---------- v1.3 SVG GÖRSEL ENTEGRASYONU ---------- */
.hero-stadium-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  mix-blend-mode: screen;
  pointer-events: none;
}

/* EkoFutbol logo yer tutucu - sponsor section'ında veya nav ekstrasında */
.ekoturk-logo-mark {
  display: inline-block;
  width: 120px;
  height: 30px;
  background-image: url('../img/ekoturk/ekoturk-logo.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  vertical-align: middle;
}

/* Stadyum atmosfer dekoratif görsel — sehir kartlarına ince üst şerit */
.sehir-card {
  background-image: url('../img/icons/stadium-atmosphere.svg');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% 70px;
  padding-top: 76px !important;
}

.sehir-card .sehir-card-head {
  position: relative;
  z-index: 1;
}

/* Video poster — video kartlarda fallback */
.video-poster-fallback {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-image: url('../img/icons/video-poster.svg');
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  border: 1px solid var(--c-line);
}


/* ---------- v1.5 ŞOV ODAKLI HERO (Broadcast Control Room) ---------- */
.hero-show {
  position: relative;
  overflow: hidden;
}

.hero-control-room {
  position: absolute;
  inset: 0;
  background-image:
    /* Yatay scan çizgileri (broadcast feed hissi) */
    repeating-linear-gradient(0deg,
      transparent 0,
      transparent 3px,
      rgba(214,168,79,0.025) 3px,
      rgba(214,168,79,0.025) 4px),
    /* Dikey veri çizgileri */
    repeating-linear-gradient(90deg,
      transparent 0,
      transparent 80px,
      rgba(79,209,161,0.04) 80px,
      rgba(79,209,161,0.04) 81px),
    /* Sağ alt nokta grid'i */
    radial-gradient(circle at 85% 80%, rgba(214,168,79,0.10) 0%, transparent 35%),
    /* Sol üst yumuşak ışık */
    radial-gradient(circle at 10% 15%, rgba(79,209,161,0.08) 0%, transparent 40%);
  opacity: 0.6;
  pointer-events: none;
  mix-blend-mode: screen;
}

.live-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--c-pitch);
  border-radius: 50%;
  margin-right: 0.5rem;
  animation: live-pulse-anim 1.6s ease-in-out infinite;
  vertical-align: middle;
  box-shadow: 0 0 12px rgba(79, 209, 161, 0.7);
}

@keyframes live-pulse-anim {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-broadcast .slot-row {
  cursor: pointer;
  transition: background 200ms, transform 200ms;
}

.hero-broadcast .slot-row:hover {
  background: rgba(214,168,79,0.08);
  transform: translateX(3px);
}

/* Türkiye maçları grid - ana sayfa içinde DK section'ı */
#dunya-kupasi .tr-mac-grid {
  margin-top: 0.5rem;
}

/* Süper Lig section akcenti */
#super-lig-home {
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}


/* ╔══════════════════════════════════════════════════════════════════════╗
   ║  v1.7  CINEMATIC BROADCAST HERO + PREMIUM MATCH CENTER              ║
   ║  EkoFutbol açıldığında jenerik hissi — yayın başlıyor                ║
   ╚══════════════════════════════════════════════════════════════════════╝ */

.hero-cinematic {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 5.5rem 0 3rem;
  isolation: isolate;
  overflow: hidden;
  background: #050B14;
}

/* ───────── HERO SAHNE KATMANLARI ───────── */
.hero-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-stadium {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.hero-light-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  mix-blend-mode: screen;
  animation: light-grid-drift 28s ease-in-out infinite;
}

@keyframes light-grid-drift {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-22px, -14px); }
}

/* ───────── ANIMASYONLU IŞIK HUZMELERİ ───────── */
.hero-light-beams {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-light-beam {
  position: absolute;
  top: -8%;
  width: 14%;
  height: 78%;
  background: linear-gradient(180deg,
    rgba(255, 226, 168, 0.22) 0%,
    rgba(255, 210, 122, 0.10) 35%,
    rgba(214, 168, 79, 0.03) 70%,
    transparent 100%);
  filter: blur(14px);
  transform-origin: top center;
  animation: stadium-light-sweep 13s ease-in-out infinite;
}

.hero-light-beam.cool {
  background: linear-gradient(180deg,
    rgba(168, 229, 213, 0.18) 0%,
    rgba(79, 209, 161, 0.08) 40%,
    transparent 100%);
}

.hero-light-beam:nth-child(1) { left:  3%; --rot: -4deg; animation-delay: 0s; }
.hero-light-beam:nth-child(2) { left: 20%; --rot:  2deg; animation-delay: -2s; }
.hero-light-beam:nth-child(3) { left: 38%; --rot: -1deg; animation-delay: -4s; }
.hero-light-beam:nth-child(4) { left: 55%; --rot:  3deg; animation-delay: -6s; }
.hero-light-beam:nth-child(5) { left: 72%; --rot: -2deg; animation-delay: -8s; }
.hero-light-beam:nth-child(6) { left: 88%; --rot:  4deg; animation-delay: -10s; }

@keyframes stadium-light-sweep {
  0%, 100% { transform: rotate(var(--rot)); opacity: 0.85; }
  50%      { transform: rotate(calc(var(--rot) + 1.5deg)); opacity: 1; }
}

/* ───────── VERİ ORBİTİ (float dots) ───────── */
.hero-data-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orbit-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-gold);
  box-shadow: 0 0 14px rgba(214, 168, 79, 0.85);
  opacity: 0.55;
  animation: data-orbit 22s ease-in-out infinite;
}

.hero-orbit-dot.pitch {
  background: var(--c-pitch);
  box-shadow: 0 0 14px rgba(79, 209, 161, 0.85);
}

.hero-orbit-dot:nth-child(1) { top: 12%; left: 14%; animation-delay: 0s; }
.hero-orbit-dot:nth-child(2) { top: 22%; left: 82%; animation-delay: -3s; }
.hero-orbit-dot:nth-child(3) { top: 40%; left:  6%; animation-delay: -6s; }
.hero-orbit-dot:nth-child(4) { top: 56%; left: 90%; animation-delay: -9s; }
.hero-orbit-dot:nth-child(5) { top: 18%; left: 48%; animation-delay: -12s; }
.hero-orbit-dot:nth-child(6) { top: 68%; left: 32%; animation-delay: -15s; }
.hero-orbit-dot:nth-child(7) { top: 35%; left: 65%; animation-delay: -18s; }

@keyframes data-orbit {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.55; }
  25%      { transform: translate(28px, -18px) scale(1.15); opacity: 0.85; }
  50%      { transform: translate(-14px, 32px) scale(0.85); opacity: 0.45; }
  75%      { transform: translate(-30px, -14px) scale(1.05); opacity: 0.7; }
}

/* ───────── RADAR ORBİT (sağ üst, dekoratif) ───────── */
.hero-match-orbit {
  position: absolute;
  top: -10%;
  right: -8%;
  width: 540px;
  height: 540px;
  pointer-events: none;
  opacity: 0.55;
  animation: orbit-rotate 90s linear infinite;
}

@keyframes orbit-rotate {
  from { transform: rotate(0); }
  to   { transform: rotate(360deg); }
}

/* ───────── SCANLINE + NOISE + VINETTE ───────── */
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 3px,
    rgba(214, 168, 79, 0.022) 3px,
    rgba(214, 168, 79, 0.022) 4px
  );
  pointer-events: none;
  opacity: 0.65;
  animation: line-scan 8s linear infinite;
}

@keyframes line-scan {
  0%   { transform: translateY(0); }
  100% { transform: translateY(4px); }
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 45%,
    transparent 35%,
    rgba(5, 11, 20, 0.45) 70%,
    rgba(5, 11, 20, 0.85) 100%);
  pointer-events: none;
}

/* ───────── HERO İÇERİĞİ ───────── */
.hero-cinematic .container { position: relative; z-index: 3; }

.hero-cinematic .hero-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ───────── ROZET ───────── */
.hero-cinematic .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 1.1rem;
  background: rgba(13, 27, 47, 0.55);
  border: 1px solid rgba(214, 168, 79, 0.35);
  border-radius: 100px;
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-cream);
  font-weight: 600;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px -8px rgba(214, 168, 79, 0.4);
  animation: brand-reveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) both 0.1s;
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-pitch);
  box-shadow: 0 0 10px rgba(79, 209, 161, 0.85);
  animation: pulse-onair 1.6s ease-in-out infinite;
}

@keyframes pulse-onair {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.75); }
}

/* ───────── MEGA BAŞLIK ───────── */
.hero-mega-title {
  font-family: var(--f-display);
  margin: 0 0 1.4rem;
  font-weight: 800;
}

.hero-mega-title .brand-word {
  display: block;
  font-size: clamp(4.5rem, 11vw, 9rem);
  line-height: 0.88;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg,
    #D6A84F 0%,
    #FFE9B5 35%,
    #F4F0E8 55%,
    #4FD1A1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 36px rgba(214, 168, 79, 0.32));
  animation: brand-reveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) both 0.3s;
}

.hero-mega-title .sub-line {
  display: block;
  font-size: clamp(1.5rem, 3.2vw, 2.6rem);
  font-weight: 600;
  color: var(--c-cream);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-top: 0.6rem;
  animation: brand-reveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) both 0.55s;
}

.hero-mega-title .sub-line.accent {
  color: var(--c-muted);
  animation-delay: 0.75s;
}

@keyframes brand-reveal {
  0%   { opacity: 0; transform: translateY(28px); filter: blur(8px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.hero-cinematic .hero-desc {
  max-width: 58ch;
  color: var(--c-muted);
  font-size: 1.08rem;
  line-height: 1.65;
  margin-bottom: 2.2rem;
  animation: brand-reveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) both 0.95s;
}

/* ───────── CTA'LAR ───────── */
.hero-cinematic .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  animation: brand-reveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) both 1.15s;
}

.btn-cinematic {
  position: relative;
  padding: 1rem 1.8rem;
  font-family: var(--f-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: all 380ms cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  overflow: hidden;
  isolation: isolate;
}

.btn-cinematic::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 70%);
  transition: left 700ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.btn-cinematic:hover::before { left: 100%; }

.btn-cinematic.btn-gold {
  background: linear-gradient(135deg, #D6A84F 0%, #FFD27A 100%);
  color: #07111F;
  box-shadow: 0 8px 28px -6px rgba(214, 168, 79, 0.45);
}
.btn-cinematic.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px -8px rgba(214, 168, 79, 0.65);
}

.btn-cinematic.btn-pitch {
  background: linear-gradient(135deg, #4FD1A1 0%, #3DB590 100%);
  color: #07111F;
  box-shadow: 0 8px 28px -6px rgba(79, 209, 161, 0.42);
}
.btn-cinematic.btn-pitch:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px -8px rgba(79, 209, 161, 0.62);
}

.btn-cinematic.btn-glass {
  background: rgba(244, 240, 232, 0.06);
  border-color: rgba(244, 240, 232, 0.18);
  color: var(--c-cream);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-cinematic.btn-glass:hover {
  background: rgba(244, 240, 232, 0.12);
  border-color: var(--c-gold);
  transform: translateY(-3px);
}

.btn-cinematic .btn-arrow {
  display: inline-block;
  transition: transform 320ms ease;
}
.btn-cinematic:hover .btn-arrow {
  transform: translateX(3px);
}

/* ───────── BROADCAST CONSOLE (sağ panel — TV rejisi) ───────── */
.hero-broadcast-console {
  position: relative;
  padding: 1.8rem;
  background: linear-gradient(160deg,
    rgba(13, 27, 47, 0.62) 0%,
    rgba(7, 17, 31, 0.42) 100%);
  border: 1px solid rgba(244, 240, 232, 0.10);
  border-radius: 22px;
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  box-shadow:
    0 32px 60px -20px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(244, 240, 232, 0.07);
  animation: brand-reveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) both 0.85s,
             panel-glow 6s ease-in-out infinite 2s;
}

.hero-broadcast-console::before {
  content: '';
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 168, 79, 0.7), transparent);
}

.hero-broadcast-console::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background-image:
    repeating-linear-gradient(0deg,
      transparent 0,
      transparent 14px,
      rgba(214, 168, 79, 0.02) 14px,
      rgba(214, 168, 79, 0.02) 15px);
  pointer-events: none;
  opacity: 0.6;
}

@keyframes panel-glow {
  0%, 100% { box-shadow: 0 32px 60px -20px rgba(0,0,0,0.55), inset 0 1px 0 rgba(244,240,232,0.07); }
  50%      { box-shadow: 0 32px 60px -20px rgba(0,0,0,0.55), inset 0 1px 0 rgba(244,240,232,0.07), 0 0 32px -8px rgba(214, 168, 79, 0.18); }
}

.broadcast-console-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.4rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(244, 240, 232, 0.08);
}

.broadcast-console-header .console-title {
  font-family: var(--f-display);
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-cream);
  margin: 0;
  font-weight: 700;
}

.broadcast-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--f-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--c-pitch);
  text-transform: uppercase;
}

.broadcast-status::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--c-pitch);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(79, 209, 161, 0.85);
  animation: pulse-onair 1.6s ease-in-out infinite;
}

.broadcast-slot {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 0.9rem;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(244, 240, 232, 0.05);
  text-decoration: none;
  transition: all 280ms ease;
  cursor: pointer;
  position: relative;
}

.broadcast-slot:last-child { border-bottom: none; }

.broadcast-slot::before {
  content: '';
  position: absolute;
  left: -1.8rem;
  top: 18%;
  bottom: 18%;
  width: 2px;
  background: var(--c-gold);
  transform: scaleY(0);
  transition: transform 280ms ease;
}

.broadcast-slot:hover {
  padding-left: 0.7rem;
  background: linear-gradient(90deg, rgba(214, 168, 79, 0.05), transparent);
}

.broadcast-slot:hover::before { transform: scaleY(1); }

.broadcast-slot.pitch-row::before { background: var(--c-pitch); }
.broadcast-slot.pitch-row:hover {
  background: linear-gradient(90deg, rgba(79, 209, 161, 0.06), transparent);
}

.broadcast-slot .slot-tag {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold);
}

.broadcast-slot.pitch-row .slot-tag { color: var(--c-pitch); }

.broadcast-slot .slot-name {
  font-family: var(--f-display);
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--c-cream);
  letter-spacing: -0.005em;
}

.broadcast-slot .slot-time {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  color: var(--c-muted-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: right;
}

.broadcast-slot:hover .slot-time { color: var(--c-cream); }

/* İnce progress çizgisi */
.broadcast-slot .slot-progress {
  grid-column: 1 / -1;
  height: 2px;
  background: rgba(244, 240, 232, 0.05);
  margin-top: 0.55rem;
  overflow: hidden;
  border-radius: 2px;
}

.broadcast-slot .slot-progress::after {
  content: '';
  display: block;
  height: 100%;
  width: var(--p, 65%);
  background: linear-gradient(90deg, var(--c-gold), transparent);
  transition: width 600ms ease;
}

.broadcast-slot.pitch-row .slot-progress::after {
  background: linear-gradient(90deg, var(--c-pitch), transparent);
}

/* ───────── HIZLI EYLEM KARTLARI ───────── */
.hero-quick-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
  position: relative;
  z-index: 2;
  animation: brand-reveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) both 1.35s;
}

.hero-quick-card {
  position: relative;
  padding: 1.5rem 1.3rem;
  background: linear-gradient(180deg,
    rgba(13, 27, 47, 0.55),
    rgba(7, 17, 31, 0.35));
  border: 1px solid rgba(244, 240, 232, 0.10);
  border-radius: 16px;
  text-decoration: none;
  transition: all 380ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-quick-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent, var(--c-gold)), transparent);
  transform: scaleX(0.25);
  transform-origin: left;
  transition: transform 480ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-quick-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--accent, #D6A84F) 50%, transparent);
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--accent, #D6A84F) 10%, rgba(13, 27, 47, 0.55)),
    rgba(7, 17, 31, 0.45));
  box-shadow: 0 18px 36px -16px color-mix(in srgb, var(--accent, #D6A84F) 50%, transparent);
}

.hero-quick-card:hover::before { transform: scaleX(1); }

.hero-quick-card .qc-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent, #D6A84F) 14%, transparent);
  color: var(--accent, var(--c-gold));
  font-size: 1.35rem;
  margin-bottom: 0.95rem;
  transition: all 320ms ease;
}

.hero-quick-card:hover .qc-icon-wrap {
  background: color-mix(in srgb, var(--accent, #D6A84F) 22%, transparent);
  transform: scale(1.05);
}

.hero-quick-card .qc-eyebrow {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent, var(--c-gold));
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.hero-quick-card .qc-title {
  display: block;
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-cream);
  margin-bottom: 0.4rem;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.hero-quick-card .qc-meta {
  font-family: var(--f-body);
  font-size: 0.82rem;
  color: var(--c-muted);
  line-height: 1.45;
}

/* ───────── SCROLL CUE ───────── */
.hero-scroll-cue {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-muted);
  z-index: 3;
  animation: brand-reveal 1.4s ease both 1.6s;
}

.hero-scroll-cue .cue-track {
  width: 1px;
  height: 38px;
  background: rgba(244, 240, 232, 0.18);
  position: relative;
  overflow: hidden;
}

.hero-scroll-cue .cue-track::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, transparent, var(--c-gold));
  animation: scroll-cue-drop 2.4s ease-in-out infinite;
}

@keyframes scroll-cue-drop {
  0%   { top: -50%; opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* ───────── BUGÜNÜN VITRINI (hero sonrası) ───────── */
.broadcast-showcase {
  padding: 4rem 0 3rem;
  position: relative;
  background: linear-gradient(180deg, #050B14, #07111F);
}

.broadcast-showcase::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 168, 79, 0.35), rgba(79, 209, 161, 0.35), transparent);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.showcase-card {
  position: relative;
  padding: 1.8rem 1.5rem;
  background: linear-gradient(180deg,
    rgba(13, 27, 47, 0.65),
    rgba(7, 17, 31, 0.4));
  border: 1px solid rgba(244, 240, 232, 0.10);
  border-radius: 18px;
  text-decoration: none;
  transition: all 380ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.showcase-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 0%,
    color-mix(in srgb, var(--accent, #D6A84F) 14%, transparent),
    transparent 50%);
  opacity: 0.7;
  transition: opacity 380ms ease;
}

.showcase-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent, var(--c-gold));
  box-shadow: 0 24px 48px -16px color-mix(in srgb, var(--accent, #D6A84F) 38%, transparent);
}
.showcase-card:hover::before { opacity: 1; }

.showcase-card > * { position: relative; z-index: 1; }

.showcase-card .sc-eyebrow {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent, var(--c-gold));
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.showcase-card .sc-title {
  font-family: var(--f-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--c-cream);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 0.7rem;
}

.showcase-card .sc-desc {
  font-size: 0.88rem;
  color: var(--c-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.showcase-card .sc-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent, var(--c-gold));
  font-weight: 700;
  transition: gap 280ms ease;
}

.showcase-card:hover .sc-cta { gap: 0.85rem; }

/* ───────── MOBİL (≤880px) ───────── */
@media (max-width: 880px) {
  .hero-cinematic {
    min-height: auto;
    padding: 3rem 0 2rem;
  }
  .hero-cinematic .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-mega-title .brand-word { font-size: clamp(3.2rem, 14vw, 5rem); }
  .hero-mega-title .sub-line   { font-size: clamp(1.1rem, 5vw, 1.6rem); }
  .hero-cinematic .hero-desc   { font-size: 0.95rem; }

  .hero-broadcast-console { padding: 1.3rem; }
  .broadcast-slot {
    grid-template-columns: 84px 1fr auto;
    gap: 0.6rem;
    padding: 0.65rem 0;
  }
  .broadcast-slot .slot-name { font-size: 0.86rem; }
  .broadcast-slot .slot-time { font-size: 0.62rem; }
  .broadcast-slot .slot-progress { display: none; }

  .hero-quick-actions {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2rem;
    gap: 0.7rem;
  }
  .hero-quick-card { padding: 1.2rem 1rem; }
  .hero-quick-card .qc-icon-wrap { width: 36px; height: 36px; font-size: 1.1rem; }
  .hero-quick-card .qc-title { font-size: 1rem; }
  .hero-quick-card .qc-meta { font-size: 0.78rem; }

  /* Showcase mobile */
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-card { min-height: auto; }

  /* Animasyon yumuşat */
  .hero-light-beam   { opacity: 0.55; }
  .hero-orbit-dot    { opacity: 0.35; }
  .hero-noise        { opacity: 0.35; }
  .hero-match-orbit  { display: none; }
  .hero-scroll-cue   { display: none; }
}

/* prefers-reduced-motion — animasyonları durdur */
@media (prefers-reduced-motion: reduce) {
  .hero-light-beam,
  .hero-orbit-dot,
  .hero-match-orbit,
  .hero-light-grid,
  .hero-noise,
  .broadcast-status::before,
  .hero-badge .badge-dot,
  .hero-scroll-cue .cue-track::after,
  .hero-broadcast-console {
    animation: none !important;
  }
  .hero-mega-title .brand-word,
  .hero-mega-title .sub-line,
  .hero-cinematic .hero-desc,
  .hero-cinematic .hero-actions,
  .hero-cinematic .hero-badge,
  .hero-quick-actions {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}


/* ╔══════════════════════════════════════════════════════════════════════╗
   ║  v1.8  SIGNATURE VISUAL IDENTITY + HERO FINAL CUT                    ║
   ║  Hedef: spor programı jeneriği hissi                                  ║
   ╚══════════════════════════════════════════════════════════════════════╝ */

/* ───────── DERINLIK 3 KATMAN ───────── */
/* z-index hiyerarşisi:
   0   bg-stadium (en arka)
   1   light-grid + light-beams + match-orbit
   2   data-orbit dots
   3   FOREGROUND PITCH (ön saha perspektifi)
   4   noise + vignette
   5   içerik
   6   broadcast-console (en önde)                  */

.hero-cinematic .hero-bg-stadium { z-index: 0; }
.hero-cinematic .hero-light-grid { z-index: 1; }
.hero-cinematic .hero-light-beams { z-index: 1; }
.hero-cinematic .hero-match-orbit { z-index: 1; }
.hero-cinematic .hero-data-layer { z-index: 2; }

.hero-foreground-pitch {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 38%;
  width: 100%;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0.85;
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: screen;
  animation: pitch-pulse 7s ease-in-out infinite;
}

@keyframes pitch-pulse {
  0%, 100% { opacity: 0.78; }
  50%      { opacity: 0.95; }
}

.hero-cinematic .hero-noise { z-index: 4; }
.hero-cinematic .hero-vignette { z-index: 4; }
.hero-cinematic .container { z-index: 5; }
.hero-cinematic .hero-broadcast-console { z-index: 6; }

/* ───────── 1 SANİYELİK YAYIN AÇILIŞ JENERİĞİ ───────── */

/* 1. Açılışta tüm sahne soldan beliriyor (sinematik fade) */
.hero-cinematic {
  animation: broadcast-curtain 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes broadcast-curtain {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

/* 2. Stadium katmanı parlaklık geçişiyle açılır (ışıklar yanıyor) */
.hero-bg-stadium {
  animation: stadium-power-on 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes stadium-power-on {
  0%   { filter: brightness(0.2) saturate(0.3); opacity: 0; }
  40%  { filter: brightness(0.6) saturate(0.6); opacity: 0.5; }
  100% { filter: brightness(1) saturate(1); opacity: 0.92; }
}

/* 3. Işık huzmeleri sonradan yanar */
.hero-light-beam {
  animation:
    beam-power-on 0.9s cubic-bezier(0.16, 1, 0.3, 1) both 0.6s,
    stadium-light-sweep 13s ease-in-out infinite 1.5s;
}

@keyframes beam-power-on {
  0%   { opacity: 0; transform: rotate(var(--rot)) scaleY(0.7); }
  100% { opacity: 0.85; transform: rotate(var(--rot)) scaleY(1); }
}

/* 4. Veri noktaları "belirir" — delay 0.85s, scale up */
.hero-orbit-dot {
  animation:
    dot-appear 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both 0.85s,
    data-orbit 22s ease-in-out infinite 1.6s;
}

@keyframes dot-appear {
  0%   { opacity: 0; transform: scale(0); }
  100% { opacity: 0.55; transform: scale(1); }
}

/* 5. Foreground pitch en son belirir (sahne dolmuş) */
.hero-foreground-pitch {
  animation:
    pitch-power-on 1.0s cubic-bezier(0.16, 1, 0.3, 1) both 0.5s,
    pitch-pulse 7s ease-in-out infinite 1.5s;
}

@keyframes pitch-power-on {
  0%   { opacity: 0; transform: translateY(30px); }
  100% { opacity: 0.85; transform: translateY(0); }
}

/* ───────── SIGNATURE WORDMARK ───────── */
/* Brand-word'ü SVG wordmark ile değiştir — inline kullanım */

.hero-signature-wrap {
  display: block;
  margin: 0 0 1.4rem;
  animation: brand-reveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) both 0.3s;
}

.hero-signature-wrap .ekofutbol-signature {
  width: 100%;
  max-width: 580px;
  height: auto;
  filter: drop-shadow(0 0 36px rgba(214, 168, 79, 0.32));
}

/* ───────── BROADCAST CONSOLE — PREMIUM TV REJİSİ ───────── */

/* Konsola broadcast wall arka deseni ekle */
.hero-broadcast-console {
  background:
    /* Üst köşede ışık halesi */
    radial-gradient(circle at 100% 0%,
      rgba(214, 168, 79, 0.10),
      transparent 50%),
    /* Sol alt köşede pitch halesi */
    radial-gradient(circle at 0% 100%,
      rgba(79, 209, 161, 0.08),
      transparent 50%),
    /* Ana zemin */
    linear-gradient(160deg,
      rgba(13, 27, 47, 0.65) 0%,
      rgba(7, 17, 31, 0.45) 100%);
}

/* Konsol üst sağ rejisi LED bar */
.hero-broadcast-console .console-led {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: 4px;
  align-items: center;
}

.console-led span {
  width: 4px;
  height: 4px;
  background: var(--c-pitch);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(79, 209, 161, 0.7);
  animation: led-blink 1.4s ease-in-out infinite;
}
.console-led span:nth-child(1) { animation-delay: 0s; }
.console-led span:nth-child(2) { animation-delay: -0.5s; background: var(--c-gold); box-shadow: 0 0 6px rgba(214, 168, 79, 0.7); }
.console-led span:nth-child(3) { animation-delay: -0.9s; }

@keyframes led-blink {
  0%, 100% { opacity: 0.4; }
  50%      { opacity: 1; }
}

/* Broadcast console alt timecode bar — TV rejisi hissi */
.broadcast-timecode {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(244, 240, 232, 0.08);
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted-2);
}

.broadcast-timecode .tc-label {
  color: var(--c-gold);
  font-weight: 700;
}

.broadcast-timecode .tc-value {
  color: var(--c-cream);
  font-weight: 600;
  letter-spacing: 0.16em;
}

/* ───────── BUGÜNÜN VİTRİNİ — HABER KANALI EDITORIAL ───────── */

.broadcast-showcase {
  padding: 5rem 0 4rem;
  background:
    /* Üst kenarda ışık şeridi */
    linear-gradient(180deg,
      rgba(13, 27, 47, 0.6) 0%,
      #07111F 8%,
      #050B14 100%);
}

.broadcast-showcase::before {
  background: linear-gradient(90deg,
    transparent,
    rgba(214, 168, 79, 0.5),
    rgba(79, 209, 161, 0.5),
    transparent);
  height: 2px;
}

/* Editorial header — saat damgası + canlı durum */
.showcase-editorial-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(244, 240, 232, 0.08);
  flex-wrap: wrap;
  gap: 1rem;
}

.showcase-editorial-bar .editorial-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
}

.showcase-editorial-bar .editorial-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--c-gold);
}

.showcase-editorial-bar .editorial-meta {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted-2);
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.showcase-editorial-bar .editorial-meta .live-mini {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--c-pitch);
  font-weight: 700;
}

.showcase-editorial-bar .editorial-meta .live-mini::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--c-pitch);
  border-radius: 50%;
  animation: pulse-onair 1.6s ease-in-out infinite;
}

.broadcast-showcase .section-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.6rem;
  color: var(--c-cream);
  font-weight: 800;
}

.broadcast-showcase .section-lead {
  max-width: 65ch;
  color: var(--c-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Editorial showcase grid — 1 büyük + 3 küçük (gazete vitrin) */
.showcase-grid-editorial {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  min-height: 460px;
}

.showcase-card-editorial {
  position: relative;
  padding: 1.8rem 1.6rem;
  background: linear-gradient(180deg,
    rgba(13, 27, 47, 0.65),
    rgba(7, 17, 31, 0.4));
  border: 1px solid rgba(244, 240, 232, 0.10);
  border-radius: 18px;
  text-decoration: none;
  transition: all 380ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Büyük kart — sol, 2 satıra yayılır */
.showcase-card-editorial.feature {
  grid-row: 1 / 3;
  padding: 2.4rem 2rem;
  background:
    radial-gradient(circle at 80% 20%,
      rgba(214, 168, 79, 0.18),
      transparent 50%),
    linear-gradient(180deg,
      rgba(13, 27, 47, 0.72),
      rgba(7, 17, 31, 0.5));
}

.showcase-card-editorial::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent, var(--c-gold)), transparent);
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 480ms cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-card-editorial:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent, #D6A84F) 50%, transparent);
  box-shadow: 0 24px 48px -16px color-mix(in srgb, var(--accent, #D6A84F) 38%, transparent);
}
.showcase-card-editorial:hover::before { transform: scaleX(1); }

.showcase-card-editorial .ed-rubric {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent, var(--c-gold));
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.showcase-card-editorial .ed-rubric::before {
  content: '';
  width: 10px;
  height: 2px;
  background: var(--accent, var(--c-gold));
}

.showcase-card-editorial.feature .ed-rubric { font-size: 0.74rem; }

.showcase-card-editorial .ed-title {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--c-cream);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.6rem;
}

.showcase-card-editorial.feature .ed-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.9rem;
}

.showcase-card-editorial .ed-desc {
  font-size: 0.85rem;
  color: var(--c-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.showcase-card-editorial.feature .ed-desc {
  font-size: 0.96rem;
  margin-bottom: 1.4rem;
  max-width: 42ch;
}

.showcase-card-editorial .ed-stats {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(244, 240, 232, 0.07);
}

.showcase-card-editorial .ed-stat {
  display: flex;
  flex-direction: column;
}

.showcase-card-editorial .ed-stat .stat-num {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent, var(--c-gold));
  line-height: 1;
}

.showcase-card-editorial .ed-stat .stat-label {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted-2);
  margin-top: 0.3rem;
}

.showcase-card-editorial .ed-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent, var(--c-gold));
  font-weight: 700;
  transition: gap 280ms ease;
}

.showcase-card-editorial:hover .ed-cta { gap: 0.85rem; }

/* ───────── MOBİL ───────── */
@media (max-width: 880px) {
  .hero-signature-wrap .ekofutbol-signature { max-width: 320px; }
  .hero-foreground-pitch { height: 28%; opacity: 0.7; }
  .hero-broadcast-console .console-led { display: none; }
  .broadcast-timecode { font-size: 0.6rem; flex-wrap: wrap; gap: 0.4rem; }

  /* Showcase tek kolon */
  .showcase-grid-editorial {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }
  .showcase-card-editorial.feature {
    grid-row: auto;
    padding: 1.8rem 1.4rem;
  }
  .showcase-editorial-bar { flex-direction: column; align-items: flex-start; }
}

/* prefers-reduced-motion — yeni animasyonları da durdur */
@media (prefers-reduced-motion: reduce) {
  .hero-cinematic,
  .hero-bg-stadium,
  .hero-foreground-pitch,
  .hero-signature-wrap,
  .console-led span,
  .broadcast-timecode .tc-value {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}


/* ╔══════════════════════════════════════════════════════════════════════╗
   ║  v1.9  ÇİFT SAAT KARTI — Türkiye Saati / Stadyum Yerel Saati          ║
   ╚══════════════════════════════════════════════════════════════════════╝ */

.match-card-v19 {
  position: relative;
  padding: 1.5rem 1.4rem;
  background: linear-gradient(180deg,
    rgba(13, 27, 47, 0.65),
    rgba(7, 17, 31, 0.4));
  border: 1px solid rgba(244, 240, 232, 0.10);
  border-radius: 16px;
  transition: all 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.match-card-v19:hover {
  border-color: var(--c-gold);
  transform: translateY(-3px);
}

.match-card-v19.turkey-match {
  border-left: 3px solid #E30A17;
  background: linear-gradient(135deg,
    rgba(227, 10, 23, 0.04),
    rgba(13, 27, 47, 0.65));
}

.match-card-v19 .mc-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 0.8rem;
}

.match-card-v19 .mc-stage {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 700;
}

.match-card-v19.turkey-match .mc-stage {
  color: #FF6B7A;
}

.match-card-v19 .mc-stage::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 0.5rem;
}

.match-card-v19 .mc-broadcast {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 4px 10px;
  background: rgba(79, 209, 161, 0.10);
  border: 1px solid rgba(79, 209, 161, 0.3);
  border-radius: 100px;
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-pitch);
  font-weight: 700;
}

.match-card-v19 .mc-title {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--c-cream);
  letter-spacing: -0.02em;
  margin: 0 0 0.4rem;
  line-height: 1.15;
}

.match-card-v19 .mc-venue {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  color: var(--c-muted);
  letter-spacing: 0.04em;
  margin-bottom: 1.2rem;
}

.match-card-v19 .mc-venue::before {
  content: '📍 ';
  filter: grayscale(0.3);
}

/* ÇİFT SAAT BLOĞU */
.mc-times {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  padding: 1rem;
  background: rgba(7, 17, 31, 0.55);
  border: 1px solid rgba(244, 240, 232, 0.07);
  border-radius: 12px;
  margin-bottom: 1rem;
}

.mc-times .time-block {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mc-times .time-block.primary {
  position: relative;
  padding-right: 0.6rem;
  border-right: 1px solid rgba(244, 240, 232, 0.07);
}

.mc-times .time-label {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted-2);
  font-weight: 700;
}

.mc-times .time-block.primary .time-label {
  color: var(--c-gold);
}

.mc-times .time-value {
  font-family: var(--f-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--c-cream);
  letter-spacing: -0.02em;
  line-height: 1;
}

.mc-times .time-block.primary .time-value {
  font-size: 1.65rem;
  background: linear-gradient(135deg, #FFD27A, #D6A84F);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mc-times .time-date {
  font-family: var(--f-body);
  font-size: 0.78rem;
  color: var(--c-cream);
  font-weight: 600;
  line-height: 1.2;
}

.mc-times .time-block:not(.primary) .time-date,
.mc-times .time-block:not(.primary) .time-value {
  color: var(--c-muted);
}

.mc-times .time-city {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  color: var(--c-muted-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* SAAT DOĞRULAMA BEKLEYEN */
.mc-times.pending {
  grid-template-columns: 1fr;
  text-align: center;
  padding: 1.4rem 1rem;
}

.mc-times.pending .pending-msg {
  font-family: var(--f-display);
  font-size: 0.92rem;
  color: var(--c-cream);
  line-height: 1.5;
}

.mc-times.pending .pending-note {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted-2);
  margin-top: 0.5rem;
}

/* Yayın etiketi alt satır */
.match-card-v19 .mc-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(244, 240, 232, 0.06);
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.match-card-v19 .mc-foot .foot-label { color: var(--c-muted-2); }
.match-card-v19 .mc-foot .foot-value {
  color: var(--c-gold);
  font-weight: 700;
}

/* Mobile */
@media (max-width: 720px) {
  .mc-times {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
  .mc-times .time-block.primary {
    border-right: none;
    padding-right: 0;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(244, 240, 232, 0.07);
  }
  .mc-times .time-block.primary .time-value { font-size: 1.5rem; }
  .match-card-v19 .mc-title { font-size: 1.15rem; }
}
