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

:root {
  --gold:      #FDB927;
  --blue:      #006BB6;
  --blue-dark: #0050A0;
  --green:     #39FF14;
  --pink:      #FF073A;
  --cyan:      #00D4FF;
  --bg:        #050810;
  --bg2:       #080d1a;
  --card-bg:   #0c1428;
  --card-border: rgba(253, 185, 39, 0.15);
  --text:      #e8eeff;
  --muted:     #6a7da8;
  --radius:    16px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Exo 2', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
.text-gold  { color: var(--gold); }
.text-pink  { color: var(--pink); }
.text-cyan  { color: var(--cyan); }
.text-green { color: var(--green); }

/* ── SCROLLBAR ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── NAV ──────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: transparent;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(5, 8, 16, 0.85);
  backdrop-filter: blur(16px);
  box-shadow: 0 0 30px rgba(253, 185, 39, 0.1);
  border-bottom: 1px solid rgba(253, 185, 39, 0.12);
}

.nav-logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 2px;
  text-shadow: 0 0 14px rgba(253,185,39,0.6);
}
.nav-logo span { color: var(--cyan); }

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

.nav-link {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text);
  text-decoration: none;
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
  box-shadow: 0 0 6px var(--gold);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  outline: none;
}

.btn-gold {
  background: var(--gold);
  color: #060d1e;
  box-shadow: 0 0 18px rgba(253,185,39,0.5);
}
.btn-gold:hover {
  background: #ffe066;
  box-shadow: 0 0 32px rgba(253,185,39,0.8);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  box-shadow: 0 0 12px rgba(253,185,39,0.2);
}
.btn-outline:hover {
  background: rgba(253,185,39,0.1);
  box-shadow: 0 0 24px rgba(253,185,39,0.5);
  transform: translateY(-3px);
}

.btn-race {
  margin-top: 1rem;
  background: var(--green);
  color: #020d02;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 18px rgba(57,255,20,0.45);
  transition: all 0.25s;
}
.btn-race:hover {
  box-shadow: 0 0 32px rgba(57,255,20,0.8);
  transform: translateY(-3px) scale(1.04);
}
.btn-race:active { transform: scale(0.97); }

/* ── SECTION SHARED ───────────────────────────────────────── */
section { padding: 6rem 2rem; }

.section-header { text-align: center; margin-bottom: 3rem; }

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  font-style: italic;
}

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── HERO ─────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem 3rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 20% 50%, rgba(0,107,182,0.18) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(253,185,39,0.12) 0%, transparent 55%),
              var(--bg);
}

#particles-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle linear infinite;
  pointer-events: none;
}

@keyframes float-particle {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-20px) rotate(720deg); opacity: 0; }
}

.hero-bg-text {
  position: absolute;
  bottom: -0.15em;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(5rem, 18vw, 16rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(253,185,39,0.07);
  white-space: nowrap;
  user-select: none;
  letter-spacing: 0.05em;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-text { flex: 1; }

.hero-eyebrow {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 4px;
  color: var(--cyan);
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(0,212,255,0.6);
  animation: pulse-cyan 3s ease-in-out infinite;
}

@keyframes pulse-cyan {
  0%, 100% { text-shadow: 0 0 8px rgba(0,212,255,0.5); }
  50%       { text-shadow: 0 0 20px rgba(0,212,255,0.9); }
}

.hero-name {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--gold);
  text-shadow:
    0 0 20px rgba(253,185,39,0.7),
    0 0 60px rgba(253,185,39,0.4),
    0 0 120px rgba(253,185,39,0.2);
  animation: neon-gold 4s ease-in-out infinite;
  margin-bottom: 1rem;
}

@keyframes neon-gold {
  0%, 100% {
    text-shadow:
      0 0 20px rgba(253,185,39,0.7),
      0 0 60px rgba(253,185,39,0.4),
      0 0 120px rgba(253,185,39,0.2);
  }
  50% {
    text-shadow:
      0 0 30px rgba(253,185,39,1),
      0 0 80px rgba(253,185,39,0.6),
      0 0 160px rgba(253,185,39,0.3);
  }
}

.hero-tagline {
  font-size: 1rem;
  color: var(--muted);
  letter-spacing: 2px;
  margin-bottom: 2rem;
  font-weight: 600;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-right {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* ── PLAYER CARD ──────────────────────────────────────────── */
.player-card {
  position: relative;
  width: clamp(240px, 32vw, 340px);
  background: linear-gradient(160deg, #0a1628 0%, #06101e 60%, #0d1f3c 100%);
  border: 2px solid #FDB927;
  border-radius: 20px;
  padding: 2rem 1.8rem 1.6rem;
  text-align: center;
  overflow: hidden;
  animation: float-avatar 4s ease-in-out infinite;
  box-shadow:
    0 0 0 1px rgba(253,185,39,0.3),
    0 0 30px rgba(253,185,39,0.2),
    0 0 80px rgba(0,107,182,0.25),
    inset 0 0 40px rgba(0,107,182,0.08);
}

.card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.07) 0%,
    transparent 40%,
    transparent 60%,
    rgba(253,185,39,0.05) 100%);
  border-radius: inherit;
  pointer-events: none;
}

.card-team {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--blue);
  text-shadow: 0 0 10px var(--blue);
  margin-bottom: 0.6rem;
}

.card-number {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(253,185,39,0.6), 0 0 60px rgba(253,185,39,0.2);
  margin-bottom: 0.3rem;
}

.card-name {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #fff;
  text-shadow: 0 0 20px rgba(255,255,255,0.3);
  margin-bottom: 0.3rem;
}

.card-pos {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.2rem;
}

.card-divider {
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 1.2rem;
}

.card-stats {
  display: flex;
  justify-content: space-around;
  margin-bottom: 1.2rem;
}

.card-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.stat-val {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat-lbl {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}

.card-badge {
  display: inline-block;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  border: 1px solid rgba(253,185,39,0.4);
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
  background: rgba(253,185,39,0.06);
}

@keyframes float-avatar {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* ── BOUNCE BALL ──────────────────────────────────────────── */
.bounce-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
}

.bounce-ball {
  width: 72px;
  height: 72px;
  cursor: pointer;
  animation: idle-bob 2.5s ease-in-out infinite;
  transition: transform 0.1s;
  user-select: none;
}
.bounce-ball:hover { transform: scale(1.1); }
.bounce-ball:active { transform: scale(0.92); }

@keyframes idle-bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.bounce-ball.bouncing {
  animation: bounce-physics 1.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

@keyframes bounce-physics {
  0%   { transform: translateY(0)     scaleY(1)    scaleX(1); }
  15%  { transform: translateY(-110px) scaleY(1.05) scaleX(0.95); }
  30%  { transform: translateY(0)     scaleY(0.8)  scaleX(1.15); }
  40%  { transform: translateY(-65px) scaleY(1.02) scaleX(0.98); }
  52%  { transform: translateY(0)     scaleY(0.88) scaleX(1.08); }
  62%  { transform: translateY(-30px) scaleY(1)    scaleX(1); }
  72%  { transform: translateY(0)     scaleY(0.93) scaleX(1.05); }
  82%  { transform: translateY(-12px) scaleY(1)    scaleX(1); }
  90%  { transform: translateY(0)     scaleY(0.97) scaleX(1.02); }
  100% { transform: translateY(0)     scaleY(1)    scaleX(1); }
}

.ball-shadow {
  width: 50px;
  height: 10px;
  background: radial-gradient(ellipse, rgba(253,185,39,0.5) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.1s;
}

.ball-hint {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem;
  color: var(--cyan);
  letter-spacing: 2px;
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: var(--muted);
  text-decoration: none;
  animation: bounce-hint 2s ease-in-out infinite;
  z-index: 1;
}
@keyframes bounce-hint {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── SPARK PARTICLES ──────────────────────────────────────── */
#sparkContainer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}
.spark {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: spark-burst 0.8s ease-out forwards;
  pointer-events: none;
}
@keyframes spark-burst {
  0%   { transform: translate(0, 0) scale(1); opacity: 1; }
  100% { transform: translate(var(--dx), var(--dy)) scale(0); opacity: 0; }
}

/* ── HOBBIES ──────────────────────────────────────────────── */
#hobbies {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}

.hobbies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.hobby-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-align: center;
}
.hobby-card:hover {
  transform: translateY(-8px);
}

.card-glow {
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  width: 180px; height: 80px;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0;
  transition: opacity 0.3s;
}
.hobby-card:hover .card-glow { opacity: 1; }

.glow-green  { background: var(--green);  }
.glow-blue   { background: var(--cyan);   }
.glow-pink   { background: var(--pink);   }
.glow-gold   { background: var(--gold);   }

.card-rc:hover   { border-color: var(--green); box-shadow: 0 8px 40px rgba(57,255,20,0.2);  }
.card-rl:hover   { border-color: var(--cyan);  box-shadow: 0 8px 40px rgba(0,212,255,0.2);  }
.card-fb:hover   { border-color: var(--pink);  box-shadow: 0 8px 40px rgba(255,7,58,0.2);   }
.card-bball:hover{ border-color: var(--gold);  box-shadow: 0 8px 40px rgba(253,185,39,0.2); }

.card-icon-wrap {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  border: 1px solid rgba(255,255,255,0.08);
}
.card-icon { font-size: 2rem; line-height: 1; }

.hobby-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.hobby-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.card-badge {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
}
.badge-cyan  { background: rgba(0,212,255,0.15); color: var(--cyan);  border: 1px solid rgba(0,212,255,0.3); }
.badge-pink  { background: rgba(255,7,58,0.15);  color: var(--pink);  border: 1px solid rgba(255,7,58,0.3);  }
.badge-gold  { background: rgba(253,185,39,0.15);color: var(--gold);  border: 1px solid rgba(253,185,39,0.3);}

/* ── RC RACE OVERLAY ──────────────────────────────────────── */
.rc-overlay {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 170px;
  background: #070a0f;
  border-top: 3px solid var(--green);
  box-shadow: 0 -8px 40px rgba(57,255,20,0.25);
  transform: translateY(105%);
  transition: transform 0.45s cubic-bezier(0.34, 1.4, 0.64, 1);
  z-index: 800;
  overflow: hidden;
}
.rc-overlay.active { transform: translateY(0); }

/* countdown */
.rc-countdown-display {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: 4px;
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.15s, transform 0.15s;
}
.rc-countdown-display.show {
  opacity: 1;
  transform: scale(1);
}
.rc-countdown-display.c3  { color: #FF073A; text-shadow: 0 0 30px #FF073A; }
.rc-countdown-display.c2  { color: #FDB927; text-shadow: 0 0 30px #FDB927; }
.rc-countdown-display.c1  { color: #FDB927; text-shadow: 0 0 30px #FDB927; }
.rc-countdown-display.cgo { color: var(--green); text-shadow: 0 0 40px var(--green); font-size: 3.5rem; }

/* road */
.rc-road {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px, transparent 60px,
    rgba(253,185,39,0.12) 60px, rgba(253,185,39,0.12) 62px
  );
}
.rc-road-line {
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.15) 0px, rgba(255,255,255,0.15) 40px,
    transparent 40px, transparent 80px
  );
  transform: translateY(-50%);
  animation: road-scroll 0.4s linear infinite;
}
@keyframes road-scroll {
  from { background-position: 0 0; }
  to   { background-position: 80px 0; }
}

/* start lights */
.rc-start-lights {
  position: absolute;
  left: 24px; top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 5;
}
.rc-light {
  display: block;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #1a1a1a;
  border: 2px solid #333;
  transition: background 0.1s, box-shadow 0.1s;
}
.rc-light.red {
  background: #ff1a1a;
  box-shadow: 0 0 12px #ff1a1a;
  border-color: #ff1a1a;
}
.rc-light.green {
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
  border-color: var(--green);
}

/* finish flag */
.rc-finish {
  position: absolute;
  right: 28px; top: 50%;
  transform: translateY(-50%);
  font-size: 2.4rem;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 5;
  animation: flag-wave 0.4s ease-in-out infinite alternate;
}
.rc-finish.show { opacity: 1; }
@keyframes flag-wave {
  from { transform: translateY(-50%) rotate(-8deg); }
  to   { transform: translateY(-50%) rotate(8deg);  }
}

/* car */
.rc-car-wrap {
  position: absolute;
  bottom: 18px;
  width: 230px;
  left: -260px;
}
.rc-car-wrap.flipped { transform: scaleX(-1); }

.rc-car-wrap.racing {
  animation: car-race-lr 1.9s cubic-bezier(0.25, 0.1, 0.1, 1) forwards;
}
.rc-car-wrap.flipped.racing {
  animation: car-race-rl 1.9s cubic-bezier(0.25, 0.1, 0.1, 1) forwards;
}

@keyframes car-race-lr {
  0%   { left: -260px; }
  100% { left: calc(100% + 30px); }
}
@keyframes car-race-rl {
  0%   { right: -260px; left: auto; }
  100% { right: calc(100% + 30px); left: auto; }
}

/* spinning wheels */
.rc-car-wrap.racing .rc-wheel {
  animation: wheel-spin 0.12s linear infinite;
}
@keyframes wheel-spin {
  to { transform: rotate(360deg); }
}

.rc-svg { width: 100%; display: block; overflow: visible; }

/* ── FOOD / FUEL ──────────────────────────────────────────── */
#food {
  background: radial-gradient(ellipse at center, rgba(255,7,58,0.06) 0%, transparent 70%), var(--bg2);
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 1.2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.food-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,7,58,0.12);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: default;
}
.food-card:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: var(--pink);
  box-shadow: 0 8px 30px rgba(255,7,58,0.2);
}

.food-emoji {
  display: block;
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  animation: food-jiggle 3s ease-in-out infinite;
}
.food-card:hover .food-emoji { animation: food-jiggle-fast 0.4s ease-in-out infinite; }

@keyframes food-jiggle {
  0%, 90%, 100% { transform: rotate(0deg); }
  95%           { transform: rotate(-5deg); }
}
@keyframes food-jiggle-fast {
  0%, 100% { transform: rotate(-6deg) scale(1.05); }
  50%      { transform: rotate(6deg) scale(1.05); }
}

.food-name {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.food-stars {
  color: var(--gold);
  font-size: 0.75rem;
  margin-bottom: 0.6rem;
  letter-spacing: 1px;
}

.food-meter {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.meter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--gold));
  border-radius: 2px;
  transition: width 1.2s ease;
}

.food-fav {
  border-color: var(--gold) !important;
  box-shadow: 0 0 20px rgba(253,185,39,0.2);
  background: linear-gradient(135deg, #0c1428 0%, #12192e 100%);
}
.food-fav-badge {
  position: absolute;
  top: -10px; right: -8px;
  background: var(--gold);
  color: #060d1e;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  white-space: nowrap;
}

/* ── WARRIORS ─────────────────────────────────────────────── */
#warriors {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(0,107,182,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(253,185,39,0.15) 0%, transparent 55%),
    var(--bg);
  position: relative;
  overflow: hidden;
}

.warriors-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(6rem, 20vw, 18rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(253,185,39,0.05);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

.warriors-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.warriors-text { flex: 1; }

.warriors-eyebrow {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 4px;
  color: var(--cyan);
  margin-bottom: 1rem;
}

.warriors-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.warriors-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 2rem;
}

.warriors-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stat-box {
  text-align: center;
  padding: 1rem 1.5rem;
  background: rgba(253,185,39,0.07);
  border: 1px solid rgba(253,185,39,0.2);
  border-radius: var(--radius);
  min-width: 90px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(253,185,39,0.2);
}

.stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  text-shadow: 0 0 16px rgba(253,185,39,0.6);
}
.stat-label {
  font-size: 0.65rem;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-top: 0.3rem;
}

.warriors-emblem {
  flex: 0 0 280px;
  width: 280px;
  animation: float-emblem 5s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(253,185,39,0.3));
}
@keyframes float-emblem {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-12px) rotate(1deg); }
}

/* Championship Banners */
.banners-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 4rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.banner {
  width: 90px;
  padding: 2rem 0.75rem 1rem;
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: 0 0 8px 8px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 20px rgba(253,185,39,0.15);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
  animation: banner-sway 3s ease-in-out infinite;
}
.banner:nth-child(2) { animation-delay: 0.4s; }
.banner:nth-child(3) { animation-delay: 0.8s; }
.banner:nth-child(4) { animation-delay: 1.2s; }

@keyframes banner-sway {
  0%, 100% { transform: rotate(-1deg); }
  50%       { transform: rotate(1deg); }
}

.banner-year {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gold);
  text-shadow: 0 0 10px rgba(253,185,39,0.6);
}
.banner-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.45rem;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.7);
  margin-top: 0.4rem;
}

/* ── ABOUT / FOOTER ───────────────────────────────────────── */
#about {
  background: linear-gradient(180deg, var(--bg2) 0%, #030508 100%);
  padding: 5rem 2rem 0;
}

.about-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.about-avatar-small {
  width: 130px;
  height: 130px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 16px rgba(253,185,39,0.3));
}

.about-content { flex: 1; min-width: 260px; }

.about-content h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.about-bio {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.about-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; }

.tag {
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  border: 1px solid;
}
.tag-gold  { background: rgba(253,185,39,0.1);  color: var(--gold);  border-color: rgba(253,185,39,0.3); }
.tag-blue  { background: rgba(0,107,182,0.15);  color: #5eb5ff;      border-color: rgba(0,107,182,0.3);  }
.tag-cyan  { background: rgba(0,212,255,0.1);   color: var(--cyan);  border-color: rgba(0,212,255,0.3);  }
.tag-green { background: rgba(57,255,20,0.1);   color: var(--green); border-color: rgba(57,255,20,0.3);  }
.tag-pink  { background: rgba(255,7,58,0.1);    color: var(--pink);  border-color: rgba(255,7,58,0.3);   }

.footer-bar {
  border-top: 1px solid rgba(253,185,39,0.1);
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .warriors-inner { flex-direction: column; text-align: center; }
  .warriors-desc { margin: 0 auto 2rem; }
  .warriors-stats { justify-content: center; }
  .warriors-emblem { flex: 0 0 220px; width: 220px; }
}

@media (max-width: 768px) {
  .hero-inner { flex-direction: column; text-align: center; padding-top: 1rem; gap: 1rem; }
  .hero-cta { justify-content: center; }
  .hero-right { order: -1; flex-direction: row; align-items: flex-end; gap: 1rem; }
  .player-card { width: clamp(180px, 55vw, 260px); padding: 1.4rem 1.2rem; }
  .bounce-zone { gap: 2px; }
  .bounce-ball { width: 54px; height: 54px; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(5,8,16,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    backdrop-filter: blur(20px);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.1rem; }
  .hamburger { display: block; z-index: 1000; }
  section { padding: 4rem 1.2rem; }
  .hobbies-grid { grid-template-columns: 1fr 1fr; }
  .food-grid { grid-template-columns: repeat(3, 1fr); }
  .warriors-emblem { width: 180px; flex: 0 0 180px; }
}

@media (max-width: 420px) {
  .hobbies-grid { grid-template-columns: 1fr; }
  .food-grid { grid-template-columns: repeat(2, 1fr); }
}
