:root {
  --bg: #050505;
  --bg-2: #0a0000;
  --panel: #120808;
  --line: #3a1010;
  --text: #f3ecec;
  --muted: #b39a9a;
  --red: #b8000c;
  --red-hot: #ff1a24;
  --red-dim: rgba(184, 0, 12, 0.28);
  --silver: #e8d4d4;
  --font: "Inter", system-ui, sans-serif;
  --display: "Bebas Neue", Impact, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: #000;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.vignette {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 70;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(0,0,0,.7) 100%);
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  transition: background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(0,0,0,.9);
  backdrop-filter: blur(14px);
  border-bottom-color: #5a0c0c;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  letter-spacing: 2px;
  font-size: 22px;
}
.nav-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px #7a1010, 0 0 18px rgba(255,26,36,.45);
}
.nav-brand em { font-style: normal; color: var(--red-hot); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #d7b4b4;
}
.nav-links a:hover { color: var(--red-hot); }
.lang-switch {
  display: inline-flex;
  border: 1px solid #5a1010;
  margin-left: 10px;
}
.lang-switch button {
  background: transparent;
  border: 0;
  color: #d7b4b4;
  font-weight: 800;
  letter-spacing: .12em;
  font-size: 11px;
  padding: 8px 10px;
  cursor: pointer;
}
.lang-switch button.active {
  background: var(--red);
  color: #fff;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 34px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 6px 0;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 2px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: .2s ease;
}
.btn-sm { padding: 10px 16px; font-size: 11px; }
.btn-red {
  background: linear-gradient(180deg, #ff2a33, #8a0008);
  color: #fff;
  box-shadow: 0 8px 28px rgba(255,26,36,.45);
}
.btn-red:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-ghost {
  background: rgba(0,0,0,.35);
  border-color: #7a1515;
  color: #ffdede;
}
.btn-ghost:hover { border-color: var(--red-hot); color: #fff; background: rgba(184,0,12,.18); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 120px 20px 80px;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background: image-set(
      url("../assets/shot-sunset.webp") type("image/webp"),
      url("../assets/shot-sunset.jpg") type("image/jpeg")
    ) center 45% / cover no-repeat;
  filter: grayscale(.45) contrast(1.15) brightness(.72);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(20,0,0,.72) 45%, rgba(0,0,0,.96) 100%),
    radial-gradient(ellipse 70% 50% at 50% 28%, rgba(255,26,36,.28), transparent 60%);
}
.hero-glow {
  position: absolute;
  width: 520px; height: 520px;
  left: 50%; top: 18%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255,26,36,.4), transparent 68%);
  filter: blur(10px);
  animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: .55; }
  50% { opacity: 1; }
}
.hero-inner { position: relative; z-index: 2; max-width: 820px; }
.hero-media {
  width: min(260px, 58vw);
  margin: 0 auto 10px;
  aspect-ratio: 9 / 16;
  max-height: 38vh;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 18px 48px rgba(0,0,0,.7), 0 0 40px rgba(255,26,36,.35);
  border: 1px solid #6a1010;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}
.hero-logo {
  width: min(250px, 56vw);
  height: auto;
  margin: 0 auto 18px;
  background: none;
  border: 0;
  border-radius: 50%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.75));
}
.hero-banner {
  width: min(720px, 92vw);
  height: auto;
  margin: 0 auto 16px;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.75));
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.eyebrow {
  color: var(--red-hot);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
h1, h2 {
  font-family: var(--display);
  line-height: .92;
  letter-spacing: 3px;
}
.hero h1 {
  font-size: clamp(52px, 10vw, 108px);
}
.hero h1 span { color: var(--red-hot); }
.hero-sub {
  margin-top: 8px;
  font-size: clamp(16px, 2.2vw, 22px);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #ffb3b3;
  font-weight: 600;
}
.hero-tag {
  margin-top: 14px;
  color: var(--muted);
  letter-spacing: .32em;
  font-size: 11px;
  font-weight: 700;
}
.hero-lead {
  max-width: 560px;
  margin: 22px auto 0;
  color: var(--muted);
}
.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: .4em;
  color: var(--muted);
}

/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #6a1212;
  border-bottom: 1px solid #6a1212;
  background: linear-gradient(180deg, #140000, #000);
}
.stat {
  padding: 28px 12px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat strong {
  display: block;
  font-family: var(--display);
  font-size: 40px;
  letter-spacing: 2px;
  color: var(--red-hot);
}
.stat span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* SECTIONS */
.section { padding: 96px 0; }
.section-alt {
  background: linear-gradient(180deg, #0d0000, #050000);
  border-top: 1px solid #5a1010;
  border-bottom: 1px solid #5a1010;
}
.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(36px, 6vw, 64px); margin-bottom: 16px; color: #fff; }
.section-head h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 14px;
  background: linear-gradient(90deg, var(--red-hot), transparent);
}
.section-head p { color: var(--muted); }

.about-grid, .feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.panel, .feature {
  background: linear-gradient(180deg, #1a0808, #0a0000);
  border: 1px solid #4a1010;
  padding: 28px 24px;
  position: relative;
}
.panel::before, .feature::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
}
.panel h3, .feature h3 { margin-bottom: 10px; font-size: 18px; color: #ffd6d6; }
.panel p, .feature p { color: var(--muted); font-size: 15px; }
.feat-no {
  display: block;
  font-family: var(--display);
  color: var(--red);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.steps {
  list-style: none;
  display: grid;
  gap: 16px;
}
.steps li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  border: 1px solid #4a1010;
  background: linear-gradient(180deg, #160707, #0a0000);
}
.steps li > span {
  font-family: var(--display);
  font-size: 42px;
  color: var(--red);
  letter-spacing: 2px;
}
.steps h3 { margin-bottom: 6px; }
.steps p { color: var(--muted); }
.text-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--red-hot);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cta-banner {
  padding: 72px 0;
  border-top: 1px solid #7a1515;
}
.cta-inner {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 28px;
  align-items: center;
}
.cta-logo {
  width: 110px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #2a2a2a, 0 0 30px rgba(195,18,28,.25);
}
.cta-inner h2 { font-size: 48px; margin-bottom: 8px; }
.cta-inner p { color: var(--muted); max-width: 520px; }
.cta-actions { display: flex; flex-direction: column; gap: 10px; }

.mc-block {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 28px;
  align-items: stretch;
}
.mc-copy h2 { font-size: clamp(36px, 6vw, 64px); margin-bottom: 18px; }
.mc-copy p { color: var(--muted); margin-bottom: 16px; max-width: 640px; }
.mc-copy strong { color: #fff; }
.mc-note {
  border-left: 2px solid var(--red);
  padding-left: 16px;
}
.rp-tag {
  display: inline-block;
  margin: -6px 0 16px;
  padding: 6px 12px;
  border: 1px solid #7a1515;
  background: rgba(184, 0, 12, 0.16);
  color: #ffd6d6;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.rp-disclaimer {
  margin: 8px 0 18px;
  padding: 16px 18px;
  border: 1px solid #6a1212;
  background: rgba(0, 0, 0, .55);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  max-width: 640px;
}
.rp-disclaimer strong {
  display: block;
  color: #ffd6d6;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 6px;
}
.rp-disclaimer em {
  font-style: normal;
  color: #fff;
  font-weight: 700;
}
.mc-copy .btn { margin-top: 8px; }
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.aside-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
}
.aside-link {
  display: inline-block;
  color: var(--red-hot);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
}
.aside-link:hover { color: #fff; }
.mc-aside {
  background: linear-gradient(180deg, #1c0808, #0a0000);
  border: 1px solid #6a1212;
  padding: 28px 24px;
  position: relative;
}
.mc-aside::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
}
.mc-badge {
  font-family: var(--display);
  font-size: 48px;
  letter-spacing: 4px;
  color: var(--red-hot);
  margin-bottom: 18px;
}
.mc-aside ul { list-style: none; }
.mc-aside li {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: #fff;
  font-weight: 600;
}
.mc-aside li span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
}
.team-cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 10px; }

.mc-section {
  position: relative;
  overflow: hidden;
}
.mc-photo {
  position: absolute;
  inset: 0;
  background: image-set(
      url("../assets/shot-bikes.webp") type("image/webp"),
      url("../assets/shot-bikes.jpg") type("image/jpeg")
    ) right center / cover no-repeat;
  opacity: .28;
  filter: grayscale(.55) contrast(1.1);
}
.mc-section .wrap { position: relative; z-index: 1; }
.patch-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.patch-row-single {
  grid-template-columns: min(420px, 100%);
  justify-content: center;
}
.patch {
  background: rgba(10,0,0,.78);
  border: 1px solid #5a1212;
  padding: 22px;
  text-align: center;
}
.patch img {
  width: min(100%, 420px);
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.55));
}
.patch figcaption {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.cta-banner {
  background:
    linear-gradient(180deg, rgba(20,0,0,.82), rgba(0,0,0,.94)),
    image-set(
      url("../assets/bike.webp") type("image/webp"),
      url("../assets/bike.jpg") type("image/jpeg")
    ) center 70% / cover no-repeat;
}

.footer {
  padding: 40px 0 28px;
  border-top: 1px solid #5a1010;
  background: #000;
}
.footer-inner { display: grid; gap: 18px; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img { width: 52px; border-radius: 50%; }
.footer-brand strong { display: block; letter-spacing: .12em; }
.footer-brand span, .footer-note, .copy {
  color: var(--muted);
  font-size: 13px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}
.footer-links a {
  color: #ffd6d6;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
}
.footer-links a:hover { color: var(--red-hot); }

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1a1a1f;
  border: 1px solid var(--red);
  color: #fff;
  padding: 12px 18px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: .25s;
  z-index: 200;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.nav-links { gap: 16px; font-size: 12px; }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto 16px;
  padding: 6px 12px;
  border: 1px solid #7a1515;
  background: rgba(0,0,0,.45);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #ffd6d6;
}
.status-pill i {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ff1a24;
  box-shadow: 0 0 10px #ff1a24;
  display: inline-block;
}
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 420px;
  margin: 28px auto 0;
}
.cd-box {
  background: rgba(0,0,0,.55);
  border: 1px solid #5a1010;
  padding: 10px 6px;
}
.cd-box strong {
  display: block;
  font-family: var(--display);
  font-size: 28px;
  color: #fff;
  letter-spacing: 2px;
}
.cd-box span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.btn-disabled, .btn[aria-disabled="true"] {
  opacity: .55;
  cursor: not-allowed;
  filter: none !important;
  transform: none !important;
}

.feat-status {
  display: inline-block;
  margin-top: 12px;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red-hot);
  font-weight: 700;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery a, .gallery figure {
  position: relative;
  overflow: hidden;
  border: 1px solid #4a1010;
  background: #0a0000;
  margin: 0;
}
.gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 20%;
  transition: transform .4s ease;
}
.gallery a:hover img { transform: scale(1.05); }
.gallery figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 10px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,.85));
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #ffd6d6;
  font-weight: 700;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.team-card, .news-card {
  background: linear-gradient(180deg, #1a0808, #0a0000);
  border: 1px solid #4a1010;
  padding: 24px;
}
.team-card .role, .news-card time {
  color: var(--red-hot);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
}
.team-card h3, .news-card h3 { margin: 8px 0 10px; color: #ffd6d6; }
.team-card p, .news-card p { color: var(--muted); font-size: 15px; }
.team-card.open { opacity: .85; border-style: dashed; }

.rules-list {
  list-style: none;
  display: grid;
  gap: 10px;
}
.rules-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid #4a1010;
  background: linear-gradient(180deg, #160707, #0a0000);
}
.rules-list b {
  font-family: var(--display);
  font-size: 28px;
  color: var(--red);
  letter-spacing: 1px;
}
.rules-list h3 { margin-bottom: 4px; font-size: 16px; color: #ffd6d6; }
.rules-list p { color: var(--muted); font-size: 14px; }

.faq-list { display: grid; gap: 8px; }
.faq-item {
  border: 1px solid #4a1010;
  background: #0a0000;
}
.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  color: #ffd6d6;
  padding: 16px 18px;
  font-weight: 700;
  cursor: pointer;
}
.faq-item button::after { content: "+"; float: right; color: var(--red-hot); }
.faq-item.open button::after { content: "–"; }
.faq-item .faq-body {
  display: none;
  padding: 0 18px 16px;
  color: var(--muted);
}
.faq-item.open .faq-body { display: block; }

.form {
  display: grid;
  gap: 14px;
  max-width: 720px;
}
.form label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #d7b4b4;
}
.form input, .form select, .form textarea {
  width: 100%;
  background: #0a0000;
  border: 1px solid #4a1010;
  color: #fff;
  padding: 12px 14px;
  font: inherit;
}
.form textarea { min-height: 120px; resize: vertical; }
.form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-note { color: var(--muted); font-size: 13px; }
.form-ok {
  border: 1px solid #2a6a2a;
  background: rgba(20,60,20,.35);
  padding: 14px 16px;
  margin-bottom: 16px;
}
.hidden { position: absolute; left: -9999px; }

.legal {
  padding: 140px 0 80px;
}
.legal h1 { margin-bottom: 20px; }
.legal h2 { margin: 28px 0 10px; font-size: 28px; }
.legal p, .legal li { color: var(--muted); margin-bottom: 10px; }
.legal ul { padding-left: 18px; }

.board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.board-card {
  border: 1px solid #4a1010;
  background: #0a0000;
  padding: 18px;
}
.board-card.live { border-color: #8a1515; }
.board-card.open { border-style: dashed; }
.board-card h3 { margin: 8px 0; color: #ffd6d6; font-size: 18px; }
.board-card p { color: var(--muted); font-size: 14px; }
.trailer {
  position: relative;
  border: 1px solid #4a1010;
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
}
.trailer img { width: 100%; height: 420px; object-fit: cover; display: block; }
.trailer .play {
  position: absolute; inset: 0; margin: auto;
  width: 74px; height: 74px; border-radius: 50%; border: 0;
  background: var(--red); color: #fff; font-size: 28px; cursor: pointer;
}
.trailer iframe { width: 100%; height: 420px; border: 0; display: block; }
.social { display: flex; gap: 16px; flex-wrap: wrap; }
.social:empty { display: none; }

.dept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.dept-card {
  background: linear-gradient(180deg, #1a0808, #0a0000);
  border: 1px solid #4a1010;
  overflow: hidden;
}
.dept-shot img, .fleet img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.dept-body { padding: 20px; }
.dept-body h3 { margin: 8px 0 10px; color: #ffd6d6; }
.dept-body p { color: var(--muted); }
.fleet {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 18px 0 10px;
}
.fleet a { border: 1px solid #4a1010; overflow: hidden; display: block; }
.fleet img { height: 130px; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  display: none;
  place-items: center;
  z-index: 300;
  padding: 24px;
}
.lightbox.show { display: grid; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 86vh; }
.lightbox button {
  position: absolute;
  top: 18px; right: 22px;
  background: none; border: 0; color: #fff;
  font-size: 28px; cursor: pointer;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(8,8,10,.96);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .about-grid, .feature-grid, .gallery, .team-grid, .news-grid, .form .form-row, .patch-row, .dept-grid, .fleet, .board { grid-template-columns: 1fr; }
  .trailer img, .trailer iframe { height: 220px; }
  .gallery img { height: 200px; }
  .nav-links { gap: 16px; }
  .cta-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-logo { margin: 0 auto; }
  .cta-inner p { margin: 0 auto; }
  .cta-actions { flex-direction: row; justify-content: center; flex-wrap: wrap; }
  .mc-block { grid-template-columns: 1fr; }
  .patch-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .steps li { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
}

/* ============================================================
   Rot / Schwarz — Menü bleibt, Coin-Logo bleibt
   ============================================================ */
:root {
  --bg: #050505;
  --bg-2: #0a0000;
  --panel: #120808;
  --line: #3a1010;
  --text: #f3ecec;
  --muted: #b39a9a;
  --red: #b8000c;
  --red-hot: #ff1a24;
  --red-dim: rgba(184, 0, 12, 0.28);
  --silver: #e8d4d4;
  --ink: #140000;
  --glass-fill: rgba(184, 0, 12, 0.10);
  --glass-fill-hero: rgba(184, 0, 12, 0.16);
  --glass-shine: rgba(255, 60, 60, 0.28);
  --glass-stroke: rgba(255, 40, 48, 0.38);
  --glass: linear-gradient(155deg, rgba(184,0,12,.22) 0%, rgba(40,0,0,.28) 42%, rgba(0,0,0,.55) 100%);
  --glass-hero: linear-gradient(155deg, rgba(220,20,28,.28) 0%, rgba(80,0,0,.30) 44%, rgba(0,0,0,.58) 100%);
  --glass-inset: inset 0 1px 0 rgba(255,120,120,.28), inset 0 -1px 0 rgba(0,0,0,.4);
  --shadow: 0 18px 50px rgba(0,0,0,.55);
}
html, body { background: #050505; color: #f3ecec; color-scheme: dark; }

.nav.scrolled {
  background: rgba(8, 0, 0, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: #5a0c0c;
}
.nav-brand { color: #f3ecec; }
.nav-brand img {
  box-shadow: 0 0 0 1px #7a1010, 0 0 18px rgba(255,26,36,.5);
}
.nav-brand em { color: var(--red-hot); }
.nav-links { color: #d7b4b4; }
.nav-links a:hover { color: var(--red-hot); }
.lang-switch { border: 1px solid #5a1010; background: rgba(20,0,0,.45); }
.lang-switch button { color: #d7b4b4; }
.lang-switch button.active {
  background: var(--red);
  color: #fff;
}

.btn { border-radius: 2px; }
.btn-red {
  background: linear-gradient(180deg, #ff2a33, #8a0008) !important;
  color: #fff !important;
  border: 0;
  box-shadow: 0 8px 28px rgba(255,26,36,.45);
}
.btn-red:hover { filter: brightness(1.1); color: #fff !important; }
.btn-ghost {
  background: rgba(0,0,0,.4) !important;
  border: 1px solid #7a1515 !important;
  color: #ffdede !important;
  backdrop-filter: none;
}
.btn-ghost:hover {
  border-color: var(--red-hot) !important;
  color: #fff !important;
  background: rgba(184,0,12,.22) !important;
}

.hero-glow {
  display: block;
  opacity: .7;
  filter: none;
  background: radial-gradient(ellipse 70% 50% at 50% 20%, rgba(184,0,12,.45), transparent 70%);
}
.hero-photo {
  filter: contrast(1.08) brightness(.72) saturate(.95);
  background:
    image-set(
      url("../assets/hero-city.webp") type("image/webp"),
      url("../assets/hero-city.jpg") type("image/jpeg")
    ) center 42% / cover no-repeat !important;
}
.hero-bg {
  background:
    linear-gradient(180deg, rgba(10,0,0,.18) 0%, rgba(10,0,0,.42) 52%, rgba(5,0,0,.92) 100%),
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(184,0,12,.22), transparent 58%);
}
.hero-bg {
  background:
    linear-gradient(180deg, rgba(10,0,0,.28) 0%, rgba(10,0,0,.55) 50%, rgba(5,0,0,.94) 100%),
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(184,0,12,.28), transparent 58%);
}

.glass-plate {
  position: relative;
  isolation: isolate;
  width: min(920px, 100%);
  margin: 0 auto 16px;
  overflow: hidden;
  border-radius: 8px;
  background-color: var(--glass-fill-hero);
  background-image:
    radial-gradient(ellipse 80% 60% at 8% -10%, rgba(255,40,40,.22), transparent 50%),
    var(--glass-hero);
  border: 1px solid var(--glass-stroke);
  box-shadow: 0 22px 50px rgba(0,0,0,.55), 0 0 40px rgba(184,0,12,.18), var(--glass-inset);
  backdrop-filter: blur(22px) saturate(1.1);
  -webkit-backdrop-filter: blur(22px) saturate(1.1);
}
.glass-logo { padding: 22px 22px 20px; }
.hero-coin {
  width: min(280px, 58vw);
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  margin: 10px auto 8px;
  display: block;
  filter: drop-shadow(0 16px 28px rgba(0,0,0,.7)) drop-shadow(0 0 28px rgba(184,0,12,.45));
  border-radius: 50%;
  background: transparent;
  border: 0;
}
.hero-wordmark {
  display: block;
  width: min(720px, 90%);
  height: auto;
  margin: 4px auto 12px;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.75)) drop-shadow(0 0 18px rgba(184,0,12,.35));
}
.hero-welcome {
  margin: 8px 0 10px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(36px, 7vw, 72px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f3ecec;
  line-height: 1;
  text-shadow: 0 0 24px rgba(255,26,36,.45), 0 4px 16px rgba(0,0,0,.8);
}
.glass-welcome { padding: 48px 24px 40px; text-align: center; }
.glass-welcome h1 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(48px, 10vw, 96px);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #f3ecec;
  line-height: 1;
  text-shadow: 0 0 24px rgba(255,26,36,.45), 0 4px 16px rgba(0,0,0,.8);
}
.welcome-sub {
  margin: 12px 0 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: #ff8a8a;
}

.panel, .feature, .steps li, .team-card, .news-card, .faq-item, .dept-card,
.club-card, .recruit-banner, .mc-aside, .rules-list li, .form, .cd-box,
.status-pill, .patch, .board-card {
  background-color: rgba(18, 8, 8, 0.72) !important;
  background-image: var(--glass) !important;
  border: 1px solid #3a1010 !important;
  border-radius: 4px;
  box-shadow: 0 14px 36px rgba(0,0,0,.4), var(--glass-inset);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.section-head h2, .mc-copy h2, .cta-inner h2, .legal h1 {
  color: #f3ecec;
  text-shadow: 0 2px 12px rgba(184,0,12,.35);
}
.section-head h2::after { background: linear-gradient(90deg, var(--red-hot), transparent); }
.stats {
  background: rgba(12, 0, 0, .7);
  border-color: #3a1010 !important;
}
.footer { background: #050505; border-top: 1px solid #3a1010; }
.form label { color: #d7b4b4; }
.form input, .form select, .form textarea {
  background: rgba(8, 0, 0, .55);
  border: 1px solid #5a1010;
  color: #f3ecec;
  border-radius: 2px;
}
.cta-logo { box-shadow: 0 0 0 1px #7a1010, 0 0 28px rgba(255,26,36,.4); }

@media (max-width: 900px) {
  .nav-links {
    background: rgba(8, 0, 0, 0.96) !important;
    border-bottom: 1px solid #5a0c0c;
    backdrop-filter: blur(18px);
  }
}
@media (max-width: 720px) {
  .glass-logo { padding: 16px 14px; }
  .glass-welcome { padding: 32px 16px 28px; }
  .glass-welcome h1 { letter-spacing: .1em; }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .glass-plate { background: linear-gradient(155deg, #4a0808, #120000); }
  .panel, .feature, .form, .team-card, .faq-item { background: #120808 !important; }
}
