:root {
  --crimson-deep: #6b0f0f;
  --crimson-mid: #9b2020;
  --crimson-bright: #c0392b;
  --crimson-glow: #e74c3c;
  --rose-muted: #a85050;
  --bg-void: #0d0d0d;
  --bg-dark: #141414;
  --bg-card: #191919;
  --bg-card2: #1e1e1e;
  --text-white: #f0f0f0;
  --text-gray: #8a8a8a;
  --text-dim: #4a4a4a;
  --pixel-font: "Press Start 2P", monospace;
  --mono-font: "Share Tech Mono", monospace;
  --body-font: "Rajdhani", sans-serif;
  --red-scanline: rgba(192, 57, 43, 0.03);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-void);
  color: var(--text-white);
  font-family: var(--body-font);
  overflow-x: hidden;
  cursor: default;
}

/* ── SCANLINE OVERLAY ── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    var(--red-scanline) 2px,
    var(--red-scanline) 4px
  );
  pointer-events: none;
  z-index: 9999;
  opacity: 0.6;
}

@keyframes grainShift {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-3px, 2px);
  }
  40% {
    transform: translate(2px, -3px);
  }
  60% {
    transform: translate(-1px, 3px);
  }
  80% {
    transform: translate(3px, 1px);
  }
  100% {
    transform: translate(-2px, -1px);
  }
}

/* ── GRID BACKGROUND ── */
.grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(192, 57, 43, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 57, 43, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* ── AMBIENT GLOW ── */
.ambient {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.ambient-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(107, 15, 15, 0.35) 0%,
    transparent 70%
  );
  top: -200px;
  right: -200px;
  animation: float1 8s ease-in-out infinite;
}
.ambient-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(155, 32, 32, 0.2) 0%,
    transparent 70%
  );
  bottom: -100px;
  left: -100px;
  animation: float2 10s ease-in-out infinite;
}
@keyframes float1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-30px, 20px) scale(1.1);
  }
}
@keyframes float2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, -30px) scale(0.9);
  }
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: linear-gradient(to bottom, rgba(13, 13, 13, 0.95), transparent);
  backdrop-filter: blur(2px);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-logo-img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 8px rgba(192, 57, 43, 0.6));
}
.nav-logo-text {
  font-family: var(--pixel-font);
  font-size: 12px;
  color: var(--text-white);
  line-height: 1.6;
  letter-spacing: 1px;
}
.nav-logo-text span {
  color: var(--crimson-bright);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-page-link {
  font-family: var(--mono-font);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--text-gray);
  text-decoration: none;
  padding: 8px 10px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.nav-page-link:hover {
  color: var(--crimson-bright);
  border-color: rgba(192, 57, 43, 0.35);
  background: rgba(192, 57, 43, 0.08);
}
.nav-page-link.active {
  color: var(--crimson-bright);
  border-color: rgba(192, 57, 43, 0.35);
  background: rgba(192, 57, 43, 0.14);
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 40px 80px;
  overflow: hidden;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--mono-font);
  font-size: 15px;
  letter-spacing: 6px;
  color: var(--crimson-bright);
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeSlideDown 0.8s 0.3s forwards;
}

.hero-eyebrow {
  display: none;
}

@media (min-width: 768px) {
  .hero-eyebrow {
    display: block;
  }
}

/* Animated logo */
.logo-wrap {
  position: relative;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeScale 1s 0.1s forwards;
}

.hero-title {
  font-family: var(--pixel-font);
  font-size: clamp(24px, 5vw, 52px);
  line-height: 1.5;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 4px;
  color: var(--text-white);
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.7s forwards;
  transition: all 0.4s;
}
.hero-title-red {
  color: var(--crimson-bright);
}
.hero-title:hover {
  -webkit-text-stroke-color: var(--crimson-bright);
  text-shadow: 0 0 40px rgba(192, 58, 43, 0.6);
}

.hero-year {
  font-family: var(--pixel-font);
  font-size: clamp(40px, 8vw, 90px);
  color: transparent;
  -webkit-text-stroke: 2px var(--crimson-deep);
  line-height: 1;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.7s forwards;
  transition: all 0.4s;
}
.hero-year:hover {
  -webkit-text-stroke-color: var(--crimson-bright);
  text-shadow: 0 0 40px rgba(192, 57, 43, 0.3);
}

.hero-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 80px;
  opacity: 0;
  animation: fadeSlideUp 0.8s 1.1s forwards;
}

.btn-primary {
  font-family: var(--pixel-font);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--bg-void);
  background: linear-gradient(
    135deg,
    var(--crimson-bright),
    var(--crimson-deep)
  );
  border: none;
  padding: 16px 32px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.3s;
  box-shadow:
    0 0 20px rgba(192, 57, 43, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  clip-path: polygon(
    0 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% 100%,
    10px 100%,
    0 calc(100% - 10px)
  );
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(192, 57, 43, 0.6);
}
.btn-primary:hover::after {
  opacity: 1;
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  position: relative;
  font-family: var(--pixel-font);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--crimson-bright);
  background: transparent;
  padding: 15px 28px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  clip-path: polygon(
    0 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% 100%,
    10px 100%,
    0 calc(100% - 10px)
  );
}

.btn-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--crimson-deep);
  z-index: -1;
  clip-path: polygon(
    0 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% 100%,
    10px 100%,
    0 calc(100% - 10px)
  );
}

.btn-outline::after {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--bg-card);
  z-index: -1;
  clip-path: polygon(
    0 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% 100%,
    10px 100%,
    0 calc(100% - 10px)
  );
}

.btn-outline:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(192, 57, 43, 0.6);
}

/* ── COUNTDOWN ── */
.countdown-section {
  opacity: 0;
  animation: fadeSlideUp 0.8s 1.3s forwards;
  width: 100%;
  max-width: 800px;
}
.countdown-label {
  font-family: var(--mono-font);
  font-size: 14px;
  letter-spacing: 5px;
  color: var(--crimson-bright);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.countdown-cell {
  position: relative;
  padding: 24px 12px;
  text-align: center;
  overflow: hidden;
  transition: box-shadow 0.3s;
  background: transparent;

  clip-path: polygon(
    0 0,
    calc(100% - 8px) 0,
    100% 8px,
    100% 100%,
    8px 100%,
    0 calc(100% - 8px)
  );
}

/* Внешний слой — рамка */
.countdown-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(192, 57, 43, 0.2);
  z-index: -2;

  clip-path: polygon(
    0 0,
    calc(100% - 8px) 0,
    100% 8px,
    100% 100%,
    8px 100%,
    0 calc(100% - 8px)
  );

  transition: background 0.3s;
}

/* Внутренний слой — фон */
.countdown-cell::before {
  content: "";
  position: absolute;
  inset: 1px; /* толщина рамки */
  background: var(--bg-card);
  z-index: -1;

  clip-path: polygon(
    0 0,
    calc(100% - 8px) 0,
    100% 8px,
    100% 100%,
    8px 100%,
    0 calc(100% - 8px)
  );
}

/* Hover */
.countdown-cell:hover {
  box-shadow: 0 0 20px rgba(192, 57, 43, 0.1);
}

.countdown-cell:hover::after {
  background: rgba(192, 57, 43, 0.5);
}


.countdown-num {
  font-family: var(--pixel-font);
  font-size: clamp(28px, 5vw, 48px);
  color: var(--text-white);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(192, 57, 43, 0.4);
  transition: color 0.15s;
}
.countdown-num.flash {
  color: var(--crimson-bright);
}
.countdown-unit {
  font-family: var(--mono-font);
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--text-dim);
  text-transform: uppercase;
}

.event-date-tag {
  text-align: center;
  margin-top: 20px;
  font-family: var(--mono-font);
  font-size: 15px;
  color: var(--text-gray);
  letter-spacing: 3px;
}
.event-date-tag span {
  color: var(--crimson-bright);
}

/* ── DIVIDER ── */
.divider {
  position: relative;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(192, 57, 43, 0.4),
    transparent
  );
  margin: 100px 0;
}
.divider::before {
  content: "◆";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg-void);
  padding: 0 16px;
  color: var(--crimson-bright);
  font-size: 12px;
}

/* ── SECTIONS ── */
section {
  position: relative;
  z-index: 1;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-tag {
  font-family: var(--mono-font);
  font-size: 14px;
  letter-spacing: 5px;
  color: var(--crimson-bright);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--pixel-font);
  font-size: clamp(16px, 3vw, 28px);
  color: var(--text-white);
  line-height: 1.6;
  margin-bottom: 48px;
}
.section-subtitle {
  font-family: var(--mono-font);
  font-size: 15px;
  color: var(--text-gray);
  letter-spacing: 0.5px;
  line-height: 1.7;
}

/* ── RULES PAGE ── */
#rules-hero {
  padding: 150px 0 60px;
}
.rules-title {
  margin-bottom: 16px;
}
#rules-list {
  padding: 20px 0 100px;
}
#rules-extra {
  padding: 20px 0 100px;
}
.rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.rule-card {
  --card-cut: 14px;
  --rule-border: rgba(192, 57, 43, 0.15);
  border: none;
  background: var(--rule-border);
  padding: 34px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  clip-path: polygon(
    0 0,
    calc(100% - var(--card-cut)) 0,
    100% var(--card-cut),
    100% 100%,
    0 100%
  );
}
.rule-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  background:
    linear-gradient(
      135deg,
      rgba(192, 57, 43, 0.05) 0%,
      rgba(192, 57, 43, 0) 55%
    ),
    var(--bg-card);
  clip-path: polygon(
    0 0,
    calc(100% - var(--card-cut)) 0,
    100% var(--card-cut),
    100% 100%,
    0 100%
  );
  pointer-events: none;
  z-index: 0;
}
.rule-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--crimson-deep),
    var(--crimson-bright)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: 2;
}
.rule-card > * {
  position: relative;
  z-index: 1;
}
.rule-card:hover {
  --rule-border: rgba(192, 57, 43, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.32);
}
.rule-card:hover::after {
  transform: scaleX(1);
}
.rule-num {
  font-family: var(--pixel-font);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--crimson-deep);
  margin-bottom: 18px;
}
.rule-heading {
  font-family: var(--pixel-font);
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 1.8;
  color: var(--text-white);
  margin-bottom: 14px;
}
.rule-text {
  font-family: var(--body-font);
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-gray);
}
.rule-text code {
  font-family: var(--mono-font);
  color: var(--crimson-bright);
}
.rule-text a {
  color: var(--crimson-bright);
  text-decoration: none;
  border-bottom: 1px solid rgba(192, 57, 43, 0.35);
  transition: all 0.2s ease;
}
.rule-text a:hover {
  color: var(--text-white);
  border-bottom-color: rgba(240, 240, 240, 0.35);
}
.rules-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}
#rules-extra .format-text a {
  color: var(--crimson-bright);
  text-decoration: none;
  border-bottom: 1px solid rgba(192, 57, 43, 0.35);
  transition: all 0.2s ease;
}
#rules-extra .format-text a:hover {
  color: var(--text-white);
  border-bottom-color: rgba(240, 240, 240, 0.35);
}
#rules-extra .format-card {
  --card-cut: 14px;
  --format-border: rgba(192, 57, 43, 0.15);
  border: none;
  background: var(--format-border);
  clip-path: polygon(
    0 0,
    calc(100% - var(--card-cut)) 0,
    100% var(--card-cut),
    100% 100%,
    0 100%
  );
}
#rules-extra .format-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--bg-card);
  clip-path: polygon(
    0 0,
    calc(100% - var(--card-cut)) 0,
    100% var(--card-cut),
    100% 100%,
    0 100%
  );
  pointer-events: none;
  z-index: 0;
}
#rules-extra .format-card > * {
  position: relative;
  z-index: 1;
}
#rules-extra .format-card::after {
  z-index: 2;
}
#rules-extra .format-card:hover {
  --format-border: rgba(192, 57, 43, 0.35);
}

/* ── CATEGORIES ── */
#categories {
  padding: 100px 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.cat-card {
  position: relative;
  padding: 28px 24px;
  background: var(--bg-card);
  cursor: default;
  transition: all 0.3s;
  overflow: hidden;

  /* форма */
  clip-path: polygon(
    0 0,
    calc(100% - 12px) 0,
    100% 12px,
    100% 100%,
    0 100%
  );
}

/* Внешний слой — рамка */
.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(192, 57, 43, 0.15); /* цвет рамки */
  z-index: -2;

  clip-path: polygon(
    0 0,
    calc(100% - 12px) 0,
    100% 12px,
    100% 100%,
    0 100%
  );

  transition: background 0.3s;
}

/* Внутренний слой — фон */
.cat-card::before {
  content: "";
  position: absolute;
  inset: 1px; /* толщина рамки */
  background: var(--bg-card);
  z-index: -1;

  clip-path: polygon(
    0 0,
    calc(100% - 12px) 0,
    100% 12px,
    100% 100%,
    0 100%
  );

  transition: all 0.3s;
}

/* Ховер */
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(192, 57, 43, 0.08);
}

.cat-card:hover::after {
  background: rgba(192, 57, 43, 0.5);
}

/* Градиент поверх фона */
.cat-card .gradient-overlay {
  position: absolute;
  inset: 1px;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(192, 57, 43, 0.05),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s;

  clip-path: polygon(
    0 0,
    calc(100% - 12px) 0,
    100% 12px,
    100% 100%,
    0 100%
  );
}

.cat-card:hover .gradient-overlay {
  opacity: 1;
}

.cat-icon {
  font-size: 24px;
  margin-bottom: 16px;
  display: block;
  filter: grayscale(0.3);
}
.cat-name {
  font-family: var(--pixel-font);
  font-size: 11px;
  color: var(--text-white);
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.cat-desc {
  font-family: var(--mono-font);
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}
.cat-card:hover .cat-desc {
  color: var(--text-gray);
}

/* ── FORMAT ── */
#format {
  padding: 100px 0;
}
.format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.format-card {
  background: var(--bg-card);
  border: 1px solid rgba(192, 57, 43, 0.15);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.format-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--crimson-deep),
    var(--crimson-bright)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.format-card:hover::after {
  transform: scaleX(1);
}
.format-card:hover {
  border-color: rgba(192, 57, 43, 0.35);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.format-num {
  font-family: var(--pixel-font);
  font-size: 11px;
  color: var(--crimson-deep);
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.format-heading {
  font-family: var(--pixel-font);
  font-size: 13px;
  color: var(--text-white);
  margin-bottom: 16px;
  letter-spacing: 1px;
  line-height: 1.8;
}
.format-text {
  font-family: var(--body-font);
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.8;
  font-weight: 400;
}

/* ── SCHEDULE ── */
#schedule {
  padding: 100px 0;
}
.schedule-wrap {
  position: relative;
  padding-left: 40px;
}
.schedule-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--crimson-bright), transparent);
}
.sched-item {
  position: relative;
  padding: 0 0 48px 40px;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.sched-item:hover {
  opacity: 1;
}
.sched-item::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 6px;
  width: 8px;
  height: 8px;
  background: var(--crimson-deep);
  border: 1px solid var(--crimson-bright);
  transition:
    background 0.3s,
    box-shadow 0.3s;
}
.sched-item:hover::before {
  background: var(--crimson-bright);
  box-shadow: 0 0 12px rgba(192, 57, 43, 0.8);
}
.sched-time {
  font-family: var(--mono-font);
  font-size: 13px;
  color: var(--crimson-bright);
  letter-spacing: 3px;
  margin-bottom: 8px;
}
.sched-name {
  font-family: var(--pixel-font);
  font-size: 12px;
  color: var(--text-white);
  line-height: 1.8;
  margin-bottom: 8px;
}
.sched-desc {
  font-family: var(--body-font);
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ── SPONSORS ── */
#sponsors {
  padding: 100px 0;
}
.sponsors-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}
.sponsor-card {
  position: relative;
  padding: 34px 30px;
  background: var(--bg-card);
  border: 1px solid rgba(192, 57, 43, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
  clip-path: polygon(
    0 0,
    calc(100% - 14px) 0,
    100% 14px,
    100% 100%,
    0 100%
  );
}
.sponsor-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(192, 57, 43, 0.12),
    rgba(192, 57, 43, 0) 42%
  );
  pointer-events: none;
}
.sponsor-card:hover {
  border-color: rgba(192, 57, 43, 0.45);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.34);
  transform: translateY(-3px);
}
.sponsor-badge {
  display: inline-block;
  font-family: var(--mono-font);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--crimson-bright);
  margin-bottom: 14px;
}
.sponsor-name {
  font-family: var(--pixel-font);
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--text-white);
  line-height: 1.5;
  margin-bottom: 14px;
}
.sponsor-meta {
  font-family: var(--mono-font);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-gray);
  margin-bottom: 10px;
}
.sponsor-text {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.sponsor-link {
  font-family: var(--mono-font);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--crimson-bright);
  text-decoration: none;
  border-bottom: 1px solid rgba(192, 57, 43, 0.3);
  transition: all 0.2s ease;
}
.sponsor-link:hover {
  color: var(--text-white);
  border-bottom-color: rgba(240, 240, 240, 0.35);
}

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(192, 57, 43, 0.15);
  padding: 48px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  font-family: var(--pixel-font);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 1px;
}
.footer-logo span {
  color: var(--crimson-mid);
}
.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.footer-links a {
  font-family: var(--mono-font);
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: none;
  letter-spacing: 2px;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--crimson-bright);
}

/* ── PARTICLES ── */
#particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--crimson-bright);
  border-radius: 0;
  animation: particleFly linear infinite;
  opacity: 0;
}
@keyframes particleFly {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100px) translateX(var(--drift));
    opacity: 0;
  }
}

/* ── ANIMATIONS ── */
@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ── STATUS BADGE ── */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192, 57, 43, 0.1);
  border: 1px solid rgba(192, 57, 43, 0.3);
  padding: 6px 16px;
  font-family: var(--mono-font);
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--crimson-bright);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeSlideDown 0.8s 0.1s forwards;
}
.status-dot {
  width: 6px;
  height: 6px;
  background: var(--crimson-bright);
  border-radius: 0;
  animation: blink 1.5s ease-in-out infinite;
  box-shadow: 0 0 6px var(--crimson-bright);
}

/* ── LANG SWITCHER ── */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(192, 57, 43, 0.35);
  overflow: hidden;
  margin-right: 16px;
}
.lang-btn {
  font-family: var(--pixel-font);
  font-size: 9px;
  letter-spacing: 1px;
  padding: 8px 14px;
  background: transparent;
  color: var(--text-dim);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
.lang-btn + .lang-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(192, 57, 43, 0.35);
}
.lang-btn.active {
  background: rgba(192, 57, 43, 0.18);
  color: var(--crimson-bright);
}
.lang-btn:hover:not(.active) {
  color: var(--text-gray);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav {
    padding: 16px 24px;
  }
  .nav-right {
    gap: 10px;
  }
  .nav-page-link {
    font-size: 10px;
    letter-spacing: 1px;
    padding: 7px 8px;
  }
  .section-inner {
    padding: 0 24px;
  }
  .countdown-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .format-grid {
    grid-template-columns: 1fr;
  }
  .rules-grid {
    grid-template-columns: 1fr;
  }
  .rule-card {
    padding: 28px 24px;
  }
  .rules-cta {
    justify-content: center;
  }
  .hero-title {
    font-size: 36px;
    word-spacing: -25px;
    margin-left: -40px;
    margin-right: -40px;
  }
  .hero-year {
    font-size: 56px;
  }
  .sponsor-card {
    padding: 28px 24px;
  }
  .sponsor-meta,
  .sponsor-text {
    font-size: 14px;
  }
  footer {
    padding: 32px 24px;
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
}
