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

:root {
  --gold: #e8c547;
  --gold-bright: #ffe566;
  --gold-light: #fff3b0;
  --gold-dark: #a67c00;
  --gold-deep: #7a5c00;
  --gold-glow: rgba(255, 229, 102, 0.55);
  --green: #006b3f;
  --green-bright: #00a86b;
  --green-dark: #003d24;
  --green-pitch: #0a4d2e;
  --passion: #e31837;
  --passion-dark: #9b0f24;
  --navy: #0b1a2e;
  --navy-deep: #060e18;
  --bg: #050c14;
  --bg-card: rgba(11, 26, 46, 0.72);
  --bg-card-hover: rgba(14, 36, 58, 0.88);
  --text: #f4f7fb;
  --text-muted: #8fa3b8;
  --border-gold: rgba(232, 197, 71, 0.35);
  --font-display: "Bebas Neue", sans-serif;
  --font-heading: "Barlow Condensed", sans-serif;
  --font-body: "Barlow", sans-serif;
  --nav-h: 76px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
  font-weight: 400;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(
      ellipse 90% 55% at 50% -5%,
      rgba(255, 229, 102, 0.14) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 70% 45% at 0% 50%,
      rgba(0, 107, 63, 0.18) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 60% 40% at 100% 70%,
      rgba(227, 24, 55, 0.08) 0%,
      transparent 45%
    ),
    linear-gradient(175deg, #081420 0%, var(--bg) 35%, var(--navy-deep) 100%);
  z-index: -4;
  pointer-events: none;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}

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

/* ===== FIFA METALLIC GOLD TEXT ===== */
.gold-text {
  background: linear-gradient(
    165deg,
    #fff9e0 0%,
    #ffe566 18%,
    #e8c547 38%,
    #fff3b0 52%,
    #c9a227 68%,
    #ffe566 82%,
    #fff9e0 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShine 5s ease-in-out infinite;
  filter: drop-shadow(0 2px 12px rgba(255, 229, 102, 0.35));
}

@keyframes goldShine {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

/* ===== STADIUM BACKGROUND FX ===== */
#particles {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.pitch-lines {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
      90deg,
      transparent,
      transparent 119px,
      rgba(255, 255, 255, 0.8) 119px,
      rgba(255, 255, 255, 0.8) 120px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 119px,
      rgba(255, 255, 255, 0.8) 119px,
      rgba(255, 255, 255, 0.8) 120px
    );
  mask-image: radial-gradient(
    ellipse 80% 70% at 50% 40%,
    black 20%,
    transparent 75%
  );
}

.gold-dust {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image: radial-gradient(
      1.5px 1.5px at 15% 25%,
      rgba(255, 229, 102, 0.7) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 45% 65%,
      rgba(255, 243, 176, 0.5) 0%,
      transparent 100%
    ),
    radial-gradient(
      2px 2px at 72% 35%,
      rgba(232, 197, 71, 0.6) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 88% 72%,
      rgba(255, 255, 255, 0.4) 0%,
      transparent 100%
    );
  animation: dustDrift 18s ease-in-out infinite alternate;
}

@keyframes dustDrift {
  0% {
    transform: translateY(0);
    opacity: 0.5;
  }
  100% {
    transform: translateY(-40px);
    opacity: 0.9;
  }
}

.stadium-beams {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.beam {
  position: absolute;
  width: 3px;
  height: 140%;
  top: -20%;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 243, 176, 0.25),
    transparent
  );
  filter: blur(1px);
  transform-origin: top center;
  animation: beamSweep 12s ease-in-out infinite;
}

.beam-1 {
  left: 18%;
  transform: rotate(18deg);
  animation-delay: 0s;
}
.beam-2 {
  left: 50%;
  transform: rotate(-8deg);
  animation-delay: -4s;
  opacity: 0.7;
}
.beam-3 {
  left: 78%;
  transform: rotate(-22deg);
  animation-delay: -8s;
}

@keyframes beamSweep {
  0%,
  100% {
    opacity: 0.15;
    transform: rotate(18deg) scaleY(0.9);
  }
  50% {
    opacity: 0.45;
    transform: rotate(22deg) scaleY(1.05);
  }
}

.spotlight {
  position: fixed;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -2;
  pointer-events: none;
  animation: spotlightPulse 10s ease-in-out infinite;
}

.spotlight-left {
  top: -250px;
  left: -150px;
  background: rgba(255, 229, 102, 0.18);
}

.spotlight-right {
  bottom: -250px;
  right: -150px;
  background: rgba(0, 107, 63, 0.22);
  animation-delay: -5s;
}

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

/* ===== NAV — BROADCAST BAR ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

.nav::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--passion),
    var(--gold-bright),
    var(--green-bright),
    var(--gold-bright),
    var(--passion)
  );
  background-size: 200% 100%;
  animation: tickerStripe 6s linear infinite;
  opacity: 0.85;
}

@keyframes tickerStripe {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.nav.scrolled {
  background: rgba(5, 12, 20, 0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-bright);
  text-shadow: 0 0 20px var(--gold-glow);
}

.nav-logo img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px var(--gold-glow));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a:not(.btn) {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s, text-shadow 0.3s;
  position: relative;
}

.nav-links a:not(.btn)::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--passion), var(--gold-bright));
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:not(.btn):hover {
  color: var(--gold-light);
  text-shadow: 0 0 12px rgba(255, 229, 102, 0.4);
}

.nav-links a:not(.btn):hover::before {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold-bright);
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== BUTTONS — ANGULAR BROADCAST ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
  border: none;
  text-decoration: none;
  position: relative;
  clip-path: polygon(14px 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-gold {
  background: linear-gradient(
    135deg,
    #fff3b0 0%,
    #ffe566 30%,
    #e8c547 60%,
    #c9a227 100%
  );
  color: #1a0f00;
  box-shadow: 0 4px 0 var(--gold-deep), 0 8px 30px var(--gold-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -2px 0 rgba(122, 92, 0, 0.3);
}

.btn-gold:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow: 0 6px 0 var(--gold-deep), 0 14px 40px rgba(255, 229, 102, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.btn-gold:active {
  transform: translateY(1px);
  box-shadow: 0 2px 0 var(--gold-deep), 0 4px 20px var(--gold-glow);
}

.btn-outline {
  background: rgba(11, 26, 46, 0.6);
  color: var(--gold-light);
  border: 2px solid var(--border-gold);
  box-shadow: inset 0 0 20px rgba(255, 229, 102, 0.05);
}

.btn-outline:hover {
  background: rgba(232, 197, 71, 0.12);
  border-color: var(--gold-bright);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 229, 102, 0.2),
    inset 0 0 30px rgba(255, 229, 102, 0.08);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.82rem;
}
.btn-lg {
  padding: 16px 36px;
  font-size: 0.95rem;
}
.btn-xl {
  padding: 20px 48px;
  font-size: 1.05rem;
}

.shimmer {
  overflow: hidden;
}

.shimmer::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 70%
  );
  animation: shimmer 2.8s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    left: -120%;
  }
  55%,
  100% {
    left: 180%;
  }
}

.pulse-glow {
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 4px 0 var(--gold-deep), 0 8px 25px var(--gold-glow);
  }
  50% {
    box-shadow: 0 4px 0 var(--gold-deep), 0 8px 50px rgba(255, 229, 102, 0.75),
      0 0 80px rgba(255, 229, 102, 0.25);
  }
}

/* ===== SECTIONS ===== */
.section {
  padding: 110px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: linear-gradient(
    90deg,
    var(--gold-dark),
    var(--gold-bright),
    var(--gold-dark)
  );
  padding: 8px 32px;
  margin-bottom: 20px;
  clip-path: polygon(
    10px 0,
    calc(100% - 10px) 0,
    100% 50%,
    calc(100% - 10px) 100%,
    10px 100%,
    0 50%
  );
  box-shadow: 0 4px 20px rgba(255, 229, 102, 0.3);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 1;
}

.title-underline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.title-underline::before,
.title-underline::after {
  content: "";
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-bright));
}

.title-underline::after {
  background: linear-gradient(90deg, var(--gold-bright), transparent);
}

.title-underline {
  width: auto;
  height: auto;
  background: none;
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.18s;
}
.delay-2 {
  transition-delay: 0.36s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.hero-stripe {
  position: absolute;
  top: 30%;
  left: -10%;
  width: 120%;
  height: 280px;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(0, 107, 63, 0.06) 30%,
    rgba(255, 229, 102, 0.04) 50%,
    rgba(227, 24, 55, 0.04) 70%,
    transparent 100%
  );
  transform: skewY(-4deg);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 45%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(255, 229, 102, 0.18) 0%,
    rgba(0, 107, 63, 0.06) 40%,
    transparent 70%
  );
  animation: heroGlow 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroGlow {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin-bottom: 28px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text);
  background: linear-gradient(
    90deg,
    rgba(227, 24, 55, 0.15),
    rgba(11, 26, 46, 0.8)
  );
  border-left: 4px solid var(--passion);
  padding: 10px 20px 10px 16px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-bright);
  flex-shrink: 0;
  animation: pulseDot 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(0, 168, 107, 0.6);
}

@keyframes pulseDot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 168, 107, 0.6);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(0, 168, 107, 0);
  }
}

.hero-title {
  font-family: var(--font-display);
  line-height: 0.95;
  margin-bottom: 24px;
}

.hero-title .gold-text {
  display: block;
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  letter-spacing: 6px;
  line-height: 0.9;
  animation: goldShine 4s ease-in-out infinite,
    titlePulse 6s ease-in-out infinite;
}

@keyframes titlePulse {
  0%,
  100% {
    filter: drop-shadow(0 2px 12px rgba(255, 229, 102, 0.35));
  }
  50% {
    filter: drop-shadow(0 4px 30px rgba(255, 229, 102, 0.6));
  }
}

.hero-symbol {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-top: 14px;
  -webkit-text-fill-color: var(--green-bright);
  text-shadow: 0 0 20px rgba(0, 168, 107, 0.4);
}

.hero-bio {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.5px;
  color: var(--gold-light);
  margin-bottom: 14px;
  line-height: 1.4;
}

.hero-tagline {
  color: var(--text-muted);
  margin-bottom: 36px;
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-stats {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  border: 1px solid var(--border-gold);
  background: rgba(5, 12, 20, 0.6);
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  overflow: hidden;
}

.stat-card {
  padding: 18px 28px;
  position: relative;
  flex: 1;
  min-width: 130px;
}

.stat-card + .stat-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    var(--border-gold),
    transparent
  );
}

.stat-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--passion);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--gold-bright);
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin-top: 4px;
  text-shadow: 0 0 15px var(--gold-glow);
}

/* Trophy */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.trophy-frame {
  position: relative;
  width: min(440px, 82vw);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Shiny logo portrait frame */
.logo-portrait {
  position: relative;
  z-index: 2;
  width: 78%;
  padding: 10px;
  background: linear-gradient(
    145deg,
    #fff9e0 0%,
    #ffe566 15%,
    #c9a227 35%,
    #fff3b0 50%,
    #a67c00 65%,
    #ffe566 80%,
    #fff9e0 100%
  );
  background-size: 250% 250%;
  animation: frameGoldShift 5s ease-in-out infinite,
    float 4.5s ease-in-out infinite;
  clip-path: polygon(
    18px 0,
    calc(100% - 18px) 0,
    100% 18px,
    100% calc(100% - 18px),
    calc(100% - 18px) 100%,
    18px 100%,
    0 calc(100% - 18px),
    0 18px
  );
  box-shadow: 0 0 0 1px rgba(255, 243, 176, 0.5),
    0 0 40px rgba(255, 229, 102, 0.45), 0 20px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -2px 6px rgba(122, 92, 0, 0.35);
}

@keyframes frameGoldShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.logo-frame-outer {
  position: absolute;
  inset: -6px;
  clip-path: polygon(
    22px 0,
    calc(100% - 22px) 0,
    100% 22px,
    100% calc(100% - 22px),
    calc(100% - 22px) 100%,
    22px 100%,
    0 calc(100% - 22px),
    0 22px
  );
  background: conic-gradient(
    from 0deg,
    var(--gold-dark),
    var(--gold-bright),
    #fff,
    var(--gold-bright),
    var(--passion),
    var(--gold-bright),
    var(--green-bright),
    var(--gold-bright),
    var(--gold-dark)
  );
  animation: frameBorderSpin 8s linear infinite;
  z-index: -1;
  opacity: 0.85;
}

@keyframes frameBorderSpin {
  from {
    filter: hue-rotate(0deg) brightness(1.1);
    transform: rotate(0deg);
  }
  to {
    filter: hue-rotate(0deg) brightness(1.1);
    transform: rotate(360deg);
  }
}

.logo-frame-border {
  position: absolute;
  inset: 3px;
  border: 2px solid transparent;
  background: linear-gradient(var(--navy-deep), var(--navy-deep)) padding-box,
    linear-gradient(
        135deg,
        rgba(255, 243, 176, 0.8),
        rgba(232, 197, 71, 0.3),
        rgba(255, 243, 176, 0.8)
      )
      border-box;
  clip-path: polygon(
    14px 0,
    calc(100% - 14px) 0,
    100% 14px,
    100% calc(100% - 14px),
    calc(100% - 14px) 100%,
    14px 100%,
    0 calc(100% - 14px),
    0 14px
  );
  pointer-events: none;
  z-index: 1;
}

.logo-frame-shimmer {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
  clip-path: polygon(
    18px 0,
    calc(100% - 18px) 0,
    100% 18px,
    100% calc(100% - 18px),
    calc(100% - 18px) 100%,
    18px 100%,
    0 calc(100% - 18px),
    0 18px
  );
}

.logo-frame-shimmer::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -80%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.55) 48%,
    rgba(255, 243, 176, 0.8) 50%,
    rgba(255, 255, 255, 0.55) 52%,
    transparent 65%
  );
  animation: frameShimmer 3.5s ease-in-out infinite;
  transform: skewX(-15deg);
}

@keyframes frameShimmer {
  0% {
    left: -80%;
  }
  60%,
  100% {
    left: 160%;
  }
}

.logo-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  z-index: 5;
  pointer-events: none;
}

.logo-corner::before,
.logo-corner::after {
  content: "";
  position: absolute;
  background: linear-gradient(135deg, #fff9e0, #ffe566, #c9a227);
  box-shadow: 0 0 10px rgba(255, 229, 102, 0.7);
}

.logo-corner-tl {
  top: 2px;
  left: 2px;
}
.logo-corner-tl::before {
  top: 0;
  left: 0;
  width: 14px;
  height: 3px;
}
.logo-corner-tl::after {
  top: 0;
  left: 0;
  width: 3px;
  height: 14px;
}

.logo-corner-tr {
  top: 2px;
  right: 2px;
}
.logo-corner-tr::before {
  top: 0;
  right: 0;
  width: 14px;
  height: 3px;
}
.logo-corner-tr::after {
  top: 0;
  right: 0;
  width: 3px;
  height: 14px;
}

.logo-corner-bl {
  bottom: 2px;
  left: 2px;
}
.logo-corner-bl::before {
  bottom: 0;
  left: 0;
  width: 14px;
  height: 3px;
}
.logo-corner-bl::after {
  bottom: 0;
  left: 0;
  width: 3px;
  height: 14px;
}

.logo-corner-br {
  bottom: 2px;
  right: 2px;
}
.logo-corner-br::before {
  bottom: 0;
  right: 0;
  width: 14px;
  height: 3px;
}
.logo-corner-br::after {
  bottom: 0;
  right: 0;
  width: 3px;
  height: 14px;
}

.trophy-img {
  width: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  display: block;
  background: radial-gradient(
    ellipse at center,
    rgba(11, 26, 46, 0.4) 0%,
    var(--navy-deep) 70%
  );
  padding: 12px;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4))
    drop-shadow(0 0 30px rgba(255, 229, 102, 0.25));
}

.float {
  animation: float 4.5s ease-in-out infinite;
}

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

.trophy-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 229, 102, 0.2);
  animation: ringSpin 22s linear infinite;
}

.ring-1 {
  width: 100%;
  height: 100%;
  border-width: 2px;
  border-color: rgba(255, 229, 102, 0.3);
  box-shadow: 0 0 30px rgba(255, 229, 102, 0.1),
    inset 0 0 30px rgba(255, 229, 102, 0.05);
}

.ring-2 {
  width: 118%;
  height: 118%;
  animation-duration: 16s;
  animation-direction: reverse;
  opacity: 0.45;
}
.ring-3 {
  width: 136%;
  height: 136%;
  animation-duration: 28s;
  opacity: 0.2;
}

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

.trophy-shine {
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(255, 243, 176, 0.2) 40deg,
    transparent 80deg,
    rgba(255, 255, 255, 0.15) 160deg,
    transparent 220deg,
    rgba(255, 229, 102, 0.18) 300deg,
    transparent 360deg
  );
  animation: shineRotate 6s linear infinite;
  z-index: 3;
  mix-blend-mode: overlay;
}

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

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  animation: fadeScroll 2.5s ease-in-out infinite;
}

.scroll-line {
  width: 2px;
  height: 44px;
  background: linear-gradient(
    180deg,
    var(--gold-bright),
    var(--passion),
    transparent
  );
  animation: scrollLine 2.5s ease-in-out infinite;
}

@keyframes fadeScroll {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ===== ABOUT ===== */
.about {
  background: linear-gradient(
    180deg,
    transparent,
    rgba(0, 107, 63, 0.06) 50%,
    transparent
  );
}

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

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 52px;
}

.about-card {
  padding: 36px 30px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(16px) saturate(1.3);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s,
    border-color 0.45s;
  position: relative;
  clip-path: polygon(
    0 0,
    calc(100% - 20px) 0,
    100% 20px,
    100% 100%,
    20px 100%,
    0 calc(100% - 20px)
  );
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--passion),
    var(--gold-bright),
    var(--green-bright)
  );
}

.about-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 229, 102, 0.06) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s;
}

.about-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--gold-bright);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 229, 102, 0.12);
}

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

.card-icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.about-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.about-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 400;
}

.about-description {
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
  padding: 36px 40px;
  background: linear-gradient(
    135deg,
    rgba(11, 26, 46, 0.9),
    rgba(0, 61, 36, 0.15)
  );
  border: 1px solid var(--border-gold);
  clip-path: polygon(
    16px 0,
    calc(100% - 16px) 0,
    100% 16px,
    100% calc(100% - 16px),
    calc(100% - 16px) 100%,
    16px 100%,
    0 calc(100% - 16px),
    0 16px
  );
  box-shadow: inset 0 0 40px rgba(255, 229, 102, 0.04);
}

.about-description p {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text);
  font-weight: 400;
}

.about-description p + p {
  margin-top: 14px;
  color: var(--gold-bright);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.5px;
}

/* ===== HOW TO BUY ===== */
.howtobuy {
  position: relative;
}

.howtobuy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 229, 102, 0.05) 0%,
    transparent 55%
  );
  pointer-events: none;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto 52px;
}

.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 30px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(12px);
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  position: relative;
}

.step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(
    180deg,
    var(--passion),
    var(--gold-bright),
    var(--green-bright)
  );
}

.step:hover {
  transform: translateX(10px);
  border-color: var(--gold-bright);
  box-shadow: -6px 0 30px rgba(255, 229, 102, 0.15),
    0 10px 40px rgba(0, 0, 0, 0.3);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: 2px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  min-width: 60px;
  text-shadow: none;
  filter: drop-shadow(0 2px 8px rgba(255, 229, 102, 0.3));
}

.step-body h3 {
  font-family: var(--font-heading);
  color: var(--gold-light);
  margin-bottom: 8px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.step-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.buy-cta {
  text-align: center;
}

.contract-label {
  margin-top: 28px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--passion);
  text-transform: uppercase;
  letter-spacing: 4px;
}

.contract-box {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  padding: 14px 24px;
  background: rgba(5, 12, 20, 0.8);
  border: 1px solid var(--border-gold);
  max-width: 100%;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  box-shadow: inset 0 0 20px rgba(255, 229, 102, 0.04);
}

.contract-box code {
  font-family: "Courier New", monospace;
  font-size: 0.82rem;
  color: var(--gold-bright);
  word-break: break-all;
}

.copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gold);
  padding: 4px;
  flex-shrink: 0;
  transition: transform 0.2s, color 0.2s, filter 0.2s;
}

.copy-btn svg {
  width: 20px;
  height: 20px;
}
.copy-btn:hover {
  transform: scale(1.2);
  color: var(--gold-bright);
  filter: drop-shadow(0 0 8px var(--gold-glow));
}
.copy-btn.copied {
  color: var(--green-bright);
}

/* ===== CHART ===== */
.chart-section {
  background: linear-gradient(
    180deg,
    transparent,
    rgba(11, 26, 46, 0.5),
    transparent
  );
}

.chart-wrapper {
  text-align: center;
}

.chart-frame {
  overflow: hidden;
  border: 2px solid var(--border-gold);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 229, 102, 0.08),
    inset 0 0 30px rgba(255, 229, 102, 0.03);
  margin-bottom: 28px;
  position: relative;
  clip-path: polygon(
    0 0,
    calc(100% - 24px) 0,
    100% 24px,
    100% 100%,
    24px 100%,
    0 calc(100% - 24px)
  );
}

.chart-frame::before {
  content: "LIVE";
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--text);
  background: var(--passion);
  padding: 4px 12px;
  animation: liveBlink 2s ease-in-out infinite;
}

@keyframes liveBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.chart-frame::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    135deg,
    var(--gold-bright),
    transparent 40%,
    var(--green-bright),
    transparent 80%,
    var(--gold-bright)
  );
  z-index: -1;
  opacity: 0.35;
  animation: borderGlow 5s ease-in-out infinite;
}

@keyframes borderGlow {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.55;
  }
}

.chart-frame iframe {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
  background: var(--navy-deep);
}

/* ===== JOIN US ===== */
.joinus {
  padding-top: 0;
  overflow: hidden;
}

.joinus-banner-wrap {
  position: relative;
  width: 100%;
  max-height: 460px;
  overflow: hidden;
}

.joinus-banner {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center;
  animation: bannerZoom 22s ease-in-out infinite alternate;
  filter: saturate(1.15) contrast(1.05);
}

@keyframes bannerZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.06);
  }
}

.joinus-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 12, 20, 0.2) 0%,
    rgba(5, 12, 20, 0.1) 40%,
    rgba(5, 12, 20, 0.6) 75%,
    var(--bg) 100%
  );
}

.joinus-banner-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--passion),
    var(--gold-bright),
    var(--green-bright),
    var(--gold-bright),
    var(--passion)
  );
}

.joinus-content {
  margin-top: -70px;
  position: relative;
  z-index: 2;
}

.joinus-sub {
  max-width: 580px;
  margin: 22px auto 0;
  color: var(--text-muted);
  font-size: 1.08rem;
  font-weight: 300;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(16px);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s,
    border-color 0.45s;
  position: relative;
  overflow: hidden;
  clip-path: polygon(
    0 0,
    calc(100% - 14px) 0,
    100% 14px,
    100% 100%,
    14px 100%,
    0 calc(100% - 14px)
  );
}

.social-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 229, 102, 0.1) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s;
}

.social-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-bright);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4), 0 0 35px rgba(255, 229, 102, 0.15);
}

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

.social-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.social-icon svg {
  width: 24px;
  height: 24px;
}

.twitter .social-icon {
  background: linear-gradient(135deg, #333, #111);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.telegram .social-icon {
  background: linear-gradient(135deg, #2aabee, #1a8cd8);
  color: #fff;
  box-shadow: 0 4px 15px rgba(42, 171, 238, 0.3);
}

.buy-card .social-icon {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
  color: #1a0f00;
  box-shadow: 0 4px 15px var(--gold-glow);
}

.social-info {
  flex: 1;
}

.social-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--passion);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.social-handle {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: var(--gold-bright);
  margin-top: 4px;
}

.social-arrow {
  font-size: 1.3rem;
  color: var(--gold-bright);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.social-card:hover .social-arrow {
  transform: translateX(6px);
}

/* ===== FOOTER ===== */
.footer {
  padding: 52px 0 36px;
  border-top: 1px solid var(--border-gold);
  background: linear-gradient(
    180deg,
    rgba(5, 12, 20, 0.5),
    rgba(5, 12, 20, 0.9)
  );
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--passion),
    var(--gold-bright),
    var(--green-bright),
    var(--gold-bright),
    var(--passion)
  );
  opacity: 0.6;
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 18px;
  text-shadow: 0 0 20px var(--gold-glow);
}

.footer-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px var(--gold-glow));
}

.footer-disclaimer {
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 22px;
  line-height: 1.65;
  font-weight: 300;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 22px;
}

.footer-links a {
  font-family: var(--font-heading);
  color: var(--gold-bright);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s, text-shadow 0.3s;
}

.footer-links a:hover {
  color: var(--gold-light);
  text-shadow: 0 0 12px var(--gold-glow);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* ===== CONFETTI ===== */
.confetti-piece {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  animation: confettiFall linear forwards;
}

@keyframes confettiFall {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(720deg) scale(0.5);
    opacity: 0;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }

  .hero-tagline {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
    width: 100%;
  }
  .hero-visual {
    order: -1;
  }
  .trophy-frame {
    width: min(320px, 72vw);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
  .social-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(5, 12, 20, 0.97);
    backdrop-filter: blur(20px);
    padding: 28px;
    gap: 22px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s, opacity 0.4s;
    border-bottom: 3px solid var(--gold-dark);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }

  .joinus-banner,
  .joinus-banner-wrap {
    max-height: 300px;
    height: 300px;
  }
}

@media (max-width: 500px) {
  .section {
    padding: 80px 0;
  }
  .hero-stats {
    flex-direction: column;
    clip-path: none;
  }
  .stat-card + .stat-card::before {
    display: none;
  }
  .stat-card {
    border-bottom: 1px solid var(--border-gold);
  }
  .step {
    flex-direction: column;
    gap: 12px;
  }
  .chart-frame iframe {
    height: 380px;
  }
  .hero-title .gold-text {
    letter-spacing: 3px;
  }
}
