/* FootClash War — Landing & Legal */
/* Cinematic Black + Gold palette (poster referansı) */

:root {
  --black: #000000;
  --bg: #050302;
  --bg-soft: #0a0805;
  --surface: #14100a;
  --surface-high: #1f1810;
  --gold: #d4a017;
  --gold-bright: #ffd966;
  --gold-light: #ffe89a;
  --gold-dark: #8b5a00;
  --bronze: #5c3a00;
  --amber: #ff8c2a;
  --text-primary: #f0e6cc;
  --text-muted: #8c7a55;
  --text-dim: #5c5040;
  --border: rgba(212, 160, 23, 0.18);
  --border-gold: rgba(212, 160, 23, 0.5);
  --max-width: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
  background: var(--black);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: var(--gold); text-decoration: none; transition: opacity 0.2s, color 0.2s; }
a:hover { color: var(--gold-bright); }
img { max-width: 100%; height: auto; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; position: relative; }

/* ─── HEADER ────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}
.brand-mark {
  width: 36px;
  height: 36px;
  background: url('logo.png') center/contain no-repeat;
  filter: drop-shadow(0 0 8px rgba(212, 160, 23, 0.5));
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}
.nav-links a:hover { color: var(--gold); }
@media (max-width: 700px) {
  .nav-links { display: none; }
}

/* ─── HERO ──────────────────────────── */
.hero {
  position: relative;
  padding: 70px 0 80px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 50%, rgba(212, 160, 23, 0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 50% 100%, rgba(255, 140, 42, 0.08) 0%, transparent 50%);
  overflow: hidden;
}

/* Sparks — altın partiküller animasyonlu */
.sparks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.spark {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 6px var(--gold);
  opacity: 0;
  animation: rise linear infinite;
}
@keyframes rise {
  0% { transform: translateY(0) scale(0); opacity: 0; }
  10% { opacity: 1; transform: scale(1); }
  90% { opacity: 0.6; }
  100% { transform: translateY(-100vh) scale(0.3); opacity: 0; }
}
/* Birden fazla spark üret — JS yerine CSS staggered */
.spark:nth-child(1)  { left:  8%; animation-duration: 9s;  animation-delay: 0s;   background: var(--gold-bright); }
.spark:nth-child(2)  { left: 18%; animation-duration: 11s; animation-delay: 1s;   background: var(--amber); }
.spark:nth-child(3)  { left: 26%; animation-duration: 8s;  animation-delay: 2.5s; }
.spark:nth-child(4)  { left: 34%; animation-duration: 12s; animation-delay: 0.5s; background: var(--gold-light); }
.spark:nth-child(5)  { left: 44%; animation-duration: 10s; animation-delay: 3s;   width: 3px; height: 3px; }
.spark:nth-child(6)  { left: 52%; animation-duration: 13s; animation-delay: 1.5s; background: var(--amber); }
.spark:nth-child(7)  { left: 60%; animation-duration: 9s;  animation-delay: 4s; }
.spark:nth-child(8)  { left: 68%; animation-duration: 11s; animation-delay: 2s;   width: 5px; height: 5px; }
.spark:nth-child(9)  { left: 76%; animation-duration: 8s;  animation-delay: 0.8s; background: var(--gold-light); }
.spark:nth-child(10) { left: 84%; animation-duration: 12s; animation-delay: 3.5s; }
.spark:nth-child(11) { left: 92%; animation-duration: 10s; animation-delay: 1.2s; background: var(--amber); }
.spark:nth-child(12) { left: 12%; animation-duration: 14s; animation-delay: 5s;   width: 3px; height: 3px; }
.spark:nth-child(13) { left: 40%; animation-duration: 9s;  animation-delay: 6s; }
.spark:nth-child(14) { left: 72%; animation-duration: 11s; animation-delay: 4.5s; background: var(--gold-bright); }
.spark:nth-child(15) { left: 88%; animation-duration: 8s;  animation-delay: 5.5s; width: 4px; height: 4px; }

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Hero logo */
.hero-logo-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.4) 0%, transparent 65%);
  filter: blur(20px);
  z-index: 0;
}
.hero-logo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 30px rgba(212, 160, 23, 0.5));
  animation: logoFloat 4s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Ana başlık — metalik altın */
.hero-title {
  font-size: clamp(48px, 9vw, 96px);
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 0.95;
  margin: 0;
  /* Metalik altın gradyan + 3D efekti */
  background: linear-gradient(180deg, #ffd966 0%, #d4a017 40%, #8b5a00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.8))
          drop-shadow(0 6px 20px rgba(212, 160, 23, 0.3));
  text-shadow: none;
}

/* Divider with tagline */
.hero-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 540px;
  margin: 4px 0 8px;
}
.hero-divider .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}
.hero-tagline {
  color: var(--gold);
  font-size: clamp(11px, 1.4vw, 14px);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
}

.hero-sub-tr {
  color: var(--text-primary);
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  max-width: 600px;
}
.hero-sub-tr .accent { color: var(--gold); }
.hero-sub-detail {
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  max-width: 480px;
  line-height: 1.7;
}

/* "YAKINDA" hero CTA */
.cta-coming {
  display: inline-block;
  padding: 16px 56px;
  border: 2px solid var(--gold);
  border-radius: 4px;
  color: var(--gold);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
  background: rgba(212, 160, 23, 0.05);
  transition: all 0.25s;
  margin-top: 8px;
  cursor: pointer;
  position: relative;
  box-shadow: 0 0 30px rgba(212, 160, 23, 0.15), inset 0 0 20px rgba(212, 160, 23, 0.05);
}
.cta-coming:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 40px rgba(212, 160, 23, 0.5);
}

/* Hero feature pills (alt taraf — kategoriler) */
.hero-pills {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  width: 100%;
  max-width: 720px;
}
.hero-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  min-width: 100px;
}
.hero-pill-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border-gold);
  background: rgba(212, 160, 23, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
}
.hero-pill-label {
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

/* ─── EMAIL FORM ────────────────────── */
.early-access-wrap {
  max-width: 540px;
  margin: 0 auto;
  padding: 30px 24px;
  text-align: center;
  background: rgba(212, 160, 23, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.early-access-title {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
}
.early-access-sub {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 18px;
}
.email-capture {
  display: flex;
  gap: 8px;
  max-width: 440px;
  margin: 0 auto;
}
.email-capture input {
  flex: 1;
  background: var(--black);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.email-capture input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(212, 160, 23, 0.15);
}
.email-capture input::placeholder { color: var(--text-dim); }
.email-capture button {
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 4px;
  padding: 12px 24px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.email-capture button:hover { background: var(--gold-bright); transform: translateY(-1px); }
.form-success {
  background: rgba(212, 160, 23, 0.10);
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 14px;
  color: var(--gold);
  font-size: 14px;
  margin-top: 12px;
}

/* ─── SECTIONS ──────────────────────── */
section { padding: 90px 0; position: relative; }
.section-title { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 700;
}
.section-title h2 {
  font-size: clamp(28px, 4.5vw, 44px);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 900;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
}
.section-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 12px auto 0;
}

/* ─── FEATURES ──────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.feature {
  position: relative;
  padding: 28px 24px;
  background: linear-gradient(180deg, rgba(20, 16, 10, 0.9), rgba(8, 5, 2, 0.95));
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: transform 0.2s, border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}
.feature:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: 0 10px 40px rgba(212, 160, 23, 0.1);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.20), rgba(212, 160, 23, 0.05));
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
}
.feature h3 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 800;
}
.feature p { color: var(--text-muted); font-size: 14px; line-height: 1.65; }

/* ─── SCREENSHOTS ───────────────────── */
.screenshots-section { background: var(--bg-soft); }
.screenshot-strip {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 8px 0 20px;
  scroll-snap-type: x mandatory;
  scroll-padding: 24px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}
.screenshot-strip::-webkit-scrollbar { display: none; } /* Chrome/Safari */
.screenshot-card {
  flex-shrink: 0;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.screenshot-card img {
  width: 240px;
  height: auto;
  border-radius: 24px;
  border: 4px solid #1a1409;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--border-gold);
}
.screenshot-label {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 2.5px;
  font-weight: 700;
}

/* ─── LEAGUES ───────────────────────── */
.leagues-section { padding: 90px 0; }
.leagues-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 24px;
  margin: 0 -24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.leagues-strip::-webkit-scrollbar { display: none; }
.league-chip {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  min-width: 110px;
  transition: all 0.2s;
}
.league-chip:hover { border-color: var(--border-gold); }
.league-chip.top-tier {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(212, 160, 23, 0.15), rgba(212, 160, 23, 0.02));
  box-shadow: 0 0 20px rgba(212, 160, 23, 0.15);
}
.league-num {
  color: var(--gold);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 1px;
}
.league-name {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  color: var(--text-muted);
}
.league-chip.top-tier .league-name { color: var(--gold-light); }
.leagues-footer {
  text-align: center;
  color: var(--text-muted);
  margin-top: 32px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ─── FOOTER ────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 56px 24px 32px;
  margin-top: 40px;
  background: var(--bg);
}
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.footer-brand-mark {
  width: 40px;
  height: 40px;
  background: url('logo.png') center/contain no-repeat;
  filter: drop-shadow(0 0 8px rgba(212, 160, 23, 0.4));
}
.footer-brand {
  font-weight: 900;
  font-size: 20px;
  color: var(--gold);
  letter-spacing: 2.5px;
}
.footer-tagline { color: var(--text-muted); font-size: 13px; max-width: 320px; }
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 6px; }
.footer-col a { color: var(--text-muted); font-size: 14px; }
.footer-col a:hover { color: var(--gold); }
.legal-bar {
  border-top: 1px solid var(--border);
  margin-top: 32px;
  padding-top: 20px;
  text-align: center;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 1px;
}
.legal-bar a { color: var(--text-muted); }
.legal-bar a:hover { color: var(--gold); }

/* ─── LEGAL PAGES ───────────────────── */
.content-page { padding: 60px 0 80px; }
.content-page h1 {
  font-size: clamp(28px, 5vw, 44px);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 900;
  margin-bottom: 8px;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.content-page .meta {
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.content-page h2 {
  font-size: 22px;
  color: var(--gold);
  margin: 36px 0 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.content-page h3 {
  font-size: 17px;
  color: var(--text-primary);
  margin: 24px 0 8px;
  font-weight: 600;
}
.content-page p, .content-page li {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 10px;
}
.content-page ul { margin: 12px 0 16px 24px; }
.content-page strong { color: var(--text-primary); }
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.btn-back:hover { color: var(--gold); }
