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

:root {
  --bg: #06070d;
  --bg-soft: rgba(14, 16, 24, 0.9);
  --bg-card: rgba(14, 18, 29, 0.82);
  --bg-card-strong: rgba(16, 20, 34, 0.94);
  --bg-input: rgba(19, 24, 39, 0.95);
  --text: #edf0f8;
  --text-dim: #9ba3b8;
  --text-soft: #7a839d;
  --border: rgba(255, 255, 255, 0.08);
  --fire: #ff6b35;
  --fire-bright: #ffab73;
  --fire-deep: #c73e00;
  --cyan: #00f0ff;
  --cyan-dim: #098694;
  --gold: #ffd464;
  --success: #00e676;
  --violet: #8d62ff;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', sans-serif;
  background:
    radial-gradient(circle at top center, rgba(255, 107, 53, 0.16), transparent 35%),
    radial-gradient(circle at 80% 10%, rgba(0, 240, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #05060b, #070911 45%, #05060b);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

#particles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.page {
  position: relative;
  z-index: 1;
}

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fire);
  box-shadow: 0 0 16px rgba(255, 107, 53, 0.7);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.2s;
  mix-blend-mode: screen;
}

body:hover .cursor-dot { opacity: 0.8; }

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 0 4rem;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 240, 255, 0.26);
  background: rgba(0, 240, 255, 0.06);
  color: var(--cyan);
  font-family: 'Orbitron', monospace;
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.08);
}

.hero-title {
  margin-top: 1.8rem;
  font-family: 'Orbitron', monospace;
  line-height: 0.96;
  text-transform: uppercase;
}

.hero-title .line-1 {
  display: block;
  font-size: clamp(2.6rem, 8vw, 5.1rem);
  color: var(--text);
  letter-spacing: 0.08em;
}

.hero-title .line-1 .accent { color: var(--cyan); }

.hero-title .line-2 {
  display: block;
  font-size: clamp(3.8rem, 14vw, 8.8rem);
  color: var(--fire);
  text-shadow:
    0 0 30px rgba(255, 107, 53, 0.42),
    0 0 80px rgba(255, 107, 53, 0.16);
  position: relative;
}

.glitch {
  position: relative;
  display: inline-block;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.glitch::before {
  color: var(--cyan);
  z-index: -1;
  animation: glitch-left 3.2s infinite linear alternate-reverse;
}

.glitch::after {
  color: var(--violet);
  z-index: -2;
  animation: glitch-right 2.8s infinite linear alternate-reverse;
}

@keyframes glitch-left {
  0%, 90%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
  92% { clip-path: inset(25% 0 50% 0); transform: translate(-4px, 2px); }
  95% { clip-path: inset(60% 0 12% 0); transform: translate(4px, -1px); }
  98% { clip-path: inset(8% 0 72% 0); transform: translate(-2px, 3px); }
}

@keyframes glitch-right {
  0%, 88%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
  91% { clip-path: inset(18% 0 56% 0); transform: translate(4px, -2px); }
  95% { clip-path: inset(72% 0 8% 0); transform: translate(-4px, 1px); }
  97% { clip-path: inset(6% 0 82% 0); transform: translate(2px, 3px); }
}

.hero-year {
  margin-top: -0.2rem;
  font-family: 'Orbitron', monospace;
  font-size: clamp(4rem, 15vw, 10rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.08);
  line-height: 0.9;
  user-select: none;
}

.hero-date {
  margin-top: 1.5rem;
  font-size: 1.12rem;
  color: var(--text-dim);
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.hero-date strong {
  color: var(--fire-bright);
  font-weight: 700;
  font-size: 1.15em;
}

.hero-location {
  margin-top: 0.4rem;
  color: var(--cyan-dim);
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-last {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.4rem;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 212, 100, 0.25);
  color: var(--gold);
  background: rgba(255, 212, 100, 0.06);
  font-family: 'Orbitron', monospace;
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 620px;
  margin: 1.2rem auto 0;
  color: var(--text-dim);
  font-size: 1.02rem;
  line-height: 1.75;
  text-align: center;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.6rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.92rem 1.22rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  text-decoration: none;
  font-family: 'Orbitron', monospace;
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.hero-cta:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 240, 255, 0.28);
  box-shadow: 0 18px 44px rgba(0, 240, 255, 0.1);
}

.hero-cta-primary {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.96), rgba(199, 62, 0, 0.96));
  border-color: rgba(255, 171, 115, 0.38);
  box-shadow: 0 18px 48px rgba(255, 107, 53, 0.18);
}

.hero-stage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: min(1080px, 100%);
  margin-top: 2.3rem;
  perspective: 1500px;
}

.hero-card {
  position: relative;
  min-height: 190px;
  padding: 1.2rem 1.15rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    linear-gradient(180deg, rgba(15, 18, 29, 0.92), rgba(10, 12, 20, 0.92));
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.8rem;
  text-align: left;
  transform-style: preserve-3d;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.28s;
}

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

.hero-card strong,
.hero-card span {
  transform: translateZ(20px);
}

.hero-card strong {
  font-family: 'Orbitron', monospace;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--text);
}

.hero-card span {
  color: var(--text-dim);
  font-size: 0.82rem;
  line-height: 1.65;
}

.hero-card-kicker {
  font-family: 'Orbitron', monospace;
  font-size: 0.58rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
}

.hero-card-main {
  transform: rotateX(6deg) rotateY(-8deg) translateY(0);
  border-color: rgba(255, 107, 53, 0.24);
  background:
    radial-gradient(circle at top right, rgba(255, 107, 53, 0.16), transparent 48%),
    linear-gradient(180deg, rgba(17, 11, 8, 0.96), rgba(10, 12, 20, 0.92));
}

.hero-card-side {
  transform: rotateX(10deg) rotateY(7deg) translateY(18px);
}

.hero-card-side-alt {
  transform: rotateX(12deg) rotateY(-5deg) translateY(24px);
}

.countdown {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.3rem;
}

.countdown-item {
  min-width: 82px;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 14, 23, 0.72);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.countdown-value {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  color: var(--fire);
  text-shadow: 0 0 16px rgba(255, 107, 53, 0.24);
}

.countdown-label {
  margin-top: 0.35rem;
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-soft);
}

.countdown-sep {
  align-self: center;
  margin-top: -0.2rem;
  color: rgba(255, 255, 255, 0.16);
  font-family: 'Orbitron', monospace;
  font-size: 1.7rem;
  animation: blink 1.2s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

.scroll-indicator {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-soft);
  cursor: pointer;
  animation: float 2.2s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 18px;
  height: 18px;
  border-right: 2px solid var(--cyan-dim);
  border-bottom: 2px solid var(--cyan-dim);
  transform: rotate(45deg);
}

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

section { padding: 5rem 0; }

.section-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-dim);
  max-width: 760px;
  margin: 0 auto 2.7rem;
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.info-card {
  padding: 1.45rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-card);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.24);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 53, 0.26);
  box-shadow: 0 28px 70px rgba(255, 107, 53, 0.1);
}

.info-card .icon {
  font-size: 2rem;
  margin-bottom: 0.85rem;
}

.info-card h3 {
  font-family: 'Orbitron', monospace;
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.6rem;
}

.info-card p {
  color: var(--text-dim);
  line-height: 1.65;
  font-size: 0.9rem;
}

.quotes-grid {
  columns: 2;
  column-gap: 1rem;
}

.quote-card {
  break-inside: avoid;
  margin-bottom: 1rem;
  padding: 1.2rem 1.35rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--fire);
  background: rgba(11, 15, 24, 0.84);
  transition: transform 0.25s, border-left-color 0.25s, box-shadow 0.25s;
}

.quote-card:hover {
  transform: translateX(4px);
  border-left-color: var(--cyan);
  box-shadow: 0 18px 44px rgba(0, 240, 255, 0.08);
}

.quote-text {
  font-style: italic;
  line-height: 1.55;
  color: var(--text);
}

.quote-author {
  display: block;
  margin-top: 0.6rem;
  font-family: 'Orbitron', monospace;
  font-size: 0.64rem;
  letter-spacing: 1px;
  color: var(--text-soft);
}

.live-board {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-card-strong);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.live-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 107, 53, 0.08), rgba(255, 107, 53, 0.02));
}

.live-header-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.45); }
  50% { box-shadow: 0 0 0 6px rgba(0, 230, 118, 0); }
}

.live-title {
  font-family: 'Orbitron', monospace;
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
}

.live-header-right {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.live-feed-state {
  padding: 0.35rem 0.58rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  font-family: 'Orbitron', monospace;
  font-size: 0.54rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.live-feed-state.live {
  color: var(--success);
  border-color: rgba(0, 230, 118, 0.2);
  background: rgba(0, 230, 118, 0.08);
}

.live-count {
  font-family: 'Orbitron', monospace;
  font-size: 1.2rem;
  color: var(--fire);
}

.live-meta {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.7rem;
  padding: 1rem 1.25rem 0;
}

.live-meta-card {
  min-height: 76px;
  padding: 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.live-meta-card span {
  display: block;
  color: var(--text-soft);
  font-family: 'Orbitron', monospace;
  font-size: 0.52rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.live-meta-card strong {
  display: block;
  margin-top: 0.4rem;
  font-family: 'Orbitron', monospace;
  font-size: 1.22rem;
  color: var(--text);
}

.live-brings-panel {
  padding: 1rem 1.25rem 0;
}

.live-brings-title {
  margin-bottom: 0.65rem;
  color: var(--text-soft);
  font-family: 'Orbitron', monospace;
  font-size: 0.56rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.live-brings {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.live-bring-tag {
  padding: 0.34rem 0.58rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 240, 255, 0.16);
  background: rgba(0, 240, 255, 0.08);
  color: var(--cyan);
  font-size: 0.68rem;
  white-space: nowrap;
}

.live-list {
  padding: 0.7rem;
  max-height: 450px;
  overflow-y: auto;
}

.live-list::-webkit-scrollbar { width: 6px; }
.live-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.live-entry {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  transition: background 0.2s;
  animation: slide-in 0.42s ease both;
}

.live-entry:hover {
  background: rgba(255, 255, 255, 0.03);
}

@keyframes slide-in {
  from { opacity: 0; transform: translateX(-16px); }
  to { opacity: 1; transform: translateX(0); }
}

.live-order {
  min-width: 38px;
  padding-top: 0.35rem;
  text-align: center;
  font-family: 'Orbitron', monospace;
  font-size: 0.68rem;
  letter-spacing: 1px;
  color: var(--fire);
}

.live-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--fire), var(--violet));
  color: #fff;
  font-family: 'Orbitron', monospace;
  font-size: 0.72rem;
  font-weight: 700;
}

.live-info {
  flex: 1;
  min-width: 0;
}

.live-topline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.live-name {
  font-weight: 700;
  font-size: 0.92rem;
}

.live-transport {
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.live-transport.offer {
  color: var(--success);
  border-color: rgba(0, 230, 118, 0.18);
  background: rgba(0, 230, 118, 0.08);
}

.live-transport.need {
  color: var(--fire-bright);
  border-color: rgba(255, 107, 53, 0.18);
  background: rgba(255, 107, 53, 0.08);
}

.live-days,
.live-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.45rem;
}

.live-day-tag,
.live-game-tag,
.live-bring-chip {
  font-size: 0.6rem;
  padding: 0.16rem 0.42rem;
  border-radius: 4px;
}

.live-day-tag {
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.15);
  color: var(--cyan);
  font-family: 'Orbitron', monospace;
  letter-spacing: 0.5px;
}

.live-game-tag {
  background: rgba(141, 98, 255, 0.08);
  border: 1px solid rgba(141, 98, 255, 0.16);
  color: #cbb8ff;
}

.live-bring-chip {
  background: rgba(255, 212, 100, 0.08);
  border: 1px solid rgba(255, 212, 100, 0.16);
  color: var(--gold);
}

.live-message {
  margin-top: 0.55rem;
  color: var(--text-dim);
  line-height: 1.55;
  font-size: 0.8rem;
}

.live-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-dim);
}

.live-empty .big {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.form-card {
  padding: 2rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-card-strong);
  box-shadow: var(--shadow);
  position: relative;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--cyan);
  font-family: 'Orbitron', monospace;
  font-size: 0.58rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.req { color: var(--fire); }

.form-note {
  margin: -0.4rem 0 1.3rem;
  color: var(--text-dim);
  font-size: 0.82rem;
  line-height: 1.6;
}

input[type="text"],
input[type="tel"],
input[type="time"],
select,
textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-input);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(0, 240, 255, 0.36);
  box-shadow:
    0 0 0 3px rgba(0, 240, 255, 0.08),
    0 16px 40px rgba(0, 240, 255, 0.06);
  transform: translateY(-1px);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-soft);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%2300f0ff' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L2 5h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.95rem center;
  padding-right: 2.6rem;
}

select option {
  background: #0b0f16;
}

.days-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.55rem;
}

.day-opt {
  position: relative;
}

.day-opt input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.day-opt label {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  padding: 0.65rem 0.35rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-input);
  cursor: pointer;
  user-select: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s, transform 0.25s;
  font-family: 'Space Grotesk', sans-serif !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: var(--text-soft) !important;
}

.day-opt label .dn {
  font-family: 'Orbitron', monospace;
  font-size: 0.56rem;
  color: var(--cyan-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.day-opt label .dd {
  margin-top: 0.15rem;
  font-size: 0.88rem;
}

.day-opt input:checked + label {
  border-color: rgba(255, 107, 53, 0.4);
  background: rgba(255, 107, 53, 0.08);
  box-shadow: 0 18px 44px rgba(255, 107, 53, 0.08);
  transform: translateY(-2px);
}

.day-opt input:checked + label .dn { color: var(--fire); }
.day-opt input:checked + label .dd { color: var(--text); }

.check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.55rem;
}

.chk {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.72rem 0.82rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-input);
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.chk:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 240, 255, 0.2);
}

.chk input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--fire);
  flex-shrink: 0;
  cursor: pointer;
}

.chk span {
  color: var(--text-dim);
  font-size: 0.84rem;
  line-height: 1.45;
}

.chk:has(input:checked) {
  border-color: rgba(255, 107, 53, 0.24);
  background: rgba(255, 107, 53, 0.06);
}

.chk:has(input:checked) span {
  color: var(--text);
}

.trap-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.submit-btn {
  width: 100%;
  padding: 1rem 1.1rem;
  margin-top: 0.7rem;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--fire), var(--fire-deep));
  color: #fff;
  font-family: 'Orbitron', monospace;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(255, 107, 53, 0.24);
}

.submit-btn:disabled {
  opacity: 0.75;
  cursor: progress;
  transform: none;
  box-shadow: none;
}

.checklist-section {
  padding: 1.8rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 15, 24, 0.84);
  box-shadow: var(--shadow);
}

.checklist-section h3 {
  font-family: 'Orbitron', monospace;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}

.checklist-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.45rem 1.2rem;
  list-style: none;
}

.checklist-items li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  color: var(--text-dim);
  line-height: 1.5;
  font-size: 0.9rem;
}

.checklist-items li::before {
  content: '>';
  color: var(--cyan-dim);
  font-family: 'Orbitron', monospace;
  font-size: 0.65rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.footer {
  padding: 3rem 0 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-soft);
  font-size: 0.8rem;
}

.heart { color: var(--fire); }

.success-overlay,
.easter-egg-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 2rem;
  z-index: 1400;
  background: rgba(6, 7, 13, 0.94);
}

.success-overlay.active,
.easter-egg-overlay.active {
  display: flex;
}

.success-icon {
  font-size: 5rem;
  margin-bottom: 1rem;
  animation: success-bounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes success-bounce {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.success-overlay h2,
.easter-egg-overlay h2 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.6rem, 5vw, 2.3rem);
  margin-bottom: 0.8rem;
}

.success-overlay p,
.easter-egg-overlay p {
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 640px;
}

.success-close {
  margin-top: 1.5rem;
  padding: 0.82rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: 'Orbitron', monospace;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
}

.easter-egg-overlay {
  cursor: pointer;
}

.easter-egg-overlay h2 {
  background: linear-gradient(135deg, var(--fire), var(--gold), var(--cyan), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 280% 280%;
  animation: rainbow 3s ease infinite;
}

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

.hint {
  margin-top: 1.5rem;
  color: var(--text-soft);
  font-size: 0.7rem;
  opacity: 0.6;
}

.audio-toggle {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1300;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 16, 26, 0.92);
  color: var(--text-dim);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, transform 0.25s;
}

.audio-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 240, 255, 0.22);
  color: var(--cyan);
}

.audio-toggle.active {
  border-color: rgba(255, 107, 53, 0.28);
  color: var(--fire);
}

.secret-toast {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translate(-50%, -14px);
  padding: 0.78rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 171, 115, 0.24);
  background: rgba(8, 10, 16, 0.94);
  color: var(--text);
  font-family: 'Orbitron', monospace;
  font-size: 0.62rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  z-index: 1500;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.secret-toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 980px) {
  .hero-stage { grid-template-columns: 1fr; }
  .hero-card,
  .hero-card-main,
  .hero-card-side,
  .hero-card-side-alt { transform: none; min-height: auto; }
  .info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .live-meta { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .hero-stage { display: none; }
  .hero-lede { margin-bottom: 0.5rem; }
}

@media (max-width: 700px) {
  .quotes-grid { columns: 1; }
  .countdown { gap: 0.55rem; }
  .countdown-sep { display: none; }
  .days-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .check-grid { grid-template-columns: 1fr; }
  .checklist-items { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-cta { width: 100%; }
  .hero-date { font-size: 1rem; }
  .hero-lede { font-size: 0.95rem; padding: 0 0.5rem; }
  .live-meta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-card { padding: 1.35rem; }
  section { padding: 3.5rem 0; }
}

@media (max-width: 560px) {
  .container { width: min(100%, calc(100% - 1.4rem)); }
  .info-grid { grid-template-columns: 1fr; }
  .hero-lede { font-size: 0.94rem; }
  .live-entry { padding-inline: 0.75rem; }
  .audio-toggle { right: 1rem; bottom: 1rem; }
  .top-games { flex-direction: column; align-items: center; }
  .top-game { max-width: 100%; }
}

/* ═══════ VOTE BADGES ═══════ */
.vote-badge {
  font-style: normal;
  font-size: 0.65rem;
  font-family: 'Orbitron', monospace;
  color: var(--fire);
  background: rgba(255, 107, 53, 0.12);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  margin-left: 0.3rem;
  vertical-align: middle;
}
.vote-badge:empty { display: none; }

/* ═══════ TOP GAMES PODIUM ═══════ */
.top-games {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.top-game {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  text-align: center;
  min-width: 180px;
  flex: 1;
  max-width: 240px;
  transition: all 0.3s;
}
.top-game:hover {
  border-color: var(--fire);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}
.top-game .medal { font-size: 2rem; margin-bottom: 0.4rem; }
.top-game .game-name {
  font-family: 'Orbitron', monospace;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.top-game .vote-count {
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fire);
}
.top-game .vote-label {
  font-size: 0.6rem;
  color: var(--text-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
}
