*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #000000;
  --red: #ff0055;
  --red2: #cc0044;
  --green: #39ff14;
  --green2: #2acc0f;
  --gold: #ffd700;
  --white: #ffffff;
  --gray: rgba(255, 255, 255, 0.5);
  --navy: #07111f;
  --teal: #00c4a8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  pointer-events: none;
  z-index: 9999;
}

@keyframes breathe {
  0%,
  100% {
    box-shadow:
      0 0 20px var(--red),
      0 0 40px var(--red),
      0 0 80px rgba(255, 0, 85, 0.4);
  }
  50% {
    box-shadow:
      0 0 40px var(--red),
      0 0 80px var(--red),
      0 0 120px rgba(255, 0, 85, 0.6);
  }
}
@keyframes breatheGreen {
  0%,
  100% {
    box-shadow:
      0 0 20px var(--green),
      0 0 40px var(--green),
      0 0 80px rgba(57, 255, 20, 0.4);
  }
  50% {
    box-shadow:
      0 0 40px var(--green),
      0 0 80px var(--green),
      0 0 120px rgba(57, 255, 20, 0.6);
  }
}
@keyframes glitch {
  0%,
  90%,
  100% {
    transform: translateX(0) skewX(0);
    clip-path: none;
  }
  91% {
    transform: translateX(-4px) skewX(-1deg);
    clip-path: polygon(0 10%, 100% 10%, 100% 40%, 0 40%);
  }
  93% {
    transform: translateX(4px) skewX(1deg);
    clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%);
  }
  95% {
    transform: translateX(-2px) skewX(0);
    clip-path: none;
  }
  97% {
    transform: translateX(2px);
    clip-path: polygon(0 0, 100% 0, 100% 30%, 0 30%);
  }
}
@keyframes glitch2 {
  0%,
  85%,
  100% {
    opacity: 0;
    transform: translateX(0);
  }
  86% {
    opacity: 0.7;
    transform: translateX(-8px);
    filter: hue-rotate(90deg);
  }
  88% {
    opacity: 0;
  }
  92% {
    opacity: 0.5;
    transform: translateX(8px);
    filter: hue-rotate(180deg);
  }
  94% {
    opacity: 0;
  }
}
@keyframes neonFlicker {
  0%,
  19%,
  21%,
  23%,
  25%,
  54%,
  56%,
  100% {
    opacity: 1;
  }
  20%,
  22%,
  24%,
  55% {
    opacity: 0.4;
  }
}
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}
@keyframes rainFall {
  0% {
    transform: translateY(-100%);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh);
    opacity: 0.3;
  }
}
@keyframes scanLine {
  0% {
    top: -10%;
  }
  100% {
    top: 110%;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes slideIn {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes explode {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 0, 85, 0.7);
  }
  50% {
    transform: scale(0.96);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 0, 85, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 0, 85, 0);
  }
}
@keyframes explodeGreen {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.7);
  }
  50% {
    transform: scale(0.96);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(57, 255, 20, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(57, 255, 20, 0);
  }
}
@keyframes tickerMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(var(--ticker-shift, -50%));
  }
}
@keyframes warningFlash {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}
@keyframes zoomInFade {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes borderPulse {
  0%,
  100% {
    border-color: var(--red);
  }
  50% {
    border-color: var(--green);
  }
}

.lang-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.96), rgba(8, 8, 8, 0.92));
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 0, 85, 0.24);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  gap: 18px;
}
.lang-switcher {
  position: relative;
  flex: 0 0 auto;
}
.lang-trigger {
  min-width: 162px;
  padding: 10px 14px 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-family: inherit;
  transition:
    border-color 0.2s,
    background 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
  clip-path: polygon(
    0 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% 100%,
    10px 100%,
    0 calc(100% - 10px)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 18px rgba(255, 0, 85, 0.08);
}
.lang-trigger:hover,
.lang-trigger.open {
  border-color: var(--red);
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 22px rgba(255, 0, 85, 0.16);
}
.lang-trigger-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.lang-kicker {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.36);
}
.lang-current {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.lang-btn-code {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.lang-current .lang-btn-native,
.lang-option-native {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.84);
}
.lang-trigger-caret {
  width: 10px;
  height: 10px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.65);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.65);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}
.lang-trigger.open .lang-trigger-caret {
  transform: rotate(-135deg) translateY(-1px);
}
.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  max-height: min(420px, calc(100vh - 120px));
  padding: 8px;
  background: rgba(6, 6, 6, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.42),
    0 0 26px rgba(255, 0, 85, 0.12);
  z-index: 220;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 0, 85, 0.6) rgba(255, 255, 255, 0.05);
  clip-path: polygon(
    0 0,
    calc(100% - 12px) 0,
    100% 12px,
    100% 100%,
    12px 100%,
    0 calc(100% - 12px)
  );
}
.lang-menu::-webkit-scrollbar {
  width: 8px;
}
.lang-menu::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
}
.lang-menu::-webkit-scrollbar-thumb {
  background: rgba(255, 0, 85, 0.55);
}
.lang-menu::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 0, 85, 0.8);
}
.lang-option {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid transparent;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s;
  clip-path: polygon(
    0 0,
    calc(100% - 8px) 0,
    100% 8px,
    100% 100%,
    8px 100%,
    0 calc(100% - 8px)
  );
}
.lang-option + .lang-option {
  margin-top: 4px;
}
.lang-option:hover {
  border-color: rgba(255, 0, 85, 0.35);
  background: rgba(255, 255, 255, 0.04);
}
.lang-option.active {
  border-color: var(--red);
  background: linear-gradient(
    135deg,
    rgba(255, 0, 85, 0.18),
    rgba(57, 255, 20, 0.08)
  );
}
.lang-option-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.lang-option-check {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--green);
}
.spots-badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  animation: neonFlicker 3s infinite;
  letter-spacing: 0.05em;
  text-align: right;
  flex: 0 0 auto;
}

.ticker-wrap {
  background: var(--red);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
  margin-top: 68px;
}
.ticker-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: tickerMove 20s linear infinite;
  will-change: transform;
}
.ticker-group {
  display: flex;
  flex: 0 0 auto;
}
.ticker-item {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 32px;
  color: #fff;
  flex: 0 0 auto;
}
.ticker-sep {
  color: rgba(255, 255, 255, 0.4);
}

.hero {
  min-height: 100vh;
  background: #000;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 60px;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 0, 85, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 0, 85, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, #000 80%);
}
.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(57, 255, 20, 0.4),
    transparent
  );
  animation: scanLine 4s linear infinite;
  pointer-events: none;
}
.money-rain {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.money-drop {
  position: absolute;
  top: 0;
  font-size: 20px;
  opacity: 0;
  animation: rainFall linear infinite;
  animation-fill-mode: backwards;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 28px;
  animation: neonFlicker 4s infinite;
}
.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: breatheGreen 1s ease-in-out infinite;
}
.hero-title {
  font-size: clamp(36px, 6vw, 88px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  position: relative;
  animation: glitch 5s infinite;
  color: #fff;
  text-wrap: balance;
}
.hero-title .red {
  color: var(--red);
  text-shadow: 0 0 30px rgba(255, 0, 85, 0.6);
}
.hero-title .green {
  color: var(--green);
  text-shadow: 0 0 30px rgba(57, 255, 20, 0.6);
}
.hero-title-ghost {
  position: absolute;
  inset: 0;
  font-size: clamp(36px, 6vw, 88px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--red);
  opacity: 0;
  animation: glitch2 5s infinite;
  pointer-events: none;
  text-wrap: balance;
}
.hero-sub {
  font-size: clamp(15px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.65);
  max-width: 680px;
  margin: 20px auto 36px;
  line-height: 1.6;
}
.hero-sub strong {
  color: var(--green);
  font-weight: 700;
}

.btn-blast {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 40px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  font-family: inherit;
  background: linear-gradient(135deg, var(--red) 0%, #cc0033 100%);
  color: #fff;
  text-decoration: none;
  animation: breathe 2s ease-in-out infinite;
  transition: transform 0.1s;
  position: relative;
  overflow: hidden;
}
.btn-blast::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 60%
  );
}
.btn-blast:active {
  animation: explode 0.6s ease forwards;
}
.btn-blast:hover {
  transform: scale(1.03);
}

.btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 48px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  font-family: inherit;
  background: linear-gradient(135deg, var(--green) 0%, var(--green2) 100%);
  color: #000;
  text-decoration: none;
  animation: breatheGreen 2s ease-in-out infinite;
  transition: transform 0.1s;
  position: relative;
  overflow: hidden;
}
.btn-green:active {
  animation: explodeGreen 0.6s ease forwards;
}
.btn-green:hover {
  transform: scale(1.03);
}

.sec-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
}
.sec-label.green {
  color: var(--green);
}

@keyframes mechGlow {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}
@keyframes cornerSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dataScroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes mechPulse {
  0%,
  100% {
    box-shadow:
      inset 0 0 30px rgba(255, 0, 85, 0.05),
      0 0 0 1px rgba(255, 0, 85, 0.2);
  }
  50% {
    box-shadow:
      inset 0 0 60px rgba(255, 0, 85, 0.15),
      0 0 0 1px rgba(255, 0, 85, 0.6);
  }
}
@keyframes mechPulseGreen {
  0%,
  100% {
    box-shadow:
      inset 0 0 30px rgba(57, 255, 20, 0.05),
      0 0 0 1px rgba(57, 255, 20, 0.2);
  }
  50% {
    box-shadow:
      inset 0 0 60px rgba(57, 255, 20, 0.15),
      0 0 0 1px rgba(57, 255, 20, 0.6);
  }
}
@keyframes mechPulseGold {
  0%,
  100% {
    box-shadow:
      inset 0 0 30px rgba(255, 215, 0, 0.05),
      0 0 0 1px rgba(255, 215, 0, 0.2);
  }
  50% {
    box-shadow:
      inset 0 0 60px rgba(255, 215, 0, 0.15),
      0 0 0 1px rgba(255, 215, 0, 0.6);
  }
}
@keyframes scanH {
  0% {
    top: 0;
    opacity: 0.6;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

.strategy-section {
  background: #050505;
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}
.strategy-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 0, 85, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 0, 85, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}

.mech-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.mech-cards::before,
.mech-cards::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  z-index: 4;
}
.mech-cards::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--red);
  border-left: 2px solid var(--red);
}
.mech-cards::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid var(--green);
  border-right: 2px solid var(--green);
}

.mech-card {
  background: #080808;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  clip-path: polygon(
    0 0,
    calc(100% - 20px) 0,
    100% 20px,
    100% 100%,
    20px 100%,
    0 calc(100% - 20px)
  );
}
.mech-card + .mech-card {
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.mech-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  animation: scanH 3s linear infinite;
  pointer-events: none;
  z-index: 1;
}
.mech-card.red {
  color: rgba(255, 0, 85, 0.3);
}
.mech-card.green-c {
  color: rgba(57, 255, 20, 0.3);
  animation-delay: 1s;
}
.mech-card.gold-c {
  color: rgba(255, 215, 0, 0.3);
  animation-delay: 2s;
}

.mech-card.red {
  animation: mechPulse 4s ease-in-out infinite;
}
.mech-card.green-c {
  animation: mechPulseGreen 4s ease-in-out infinite 1.3s;
}
.mech-card.gold-c {
  animation: mechPulseGold 4s ease-in-out infinite 2.6s;
}
.mech-card:hover {
  transform: scale(1.02);
  z-index: 2;
  background: #0f0f0f;
}

.mech-card-bar {
  height: 4px;
  width: 100%;
}
.mech-card.red .mech-card-bar {
  background: var(--red);
  box-shadow:
    0 0 20px var(--red),
    0 4px 30px rgba(255, 0, 85, 0.5);
}
.mech-card.green-c .mech-card-bar {
  background: var(--green);
  box-shadow:
    0 0 20px var(--green),
    0 4px 30px rgba(57, 255, 20, 0.5);
}
.mech-card.gold-c .mech-card-bar {
  background: var(--gold);
  box-shadow:
    0 0 20px var(--gold),
    0 4px 30px rgba(255, 215, 0, 0.5);
}

.mech-card-inner {
  padding: 28px 28px 32px;
  position: relative;
  z-index: 2;
}

.mech-index {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mech-card.red .mech-index {
  color: var(--red);
}
.mech-card.green-c .mech-index {
  color: var(--green);
}
.mech-card.gold-c .mech-index {
  color: var(--gold);
}
.mech-index-line {
  flex: 1;
  height: 1px;
}
.mech-card.red .mech-index-line {
  background: linear-gradient(90deg, var(--red), transparent);
}
.mech-card.green-c .mech-index-line {
  background: linear-gradient(90deg, var(--green), transparent);
}
.mech-card.gold-c .mech-index-line {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.mech-amount {
  font-size: 64px;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin-bottom: 2px;
  font-family: "Space Grotesk", monospace;
}
.mech-card.red .mech-amount {
  color: var(--red);
  text-shadow:
    0 0 40px rgba(255, 0, 85, 0.7),
    0 0 80px rgba(255, 0, 85, 0.3);
}
.mech-card.green-c .mech-amount {
  color: var(--green);
  text-shadow:
    0 0 40px rgba(57, 255, 20, 0.7),
    0 0 80px rgba(57, 255, 20, 0.3);
}
.mech-card.gold-c .mech-amount {
  color: var(--gold);
  text-shadow:
    0 0 40px rgba(255, 215, 0, 0.7),
    0 0 80px rgba(255, 215, 0, 0.3);
}

.mech-card-title {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mech-card-title::before {
  content: "▶";
  font-size: 8px;
}
.mech-card.red .mech-card-title::before {
  color: var(--red);
}
.mech-card.green-c .mech-card-title::before {
  color: var(--green);
}
.mech-card.gold-c .mech-card-title::before {
  color: var(--gold);
}

.mech-divider {
  height: 1px;
  margin: 0 0 16px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.08) 0,
    rgba(255, 255, 255, 0.08) 6px,
    transparent 6px,
    transparent 12px
  );
}

.mech-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}

.mech-tactic-box {
  background: rgba(255, 255, 255, 0.03);
  border-left: 2px solid;
  padding: 12px 14px;
  margin-bottom: 16px;
  font-size: 11px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.4);
  font-family: "Space Grotesk", monospace;
  letter-spacing: 0.02em;
}
.mech-card.red .mech-tactic-box {
  border-color: var(--red);
}
.mech-card.green-c .mech-tactic-box {
  border-color: var(--green);
}
.mech-card.gold-c .mech-tactic-box {
  border-color: var(--gold);
}
.mech-tactic-box span {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.mech-card.red .mech-tactic-box span {
  color: var(--red);
}
.mech-card.green-c .mech-tactic-box span {
  color: var(--green);
}
.mech-card.gold-c .mech-tactic-box span {
  color: var(--gold);
}

.mech-goal {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  border: 1px solid;
  clip-path: polygon(
    0 0,
    calc(100% - 8px) 0,
    100% 8px,
    100% 100%,
    8px 100%,
    0 calc(100% - 8px)
  );
}
.mech-card.red .mech-goal {
  border-color: rgba(255, 0, 85, 0.4);
  color: var(--red);
  background: rgba(255, 0, 85, 0.06);
}
.mech-card.green-c .mech-goal {
  border-color: rgba(57, 255, 20, 0.4);
  color: var(--green);
  background: rgba(57, 255, 20, 0.06);
}
.mech-card.gold-c .mech-goal {
  border-color: rgba(255, 215, 0, 0.4);
  color: var(--gold);
  background: rgba(255, 215, 0, 0.06);
}

.mech-circuit {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  opacity: 0.04;
  pointer-events: none;
  background-image:
    linear-gradient(currentColor 1px, transparent 1px),
    linear-gradient(90deg, currentColor 1px, transparent 1px);
  background-size: 12px 12px;
}

@keyframes zebra {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
@keyframes alertBlink {
  0%,
  100% {
    background: rgba(255, 0, 85, 0.06);
    border-color: rgba(255, 0, 85, 0.25);
  }
  50% {
    background: rgba(255, 0, 85, 0.14);
    border-color: rgba(255, 0, 85, 0.8);
  }
}
@keyframes warningTextPulse {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(255, 0, 85, 0.4);
  }
  50% {
    text-shadow:
      0 0 30px rgba(255, 0, 85, 0.9),
      0 0 60px rgba(255, 0, 85, 0.4);
  }
}
@keyframes skullFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-8px) rotate(3deg);
  }
}

.warning-section {
  background: #000;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.warning-zebra-top {
  height: 56px;
  background: repeating-linear-gradient(
    -45deg,
    var(--red) 0,
    var(--red) 16px,
    #000 16px,
    #000 32px
  );
  animation: zebra 2s ease-in-out infinite;
  position: relative;
}
.warning-zebra-top::after {
  content: "⚠ DANGER ZONE ⚠ WEB3 IS A MINEFIELD ⚠ READ ALL RULES ⚠ DANGER ZONE ⚠ WEB3 IS A MINEFIELD ⚠ READ ALL RULES ⚠";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: #000;
  background: rgba(255, 0, 85, 0.85);
  padding: 0 24px;
  overflow: hidden;
  white-space: nowrap;
  text-transform: uppercase;
}

.warning-inner {
  padding: 72px 0 80px;
  position: relative;
}

.warning-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(255, 0, 85, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 50%,
      rgba(255, 0, 85, 0.04) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.warning-skull {
  text-align: center;
  font-size: 72px;
  line-height: 1;
  margin-bottom: 24px;
  animation: skullFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(255, 0, 85, 0.5));
}

.warning-headline {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
  animation: warningTextPulse 2.5s ease-in-out infinite;
}
.warning-headline .danger {
  color: var(--red);
}

.warning-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 52px;
  line-height: 1.7;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 0, 85, 0.2);
  position: relative;
}
.rules-grid::before,
.rules-grid::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 2;
}
.rules-grid::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--red);
  border-left: 2px solid var(--red);
}
.rules-grid::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid var(--red);
  border-right: 2px solid var(--red);
}

.rule-card {
  padding: 40px 32px;
  background: #050505;
  position: relative;
  overflow: hidden;
  animation: alertBlink 3s ease-in-out infinite;
  transition: all 0.3s;
  border: none;
}
.rule-card + .rule-card {
  border-left: 1px solid rgba(255, 0, 85, 0.15);
}
.rule-card:hover {
  background: rgba(255, 0, 85, 0.08);
}

.rule-card::before {
  content: attr(data-num);
  position: absolute;
  bottom: -10px;
  right: 12px;
  font-size: 120px;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 0, 85, 0.05);
  font-family: "Space Grotesk", monospace;
  pointer-events: none;
  letter-spacing: -0.06em;
}

.rule-num-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 0;
  background: var(--red);
  color: #000;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 20px;
  clip-path: polygon(
    0 0,
    calc(100% - 6px) 0,
    100% 6px,
    100% 100%,
    6px 100%,
    0 calc(100% - 6px)
  );
  font-family: "Space Grotesk", monospace;
}
.rule-icon-large {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 0 12px rgba(255, 0, 85, 0.6));
}
.rule-title {
  font-size: 14px;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
  animation: warningTextPulse 2.5s ease-in-out infinite;
}
.rule-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
}
.rule-divider {
  height: 1px;
  margin: 16px 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 0, 85, 0.3) 0,
    rgba(255, 0, 85, 0.3) 4px,
    transparent 4px,
    transparent 8px
  );
}

.warning-zebra-bottom {
  height: 56px;
  background: repeating-linear-gradient(
    45deg,
    var(--red) 0,
    var(--red) 16px,
    #000 16px,
    #000 32px
  );
  animation: zebra 2s ease-in-out infinite 1s;
}

.faq-section {
  background: #070707;
  padding: 100px 0;
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0;
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  gap: 20px;
}
.faq-q-text {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}
.faq-toggle {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 0, 85, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--red);
  transition: all 0.3s;
  background: transparent;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--red);
  color: #fff;
}
.faq-a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 24px;
}
.faq-a strong {
  color: var(--green);
}

.toast-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}
.toast {
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid rgba(57, 255, 20, 0.3);
  border-left: 3px solid var(--green);
  border-radius: 8px;
  padding: 14px 16px;
  max-width: 320px;
  animation:
    slideIn 0.4s ease,
    fadeUp 0.4s ease;
  pointer-events: all;
  backdrop-filter: blur(12px);
}
.toast-addr {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 4px;
  font-family: "Space Grotesk", monospace;
}
.toast-msg {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}
.toast-time {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 6px;
}

.cta-section {
  min-height: calc(100dvh - 68px);
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 32px;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at center,
      rgba(57, 255, 20, 0.07) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(255, 0, 85, 0.08) 0%,
      transparent 50%
    );
}
.cta-money-shower {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.15;
}
.cta-title {
  font-size: clamp(40px, 7vw, 100px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  text-wrap: balance;
}
.cta-title .highlight {
  color: var(--green);
  text-shadow: 0 0 40px rgba(57, 255, 20, 0.5);
}
.cta-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 560px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 2;
  line-height: 1.6;
}

.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-head {
  text-align: center;
  margin-bottom: 16px;
}
.section-head h2 {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
  text-wrap: balance;
}
.section-head h2 .accent {
  color: var(--red);
}
.section-head h2 .green {
  color: var(--green);
}
.section-head p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 16px;
  line-height: 1.6;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 60px;
}
.stat-box {
  background: #000;
  padding: 32px;
  text-align: center;
}
.stat-num {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}
.stat-num.red {
  color: var(--red);
  text-shadow: 0 0 20px rgba(255, 0, 85, 0.4);
}
.stat-num.green {
  color: var(--green);
  text-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
}
.stat-num.gold {
  color: var(--gold);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}
.stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 8px;
}

.neon-div {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  margin: 0;
  box-shadow: 0 0 10px var(--red);
}
.neon-div.green {
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  box-shadow: 0 0 10px var(--green);
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.25);
  transform: rotate(45deg);
  animation: pulse 1.5s ease-in-out infinite;
}

@media (max-width: 768px) {
  .mech-cards {
    grid-template-columns: 1fr;
  }
  .rules-grid {
    grid-template-columns: 1fr;
  }
  .stats-row {
    grid-template-columns: 1fr;
  }
  .lang-switcher {
    flex: 1;
    min-width: 0;
  }
  .lang-trigger {
    min-width: 132px;
    width: 100%;
  }
  .lang-menu {
    min-width: 100%;
  }
  .spots-badge {
    font-size: 10px;
    max-width: 124px;
  }
}

.progress-bar {
  position: fixed;
  top: 68px;
  left: 0;
  height: 3px;
  z-index: 199;
  background: linear-gradient(90deg, var(--red), var(--green));
  transition: width 0.1s;
  box-shadow: 0 0 8px var(--green);
}

/* ---------- Vanilla tweak FAB (replacing JSX panel) ---------- */
.w3-tweaks {
  position: fixed;
  right: 16px;
  bottom: 96px;
  z-index: 400;
  font-family: inherit;
}
.w3-tweaks-fab {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 0, 85, 0.45);
  background: rgba(0, 0, 0, 0.88);
  color: var(--green);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
  cursor: pointer;
  box-shadow: 0 0 18px rgba(255, 0, 85, 0.25);
}
.w3-tweaks-fab:hover {
  border-color: var(--green);
}
.w3-tweaks-panel {
  position: absolute;
  right: 0;
  bottom: 52px;
  width: min(300px, calc(100vw - 48px));
  padding: 14px 16px;
  background: rgba(8, 8, 10, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.55),
    0 0 20px rgba(255, 0, 85, 0.12);
}
.w3-tweaks-head {
  font-size: 13px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.75);
}
.w3-twk-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.w3-twk-row input[type="color"] {
  border: none;
  width: 44px;
  height: 32px;
  padding: 0;
  cursor: pointer;
  background: transparent;
}
.w3-twk-stack {
  flex-wrap: wrap;
}
.w3-twk-stack input[type="range"] {
  flex: 1;
  width: 100%;
  accent-color: var(--red);
}
.w3-twk-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}
