/* =========================================
   STORM ARENA — Landing Page Styles
   ========================================= */

:root {
  --bg-primary: #060a1a;
  --bg-secondary: #0a0f2a;
  --bg-card: #0d1333;
  --bg-card-hover: #111840;
  --cyan: #00e5ff;
  --cyan-dim: #00a5b8;
  --cyan-glow: rgba(0, 229, 255, 0.25);
  --cyan-glow-strong: rgba(0, 229, 255, 0.5);
  --white: #eef4f8;
  --white-dim: #8a9bb5;
  --red: #ff3b5c;
  --green: #00e676;
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--cyan-dim) var(--bg-primary);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  background: var(--bg-primary);
  overflow-x: hidden;
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover { color: var(--white); }

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}

.nav--scrolled {
  background: rgba(6, 10, 26, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0, 229, 255, 0.08);
  padding: 10px 0;
}

.nav__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 8px var(--cyan-glow));
  transition: transform 0.3s;
}

.nav__logo:hover img { transform: scale(1.1); }

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

.nav__links a {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.3s;
}

.nav__links a:hover { color: var(--cyan); }

.nav__cta {
  background: var(--cyan);
  color: var(--bg-primary) !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 700 !important;
  transition: box-shadow 0.3s, transform 0.3s !important;
}

.nav__cta:hover {
  box-shadow: 0 0 20px var(--cyan-glow-strong);
  transform: translateY(-1px);
  color: var(--bg-primary) !important;
}

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

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

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

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 40%, rgba(0, 229, 255, 0.06) 0%, transparent 60%),
              var(--bg-primary);
}

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

.hero__particles .particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--cyan);
  border-radius: 50%;
  opacity: 0;
}

/* Crosshair decorativo */
.hero__crosshair {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
}

.crosshair-line {
  position: absolute;
  background: var(--cyan);
  opacity: 0.08;
}

.crosshair-top,
.crosshair-bottom {
  width: 2px;
  height: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.crosshair-top { top: 60px; }
.crosshair-bottom { bottom: 60px; }

.crosshair-left,
.crosshair-right {
  height: 2px;
  width: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.crosshair-left { left: 60px; }
.crosshair-right { right: 60px; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 60%, var(--bg-primary) 100%),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 229, 255, 0.015) 2px, rgba(0, 229, 255, 0.015) 4px);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
}

.hero__logo {
  width: min(640px, 90vw);
  filter: drop-shadow(0 0 40px var(--cyan-glow)) drop-shadow(0 0 80px rgba(0, 229, 255, 0.12));
}

.hero__arena {
  font-family: var(--font-display);
  font-size: clamp(20px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: 14px;
  color: var(--cyan);
  text-shadow: 0 0 30px var(--cyan-glow);
  margin-top: -8px;
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 400;
  color: var(--white-dim);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 8px;
}

.hero__info {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
}

.hero__badge {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: 3px;
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.05);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero__scroll span {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-dim);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--cyan), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---- BTN ---- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 36px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
}

.btn--primary {
  background: var(--cyan);
  color: var(--bg-primary);
  box-shadow: 0 0 20px var(--cyan-glow), 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn--primary:hover {
  color: var(--bg-primary);
  box-shadow: 0 0 40px var(--cyan-glow-strong), 0 0 80px rgba(0, 229, 255, 0.2), 0 4px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 18px 48px;
  font-size: 14px;
}

/* ---- SECTIONS ---- */
.section {
  padding: 100px 0;
  position: relative;
}

.section--alt {
  background: var(--bg-secondary);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section__title-accent {
  color: var(--cyan);
  text-shadow: 0 0 20px var(--cyan-glow);
}

/* ---- ABOUT GRID ---- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 229, 255, 0.08);
  border-radius: 8px;
  padding: 32px 24px;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.about-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 255, 0.25);
  box-shadow: 0 8px 40px rgba(0, 229, 255, 0.08);
}

.about-card__icon {
  width: 44px;
  height: 44px;
  color: var(--cyan);
  margin-bottom: 16px;
}

.about-card__icon svg {
  width: 100%;
  height: 100%;
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.about-card p {
  color: var(--white-dim);
  font-size: 15px;
  line-height: 1.7;
}

/* ---- TIMELINE ---- */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto 64px;
}

.timeline__line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: rgba(0, 229, 255, 0.12);
  transform: translateX(-50%);
}

.timeline__line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--cyan), var(--cyan-dim));
  transition: height 1.5s ease;
}

.timeline__line.active::after {
  height: 100%;
}

.timeline__item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}

.timeline__item[data-side="left"] {
  flex-direction: row-reverse;
  text-align: right;
}

.timeline__item[data-side="left"] .timeline__card {
  margin-right: 40px;
}

.timeline__item[data-side="right"] .timeline__card {
  margin-left: 40px;
}

.timeline__dot {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 14px;
  height: 14px;
  background: var(--bg-primary);
  border: 2px solid var(--cyan);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 12px var(--cyan-glow);
}

.timeline__card {
  flex: 1;
  max-width: calc(50% - 40px);
  background: var(--bg-card);
  border: 1px solid rgba(0, 229, 255, 0.1);
  border-radius: 8px;
  padding: 24px;
  transition: border-color 0.35s, box-shadow 0.35s;
}

.timeline__card:hover {
  border-color: rgba(0, 229, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 229, 255, 0.08);
}

.timeline__label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  display: block;
  margin-bottom: 8px;
}

.timeline__card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.timeline__card p {
  color: var(--white-dim);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.timeline__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.timeline__item[data-side="left"] .timeline__tags {
  justify-content: flex-end;
}

.timeline__tags span {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 3px;
  color: var(--cyan);
}

/* ---- SCORING ---- */
.scoring {
  background: var(--bg-card);
  border: 1px solid rgba(0, 229, 255, 0.1);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
}

.scoring__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 32px;
}

.scoring__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
}

.scoring__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scoring__value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--cyan);
  text-shadow: 0 0 20px var(--cyan-glow);
  line-height: 1;
  opacity: 0;
}

.scoring__label {
  font-size: 13px;
  color: var(--white-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- REQUIREMENTS ---- */
.req-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.req-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 229, 255, 0.08);
  border-radius: 8px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
  position: relative;
  overflow: hidden;
}

.req-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 229, 255, 0.25);
  box-shadow: 0 8px 40px rgba(0, 229, 255, 0.06);
}

.req-card__number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: rgba(0, 229, 255, 0.06);
  position: absolute;
  top: 12px;
  right: 20px;
  line-height: 1;
}

.req-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cyan);
}

.req-card p {
  color: var(--white-dim);
  font-size: 15px;
  line-height: 1.7;
}

/* ---- RULES ---- */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.rules-block {
  background: var(--bg-card);
  border: 1px solid rgba(0, 229, 255, 0.08);
  border-radius: 8px;
  padding: 28px 24px;
}

.rules-block__title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--cyan);
}

.rules-block__title--red { color: var(--red); }
.rules-block__title--green { color: var(--green); }

.rules-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rules-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--white-dim);
  font-size: 15px;
  line-height: 1.5;
}

.rules-list svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--red);
}

.rules-list--green svg {
  color: var(--green);
}

.punish-ladder {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.punish-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  background: rgba(0, 229, 255, 0.03);
  border-left: 2px solid var(--cyan-dim);
  border-radius: 0 4px 4px 0;
  font-size: 14px;
  color: var(--white-dim);
  opacity: 0;
}

.punish-step__level {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--cyan);
  width: 20px;
  text-align: center;
}

/* ---- WO BOX ---- */
.wo-box {
  background: rgba(255, 59, 92, 0.06);
  border: 1px solid rgba(255, 59, 92, 0.2);
  border-radius: 8px;
  padding: 24px 28px;
}

.wo-box h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.wo-box p {
  color: var(--white-dim);
  font-size: 15px;
  line-height: 1.7;
}

/* ---- CTA ---- */
.section--cta {
  padding: 120px 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0, 229, 255, 0.08) 0%, transparent 60%),
              var(--bg-primary);
}

.cta-block {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-block__icon {
  filter: drop-shadow(0 0 20px var(--cyan-glow));
}

.cta-block__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.cta-block__text {
  color: var(--white-dim);
  font-size: 18px;
  max-width: 520px;
  line-height: 1.7;
}

.cta-block__btn {
  margin-top: 12px;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(0, 229, 255, 0.06);
  padding: 60px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer__brand p {
  color: var(--white-dim);
  font-size: 14px;
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.7;
}

.footer__logo {
  filter: brightness(0.7);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links h4 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.footer__links a {
  color: var(--white-dim);
  font-size: 14px;
  transition: color 0.3s;
}

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

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
  text-align: center;
}

.footer__bottom p {
  color: var(--white-dim);
  font-size: 13px;
}

/* ---- SECTION SUBTITLE ---- */
.section__subtitle {
  text-align: center;
  color: var(--white-dim);
  font-size: 17px;
  max-width: 560px;
  margin: -40px auto 48px;
  line-height: 1.7;
}

/* ---- VIDEO ---- */
.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  background: var(--bg-card);
  border: 1px solid rgba(0, 229, 255, 0.12);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 229, 255, 0.06);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

/* ---- TEAMS ---- */
.teams-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 229, 255, 0.08);
  border-radius: 10px;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 255, 0.3);
  box-shadow: 0 8px 40px rgba(0, 229, 255, 0.1);
}

.team-card__logo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.04);
  border: 2px dashed rgba(0, 229, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color 0.35s;
}

.team-card:hover .team-card__logo {
  border-color: rgba(0, 229, 255, 0.4);
}

.team-card__logo span {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white-dim);
  opacity: 0.4;
}

.team-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team-card__name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  color: var(--white);
}

/* ---- DISCORD ---- */
.discord-section {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.discord-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(88, 101, 242, 0.18) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.discord-block {
  position: relative;
  z-index: 1;
  background: linear-gradient(145deg, rgba(88, 101, 242, 0.08), rgba(13, 19, 51, 0.6));
  border: 1px solid rgba(88, 101, 242, 0.25);
  border-radius: 16px;
  padding: 56px 48px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 60px rgba(88, 101, 242, 0.12);
}

.discord-block__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  color: #5865F2;
  filter: drop-shadow(0 0 24px rgba(88, 101, 242, 0.6));
}

.discord-block__icon svg { width: 100%; height: 100%; }

.discord-block__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  color: var(--white);
}

.discord-accent {
  color: #5865F2;
  text-shadow: 0 0 24px rgba(88, 101, 242, 0.5);
}

.discord-block__text {
  font-size: 16px;
  color: var(--white-dim);
  margin: 0 auto 32px;
  max-width: 640px;
  line-height: 1.6;
  text-wrap: balance;
}

.discord-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  text-align: left;
  margin: 0 auto 36px;
  max-width: 580px;
  padding: 0;
}

.discord-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--white-dim);
  font-size: 14px;
  line-height: 1.5;
}

.discord-features li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #5865F2;
  margin-top: 2px;
}

.discord-features li strong {
  color: var(--white);
  font-weight: 600;
}

.discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #5865F2;
  color: #fff;
  padding: 16px 36px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 32px rgba(88, 101, 242, 0.35);
}

.discord-btn svg { width: 22px; height: 22px; }

.discord-btn:hover {
  background: #4752C4;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(88, 101, 242, 0.55);
}

.discord-block__handle {
  display: block;
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--white-dim);
  letter-spacing: 1px;
  opacity: 0.6;
}

/* ---- REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
}

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

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(6, 10, 26, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
  }

  .nav__links.open { display: flex; }

  .nav__links a { font-size: 16px; }

  .nav__burger { display: flex; }

  .timeline__line { left: 16px; }

  .timeline__item,
  .timeline__item[data-side="left"] {
    flex-direction: row;
    text-align: left;
  }

  .timeline__dot {
    left: 16px;
  }

  .timeline__card,
  .timeline__item[data-side="left"] .timeline__card {
    max-width: 100%;
    margin-left: 44px;
    margin-right: 0;
  }

  .timeline__item[data-side="left"] .timeline__tags {
    justify-content: flex-start;
  }

  .teams-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .req-grid {
    grid-template-columns: 1fr;
  }

  .scoring {
    padding: 28px 20px;
  }

  .scoring__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero__badge {
    font-size: 10px;
    padding: 5px 12px;
  }

  .section {
    padding: 72px 0;
  }

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

  .discord-block { padding: 36px 22px; }

  .discord-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .discord-btn {
    padding: 14px 26px;
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .teams-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .team-card {
    padding: 24px 16px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 18px;
  }

  .team-card__logo {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
  }

  .team-card__name {
    text-align: left;
  }
}
