/* ═══════════════════════════════════════════
   Ansem Wojak — Warm Sepia Growth Theme
   ═══════════════════════════════════════════ */

:root {
  --black: #120c09;
  --black-2: #1a120e;
  --black-3: #2b1b17;
  --brick: #3d2818;
  --gold: #c9a227;
  --gold-bright: #e8c86a;
  --gold-glow: #f5e6d3;
  --orange: #b87333;
  --orange-fire: #8b5e3c;
  --white: #f5e6d3;
  --white-dim: #b8a690;
  --red: #8b4513;
  --cream: #f5e6d3;
  --brown-warm: #6b4423;
  --font-display: "Caveat", cursive;
  --font-body: "DM Sans", sans-serif;
  --font-brush: "Caveat", cursive;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-punch: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--black);
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: default;
  line-height: 1.6;
}

body.loading {
  overflow: hidden;
}

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

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.text-gold {
  background: linear-gradient(
    135deg,
    var(--gold-bright),
    var(--gold),
    var(--orange)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Preloader ─── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__ring {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader__glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 162, 39, 0.25) 0%,
    transparent 70%
  );
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.preloader__logo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--gold-bright);
  box-shadow: 0 0 40px rgba(201, 162, 39, 0.4);
  animation: logoPulse 1.5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes logoPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 40px rgba(212, 160, 18, 0.5);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(245, 197, 24, 0.8);
  }
}

.preloader__text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  animation: textFlicker 2s ease-in-out infinite;
}

@keyframes textFlicker {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  52% {
    opacity: 1;
  }
  54% {
    opacity: 0.4;
  }
  56% {
    opacity: 1;
  }
}

.preloader__bar {
  width: 200px;
  height: 3px;
  background: var(--black-3);
  border-radius: 2px;
  overflow: hidden;
}

.preloader__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  animation: loadBar 2s var(--ease-out-expo) forwards;
}

@keyframes loadBar {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* ─── Spotlight & Embers ─── */
.spotlight {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 162, 39, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

.spotlight.active {
  opacity: 1;
}

.embers-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ─── Nav ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 2rem;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: rgba(5, 5, 5, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  padding: 0.5rem 2rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.nav__ticker {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-bright);
}

.nav__links {
  display: flex;
  gap: 2rem;
}

.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.2s;
  position: relative;
}

.nav__links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out-expo);
}

.nav__links a:hover {
  color: var(--gold-bright);
}
.nav__links a:hover::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__social {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 160, 18, 0.3);
  border-radius: 50%;
  color: var(--white-dim);
  transition: all 0.2s;
}

.nav__social svg {
  width: 16px;
  height: 16px;
}

.nav__social:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  transform: translateY(-2px);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.nav__burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__burger.open span:nth-child(2) {
  opacity: 0;
}
.nav__burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(5, 5, 5, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-out-expo);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.2em;
  color: var(--white);
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--gold-bright);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.btn--sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
}
.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold), #b8860b);
  color: var(--black);
  border: none;
  box-shadow: 0 4px 20px rgba(212, 160, 18, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn--gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px rgba(212, 160, 18, 0.6);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(245, 240, 232, 0.3);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  transform: translateY(-2px);
}

.btn__shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
  0%,
  100% {
    left: -100%;
  }
  50% {
    left: 150%;
  }
}

.btn--punch:active {
  animation: punchHit 0.15s ease;
}

@keyframes punchHit {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.05);
  animation: heroZoom 24s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1.12);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to bottom,
      rgba(18, 12, 9, 0.55) 0%,
      rgba(18, 12, 9, 0.25) 45%,
      rgba(18, 12, 9, 0.92) 100%
    ),
    linear-gradient(
      to right,
      rgba(18, 12, 9, 0.6) 0%,
      transparent 55%,
      rgba(18, 12, 9, 0.45) 100%
    );
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 8rem 2rem 4rem;
  max-width: 900px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  border: 1px solid rgba(212, 160, 18, 0.5);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--gold-bright);
  margin-bottom: 1.5rem;
  background: rgba(212, 160, 18, 0.08);
  backdrop-filter: blur(10px);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00ff88;
  box-shadow: 0 0 10px #00ff88;
  animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero__title {
  line-height: 0.9;
  margin-bottom: 1.5rem;
}

.hero__title-script {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 16vw, 8.5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 0.95;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5), 0 0 60px rgba(201, 162, 39, 0.25);
  animation: titleFloat 4s ease-in-out infinite alternate;
}

.hero__title-script--sub {
  font-size: clamp(3.5rem, 12vw, 6.5rem);
  color: var(--gold-bright);
  margin-top: -0.15em;
}

@keyframes titleFloat {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-4px);
  }
}

.hero__tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--white-dim);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero__tagline strong {
  color: var(--white);
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.stat-pill {
  padding: 0.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  text-align: center;
  min-width: 120px;
  transition: transform 0.3s, border-color 0.3s;
}

.stat-pill:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 160, 18, 0.4);
}

.stat-pill--gold {
  border-color: rgba(212, 160, 18, 0.4);
  background: rgba(212, 160, 18, 0.08);
}

.stat-pill__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold-bright);
  line-height: 1;
}

.stat-pill__label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--white-dim);
  margin-top: 0.3rem;
  display: block;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--white-dim);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
  50% {
    transform: scaleY(0.5);
    opacity: 0.5;
  }
}

/* ─── Ticker ─── */
.ticker {
  background: linear-gradient(
    90deg,
    var(--brown-warm),
    var(--gold),
    var(--orange-fire),
    var(--gold),
    var(--brown-warm)
  );
  padding: 0.65rem 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.ticker__track {
  display: flex;
  gap: 4rem;
  animation: tickerScroll 20s linear infinite;
  white-space: nowrap;
}

.ticker__track span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--cream);
  flex-shrink: 0;
}

@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ─── Section Head ─── */
.section-head {
  margin-bottom: 3rem;
}
.section-head--center {
  text-align: center;
}

.section-head__tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 0.5rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(212, 160, 18, 0.3);
  border-radius: 2px;
}

.section-head__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.section-head__sub {
  color: var(--white-dim);
  margin-top: 0.75rem;
  font-size: 1rem;
}

/* ─── Champion ─── */
.champion {
  padding: 8rem 0;
  position: relative;
  background: radial-gradient(
      ellipse at 20% 50%,
      rgba(201, 162, 39, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 80%,
      rgba(139, 94, 60, 0.08) 0%,
      transparent 45%
    ),
    var(--black);
}

.champion__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.champion__visual {
  position: relative;
}

.champion__frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.champion__frame-corner {
  position: absolute;
  width: 30px;
  height: 30px;
  border-color: var(--gold);
  border-style: solid;
  z-index: 2;
}

.champion__frame-corner--tl {
  top: 12px;
  left: 12px;
  border-width: 3px 0 0 3px;
}
.champion__frame-corner--tr {
  top: 12px;
  right: 12px;
  border-width: 3px 3px 0 0;
}
.champion__frame-corner--bl {
  bottom: 12px;
  left: 12px;
  border-width: 0 0 3px 3px;
}
.champion__frame-corner--br {
  bottom: 12px;
  right: 12px;
  border-width: 0 3px 3px 0;
}

.champion__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.champion__frame:hover .champion__img {
  transform: scale(1.05);
}

.champion__glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 160, 18, 0.1), transparent 60%);
  pointer-events: none;
}

.champion__belt {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  border: 2px solid var(--gold);
  padding: 0.6rem 2rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: 3;
}

.champion__belt span {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.champion__belt strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: var(--gold-bright);
}

.champion__lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--white-dim);
  margin-bottom: 2rem;
}

.champion__lead strong {
  color: var(--white);
}
.champion__lead em {
  color: var(--gold-bright);
  font-style: normal;
}

.champion__traits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.trait-card {
  display: flex;
  gap: 1rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  transition: all 0.3s;
}

.trait-card:hover {
  border-color: rgba(212, 160, 18, 0.3);
  transform: translateX(8px);
  background: rgba(212, 160, 18, 0.05);
}

.trait-card__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.trait-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}

.trait-card p {
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.5;
}

.champion__record {
  display: flex;
  gap: 1rem;
}

.record-box {
  flex: 1;
  text-align: center;
  padding: 1.2rem;
  background: rgba(212, 160, 18, 0.08);
  border: 1px solid rgba(212, 160, 18, 0.2);
  border-radius: 8px;
}

.record-box--loss {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.record-box__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--gold-bright);
  line-height: 1.1;
}

.record-box--loss .record-box__num {
  color: var(--white-dim);
}

.record-box__label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--white-dim);
  margin-top: 0.3rem;
  display: block;
}

/* ─── Fight Card ─── */
.fightcard {
  padding: 8rem 0;
  background: radial-gradient(
      ellipse at 80% 20%,
      rgba(201, 162, 39, 0.07) 0%,
      transparent 50%
    ),
    var(--black-2);
  position: relative;
}

.fightcard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a012' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.fightcard__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

.fight-bout {
  background: var(--black-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
}

.fight-bout:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 160, 18, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 160, 18, 0.1);
}

.fight-bout--featured {
  border-color: rgba(212, 160, 18, 0.4);
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 20px 60px rgba(212, 160, 18, 0.15);
}

.fight-bout--featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.fight-bout__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
}

.fight-bout__poster {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--black);
}

.fight-bout__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease-out-expo);
}

.fight-bout:hover .fight-bout__poster img {
  transform: scale(1.1);
}

.fight-bout__vs,
.fight-bout__vs--gold {
  display: none;
}

.fight-bout__info {
  padding: 1.5rem;
}

.fight-bout__round {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.fight-bout__info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  margin: 0.3rem 0 0.5rem;
}

.fight-bout__info p {
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.fight-bout__odds {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.odds-bar {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.odds-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  border-radius: 2px;
  animation: oddsGrow 1.5s var(--ease-out-expo) forwards;
  transform-origin: left;
}

@keyframes oddsGrow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.odds-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--gold-bright);
  white-space: nowrap;
}

/* ─── Buy ─── */
.buy {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.buy__arena {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.buy__spotlight {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: spotPulse 4s ease-in-out infinite alternate;
}

.buy__spotlight--left {
  top: 20%;
  left: -10%;
  background: var(--gold);
}

.buy__spotlight--right {
  bottom: 10%;
  right: -10%;
  background: var(--orange);
  animation-delay: 2s;
}

@keyframes spotPulse {
  from {
    opacity: 0.1;
    transform: scale(1);
  }
  to {
    opacity: 0.2;
    transform: scale(1.2);
  }
}

.buy__card {
  max-width: 700px;
  margin: 0 auto;
}

.buy__card-inner {
  background: linear-gradient(
    135deg,
    rgba(20, 20, 20, 0.9),
    rgba(10, 10, 10, 0.95)
  );
  border: 1px solid rgba(212, 160, 18, 0.3);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.buy__card-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    var(--orange),
    var(--gold),
    transparent
  );
}

.buy__tag {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.buy__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0.5rem 0 1rem;
}

.buy__desc {
  color: var(--white-dim);
  margin-bottom: 2rem;
}

.buy__steps {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.buy__steps li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.3s;
}

.buy__steps li:hover {
  border-color: rgba(212, 160, 18, 0.3);
}

.buy__step-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
}

.buy__steps strong {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.buy__steps p {
  font-size: 0.85rem;
  color: var(--white-dim);
}

.buy__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.buy__ca {
  font-size: 0.8rem;
  color: var(--white-dim);
}

.buy__ca code {
  color: var(--gold);
  background: rgba(212, 160, 18, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
}

/* ─── Community ─── */
.community {
  padding: 6rem 0 8rem;
  background: var(--black);
}

.community__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.community-card {
  display: block;
  padding: 2.5rem 2rem;
  background: var(--black-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
}

.community-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 160, 18, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.community-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 160, 18, 0.4);
}

.community-card:hover::before {
  opacity: 1;
}

.community-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.community-card__icon svg {
  width: 28px;
  height: 28px;
}

.community-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.community-card p {
  font-size: 0.85rem;
  color: var(--white-dim);
}

.community-card__arrow {
  display: block;
  margin-top: 1rem;
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform 0.3s;
}

.community-card:hover .community-card__arrow {
  transform: translateX(6px);
}

.community-card--x:hover {
  border-color: rgba(255, 255, 255, 0.3);
}
.community-card--tg:hover {
  border-color: rgba(0, 136, 204, 0.5);
}
.community-card--pump:hover {
  border-color: rgba(0, 255, 136, 0.4);
}

/* ─── Footer ─── */
.footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--black-2);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer__logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  opacity: 0.7;
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--white-dim);
  letter-spacing: 0.05em;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer__links a {
  font-size: 0.8rem;
  color: var(--white-dim);
  letter-spacing: 0.1em;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--gold-bright);
}

/* ─── Impact Flash ─── */
.impact-flash {
  position: fixed;
  inset: 0;
  background: radial-gradient(
    circle,
    rgba(232, 200, 106, 0.25) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.1s;
}

.impact-flash.active {
  opacity: 1;
}

/* ─── Reveal Animations ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo),
    transform 0.8s var(--ease-out-expo);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Screen Shake ─── */
body.shake {
  animation: screenShake 0.4s ease;
}

@keyframes screenShake {
  0%,
  100% {
    transform: translate(0);
  }
  10% {
    transform: translate(-4px, 2px);
  }
  20% {
    transform: translate(4px, -2px);
  }
  30% {
    transform: translate(-3px, -1px);
  }
  40% {
    transform: translate(3px, 1px);
  }
  50% {
    transform: translate(-2px, 2px);
  }
  60% {
    transform: translate(2px, -1px);
  }
  70% {
    transform: translate(-1px, 1px);
  }
  80% {
    transform: translate(1px, -1px);
  }
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .champion__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .fightcard__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .fight-bout--featured {
    transform: none;
  }
  .fight-bout--featured:hover {
    transform: translateY(-8px);
  }
  .community__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }
  .nav__burger {
    display: flex;
  }
  .nav__cta {
    display: none;
  }
  .nav {
    padding: 0.8rem 1rem;
  }
  .hero__content {
    padding: 7rem 1.5rem 3rem;
  }
  .buy__card-inner {
    padding: 2rem 1.5rem;
  }
  .champion__record {
    flex-direction: column;
  }
}
