@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;600&display=swap');

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

:root {
  --bg: #08080E;
  --surface: #111118;
  --surface-2: #1A1A26;
  --surface-3: #222233;
  --accent: #E8003D;
  --accent-dim: #9B0029;
  --gold: #FFD700;
  --gold-dim: #A88A00;
  --purple: #7C4DFF;
  --purple-dim: #3D1F99;
  --teal: #00E5BF;
  --text: #F0EEF8;
  --text-2: #A8A6BE;
  --text-3: #5A5878;
  --border: #1E1E30;
  --border-2: #2E2E44;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 56px;
  background: rgba(8,8,14,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--text);
  text-decoration: none;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 0.25rem; }
.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text);
  background: var(--surface-2);
}
.nav-links a.active {
  box-shadow: inset 0 -2px 0 var(--accent);
}
.nav-67 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-3);
  letter-spacing: 0.05em;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 3rem 4rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  filter: grayscale(20%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,8,14,1) 0%,
    rgba(8,8,14,0.7) 40%,
    rgba(8,8,14,0.2) 100%
  );
}
.hero-scanlines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.08) 2px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
}
.hero-red-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 0%, rgba(232,0,61,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero-title .goat { color: var(--gold); }
.hero-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
  cursor: default;
}
.hero-verified svg { width: 36px; height: 36px; }
.hero-verified .tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  color: var(--text-2);
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
}
.hero-verified:hover .tooltip { opacity: 1; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.03em;
}
.tag-pill.accent { border-color: var(--accent); color: var(--accent); background: rgba(232,0,61,0.08); }
.tag-pill.gold { border-color: var(--gold-dim); color: var(--gold); background: rgba(255,215,0,0.06); }
.tag-pill.purple { border-color: var(--purple-dim); color: var(--purple); background: rgba(124,77,255,0.08); }

/* ── VISITOR COUNTER ── */
.visitor-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.visitor-count {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.visitor-count .number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.visitor-count .label {
  font-size: 0.8rem;
  color: var(--text-3);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.visitor-scroll {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-3);
  overflow: hidden;
  max-width: 500px;
}
.ticker-text { white-space: nowrap; animation: ticker 30s linear infinite; display: inline-block; }
@keyframes ticker { from { transform: translateX(100%); } to { transform: translateX(-100%); } }

/* ── SECTIONS ── */
.section {
  padding: 5rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}
.section-full { padding: 5rem 3rem; }
.section-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 3rem;
  color: var(--text);
}
.section-title span { color: var(--accent); }

.progress-track {
  height: 12px;
  background: var(--surface-3);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 0.6rem;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  border-radius: 100px;
  width: 11.1%;
  position: relative;
  transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
}
.progress-fill::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 20px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4));
  border-radius: 0 100px 100px 0;
  animation: shimmer 2s ease-in-out infinite;
}
@keyframes shimmer { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-3);
}

/* ── PROFILE CARD ── */
.profile-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.profile-card-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.profile-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-2);
  flex-shrink: 0;
}
.profile-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.profile-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--teal);
  background: rgba(0,229,191,0.08);
  border: 1px solid rgba(0,229,191,0.2);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 0.35rem;
}
.profile-card-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0;
}
.stat-cell {
  padding: 1.25rem 1.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-cell:last-child { border-right: none; }
.stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.3rem;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  line-height: 1;
}
.stat-value.gold { color: var(--gold); }
.stat-value.accent { color: var(--accent); }
.stat-value.teal { color: var(--teal); }
.stat-value.loading { color: var(--text-3); font-size: 1rem; font-family: var(--font-body); }

/* ── ACHIEVEMENTS ── */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.achievement-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: border-color 0.2s, background 0.2s;
  cursor: default;
}
.achievement-card:hover {
  border-color: var(--border-2);
  background: var(--surface-2);
}
.achievement-card.locked { opacity: 0.4; filter: grayscale(1); }
.ach-icon { width:42px; height:42px; border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:1.4rem; flex-shrink:0; overflow:hidden; }
.ach-icon img { width:100%; height:100%; max-width:100%; max-height:100%; object-fit:contain; }
.ach-icon.gold { background: rgba(255,215,0,0.1); }
.ach-icon.red { background: rgba(232,0,61,0.1); }
.ach-icon.purple { background: rgba(124,77,255,0.1); }
.ach-icon.teal { background: rgba(0,229,191,0.1); }
.ach-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 0.2rem;
  line-height: 1.3;
}
.ach-desc {
  font-size: 0.75rem;
  color: var(--text-3);
  line-height: 1.4;
}
.ach-badge {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gold);
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.2);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  white-space: nowrap;
}

/* ── QUOTES TICKER ── */
.quotes-ticker {
  background: var(--accent);
  padding: 0.7rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.quotes-ticker-inner {
  display: inline-block;
  animation: ticker 40s linear infinite;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
  text-transform: uppercase;
}
.quotes-ticker-inner span { opacity: 0.5; margin: 0 1.5rem; }

/* ── BRAWL SECTION ── */
.brawler-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
}
@media (min-width: 769px) {
  .brawler-grid { grid-template-columns: repeat(5, 1fr); }
}
.brawler-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition: border-color 0.2s, transform 0.15s;
  cursor: default;
}
.brawler-card:hover { border-color: var(--purple-dim); transform: translateY(-2px); }
.brawler-card.fave { border-color: var(--gold-dim); }
.brawler-card.hated { border-color: var(--accent-dim); }
.brawler-card.spike-main {
  border-color: var(--purple);
  box-shadow: 0 0 20px rgba(124,77,255,0.2);
}
.brawler-img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.brawler-img-placeholder img { object-fit: contain !important; }
.brawler-name {
  padding: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-2);
}
.brawler-card.spike-main .brawler-name { color: var(--purple); }
.brawler-card.fave .brawler-name { color: var(--gold); }
.brawler-card.hated .brawler-name { color: var(--accent); }

/* ── INCIDENT REPORT ── */
.incident-card {
  background: rgba(232,0,61,0.04);
  border: 1px solid rgba(232,0,61,0.3);
  border-radius: 16px;
  padding: 2rem;
}
.incident-badge {
  background: var(--accent);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
}
.code-block {
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--teal);
  word-break: break-all;
  line-height: 1.6;
  margin: 1rem 0;
  position: relative;
}
.code-block .code-label {
  position: absolute;
  top: -0.5rem;
  left: 0.75rem;
  background: var(--surface-3);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 0 0.35rem;
}

/* ── QUOTE BLOCK ── */
.quote-block {
  border-left: 3px solid var(--accent);
  padding: 1.5rem 2rem;
  background: var(--surface);
  border-radius: 0 12px 12px 0;
  margin: 1.5rem 0;
}
.quote-text {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.quote-attr {
  font-size: 0.78rem;
  color: var(--text-3);
  font-family: var(--font-mono);
}

/* ── JANET SHRINE ── */
.janet-shrine {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 200px 1fr;
}
.janet-img-wrap {
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border-right: 1px solid var(--border);
  position: relative;
}
.janet-img-wrap img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 12px;
}
.janet-banned {
  position: absolute;
  bottom: 0.75rem;
  left: 0; right: 0;
  background: var(--accent);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.3rem;
}
.janet-content { padding: 1.5rem; }

/* ── FERRARI / F1 ── */
.ferrari-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 3rem 3rem;
}
.ferrari-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.8);
}
.ferrari-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,14,1) 0%, rgba(8,8,14,0.5) 50%, rgba(232,0,61,0.15) 100%);
}
.ferrari-hero-content { position: relative; z-index: 2; }
.ferrari-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
}
.ferrari-title .red { color: var(--accent); }

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: var(--border-2);
}
.timeline-item {
  position: relative;
  padding: 0 0 2.5rem 1.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -0.3rem;
  top: 0.4rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg);
}
.timeline-item.end::before { background: var(--text-3); }
.timeline-date {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-3);
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}
.timeline-event {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.timeline-note {
  font-size: 0.8rem;
  color: var(--text-3);
  line-height: 1.5;
}

/* ── AUDIO PLAYER ── */
.audio-section { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1rem 0; }
.audio-btn {
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: 100px;
  padding: 0.5rem 1.1rem;
  color: var(--text-2);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.15s;
  font-family: var(--font-body);
}
.audio-btn:hover { background: var(--surface-3); border-color: var(--purple); color: var(--purple); }
.audio-btn.playing { background: rgba(124,77,255,0.12); border-color: var(--purple); color: var(--purple); }
.audio-btn .play-icon { font-size: 0.7rem; }
.audio-btn.disabled { opacity: 0.35; cursor: not-allowed; }

/* ── VIDEO EMBED ── */
.video-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  max-height: 496px;
}
.video-wrap iframe {
  width: 100%;
  aspect-ratio: 882/397;
  display: block;
  border: none;
}
.video-wrap .video-placeholder {
  aspect-ratio: 16/9;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--text-3);
}
.video-wrap .video-placeholder .play-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
}

/* ── STATS TABLE ── */
.stats-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.stats-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  border-bottom: 1px solid var(--border);
}
.stats-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
}
.stats-table tr:last-child td { border-bottom: none; }
.stats-table tr:hover td { background: var(--surface-2); }
.stats-table .stat-name { font-weight: 600; color: var(--text); }
.stats-table .good { color: var(--teal); font-weight: 700; font-family: var(--font-mono); }
.stats-table .bad { color: var(--accent); font-weight: 700; font-family: var(--font-mono); }
.stats-table .mid { color: var(--gold); font-weight: 700; font-family: var(--font-mono); }

/* ── TWITTER/X SECTION ── */
.tweet-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: border-color 0.2s;
  margin-bottom: 0.75rem;
}
.tweet-card:hover { border-color: var(--border-2); }
.tweet-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.tweet-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--surface-3);
  flex-shrink: 0;
}
.tweet-handle { font-size: 0.78rem; color: var(--text-3); }
.tweet-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.tweet-meta { font-size: 0.72rem; color: var(--text-3); font-family: var(--font-mono); }

/* ── UTILITY LAYOUTS ── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* ── CARD ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.card-pad { padding: 1.5rem; }

/* ── STAT GRID ── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
}

/* ── RANK BADGE ── */
.rank-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  text-transform: uppercase;
}
.rank-masters {
  background: rgba(255,215,0,0.1);
  color: var(--gold);
  border: 1px solid var(--gold-dim);
}
.rank-pro {
  background: rgba(124,77,255,0.1);
  color: var(--purple);
  border: 1px solid var(--purple-dim);
}

/* ── TWEET LINK ── */
.tweet-link {
  color: var(--teal);
  text-decoration: none;
}
.tweet-link:hover { text-decoration: underline; }

/* ── CAROUSEL ── */
.carousel-track-wrap {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface-2);
}
.carousel-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: carouselScroll 40s linear infinite;
}
.carousel-track:hover { animation-play-state: paused; }
.carousel-track img, .carousel-track .carousel-fill {
  width: 240px;
  height: 180px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}
.carousel-track .carousel-fill {
  background: var(--surface-2);
}
@keyframes carouselScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── LECLERC CAROUSEL ── */
.leclerc-carousel-wrap {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface-2);
}
.leclerc-carousel-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: leclercScroll 50s linear infinite;
}
.leclerc-carousel-track:hover { animation-play-state: paused; }
.leclerc-carousel-track img, .leclerc-carousel-track .carousel-fill {
  width: 200px;
  height: 260px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}
.leclerc-carousel-track .carousel-fill {
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-3);
}
@keyframes leclercScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── 1v1 carousel ── */
#v1carousel {
  align-items: flex-start;
}
#v1carousel img {
  width: 500px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

/* ── YOUTUBE LINK ── */
.yt-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.yt-link:hover {
  transform: scale(1.06);
  box-shadow: 0 0 20px rgba(232,0,61,0.4);
  background: #ff1a4a;
}
.yt-link:active {
  transform: scale(0.96);
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-3);
  font-size: 0.75rem;
}
footer .footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--text-3);
}
footer .footer-logo span { color: var(--accent); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { padding: 0 1.5rem 3rem; }
  .section { padding: 3.5rem 1.5rem; }
  .visitor-bar { padding: 0.9rem 1.5rem; }
  .janet-shrine { grid-template-columns: 1fr; }
  .janet-img-wrap { border-right: none; border-bottom: 1px solid var(--border); }
  footer { padding: 1.5rem; }
  .nav { padding: 0 1.25rem; }
  .quotes-ticker-inner span { margin: 0 1rem; }
  .grid-2 { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .achievements-grid { grid-template-columns: 1fr; }
  .brawler-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); }
  .ferrari-hero, .fh6-hero { height: 45vh; min-height: 300px; padding: 0 1.5rem 2rem; }
  .hero-title { font-size: clamp(2.5rem, 15vw, 5rem); }
  .code-block { font-size: 0.65rem; word-break: break-all; }
  .hero-verified svg { width: 24px; height: 24px; }
  .visitor-count .number { font-size: 2rem; }
  .ticker-text { animation-duration: 20s; }
  .quotes-ticker-inner { animation-duration: 25s; }
}

@media (max-width: 480px) {
  .nav { padding: 0 0.75rem; height: 50px; }
  .nav-links a { font-size: 0.7rem; padding: 0.3rem 0.5rem; }
  .nav-logo { font-size: 1.1rem; }
  .section { padding: 2.5rem 1rem; }
  .hero { padding: 0 1rem 2.5rem; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .stat-cell { padding: 0.85rem 1rem; }
  .stat-value { font-size: 1.4rem; }
  .hero-title .goat { display: block; }
  .visitor-bar { padding: 0.7rem 1rem; flex-direction: column; align-items: stretch; gap: 0.5rem; }
  .visitor-count .number { font-size: 1.8rem; }
  .visitor-scroll { max-width: 100%; }
  .ferrari-hero, .fh6-hero { height: 35vh; min-height: 220px; padding: 0 1rem 1.5rem; }
  .ferrari-title, .fh6-title { font-size: clamp(2rem, 8vw, 3.5rem); }
  .achievements-grid { grid-template-columns: 1fr; }
  .brawler-grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .brawler-img-placeholder { font-size: 1.8rem; }
  .brawler-name { font-size: 0.65rem; padding: 0.4rem; }
  footer { font-size: 0.65rem; padding: 1rem; flex-direction: column; text-align: center; gap: 0.5rem; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero-eyebrow { font-size: 0.55rem; }
  .tag-pill { font-size: 0.65rem; padding: 0.2rem 0.55rem; }
  .profile-avatar { width: 56px; height: 56px; }
  .visitor-count { flex-direction: column; align-items: flex-start; gap: 0.2rem; }
  .hero-meta { gap: 0.4rem; }
  .hero-content { max-width: 100%; }
  .timeline { padding-left: 1.5rem; }
  .timeline-item { padding: 0 0 2rem 1rem; }
  .audio-section { flex-direction: column; }
  .audio-btn { width: 100%; justify-content: center; }
  .stat-label { font-size: 0.6rem; }
}
