:root {
  --bg: #07090f;
  --bg-soft: #0f1524;
  --card: #131c30;
  --card-glass: rgba(19, 28, 48, 0.72);
  --text: #eef2ff;
  --muted: #b9c3e3;
  --line: #2c3a66;
  --accent: #68e1ff;
  --accent-2: #ffd166;
  --danger: #ff8b8b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(920px 520px at 12% -8%, rgba(110, 168, 255, 0.34), transparent 70%),
    radial-gradient(900px 500px at 88% -12%, rgba(171, 124, 255, 0.3), transparent 72%),
    radial-gradient(820px 400px at 50% -10%, rgba(76, 201, 240, 0.16), transparent 74%),
    linear-gradient(180deg, #0a1122 0%, #110b26 54%, #07090f 100%);
  color: var(--text);
  line-height: 1.55;
}

.hero,
main,
.winter-footer {
  position: relative;
  z-index: 1;
}

.winter-snow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.winter-snow span {
  position: absolute;
  top: -20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 22px;
  text-shadow: 0 0 8px rgba(76, 201, 240, 0.6);
  animation: snowfall linear infinite;
}

.winter-snow span:nth-child(1)  { left: 5%;  font-size: 18px; animation-duration: 12s; animation-delay: 0s; }
.winter-snow span:nth-child(2)  { left: 14%; font-size: 26px; animation-duration: 15s; animation-delay: 2s; }
.winter-snow span:nth-child(3)  { left: 22%; font-size: 20px; animation-duration: 10s; animation-delay: 4s; }
.winter-snow span:nth-child(4)  { left: 32%; font-size: 24px; animation-duration: 14s; animation-delay: 1s; }
.winter-snow span:nth-child(5)  { left: 44%; font-size: 16px; animation-duration: 11s; animation-delay: 3s; }
.winter-snow span:nth-child(6)  { left: 56%; font-size: 22px; animation-duration: 13s; animation-delay: 5s; }
.winter-snow span:nth-child(7)  { left: 66%; font-size: 28px; animation-duration: 16s; animation-delay: 0s; }
.winter-snow span:nth-child(8)  { left: 76%; font-size: 18px; animation-duration: 12s; animation-delay: 2s; }
.winter-snow span:nth-child(9)  { left: 86%; font-size: 24px; animation-duration: 14s; animation-delay: 4s; }
.winter-snow span:nth-child(10) { left: 94%; font-size: 20px; animation-duration: 11s; animation-delay: 1s; }

@keyframes snowfall {
  0% {
    transform: translateY(-20px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(110vh) rotate(360deg);
    opacity: 0;
  }
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.hero {
  max-width: 960px;
  margin: 0 auto 8px;
  padding: 26px 24px 44px;
  text-align: center;
  position: relative;
}

.winter-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
  margin: 0;
  padding: 0;
  backdrop-filter: blur(10px);
  background: rgba(8, 14, 30, 0.62);
  border-bottom: 1px solid rgba(104, 225, 255, 0.22);
}

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

.winter-nav__brand {
  display: inline-flex;
  align-items: center;
}

.winter-nav__brand img {
  width: 82px;
  height: auto;
}

.winter-nav__links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.winter-nav__links a {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.winter-nav__links a:hover {
  color: var(--accent);
  text-decoration: none;
}

.winter-nav__cta {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--line);
  background: rgba(13, 19, 35, 0.64);
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
}

.winter-nav__cta:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}

.hero__logo-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 8px 0 14px;
}

.hero__logo {
  width: 108px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.45));
}

.hero__eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 10px 0 12px;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(42px, 8vw, 74px);
  letter-spacing: 0.025em;
  line-height: 1;
}

.hero__lead {
  margin: 0 auto 24px;
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.hero__countdown {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero__countdown > div {
  background: rgba(104, 225, 255, 0.08);
  border: 1px solid rgba(104, 225, 255, 0.28);
  border-radius: 14px;
  padding: 12px 16px;
  min-width: 82px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 6px 20px rgba(104, 225, 255, 0.12);
}

.hero__countdown strong {
  font-family: "Anton", Impact, sans-serif;
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
}

.hero__countdown span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.hero__sticker {
  display: inline-block;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  background: var(--accent);
  color: #05192a;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  box-shadow: 0 10px 30px rgba(104, 225, 255, 0.35);
  letter-spacing: 0.04em;
}

.hero__sticker--winter {
  background: var(--accent);
  color: #05192a;
}

.card--special {
  border-color: rgba(104, 225, 255, 0.48);
  background: linear-gradient(180deg, rgba(104, 225, 255, 0.16) 0%, rgba(104, 225, 255, 0.08) 100%);
  box-shadow: 0 12px 32px rgba(104, 225, 255, 0.2);
}

.hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

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

.section {
  padding: 38px 0 54px;
}

.event-spotlight {
  padding: 18px 0 34px;
}

.event-spotlight__inner {
  border: 1px solid rgba(104, 225, 255, 0.35);
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(15, 27, 56, 0.85) 0%, rgba(11, 18, 36, 0.88) 100%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  padding: 22px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  align-items: center;
}

.event-spotlight__date {
  display: grid;
  justify-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(8, 14, 30, 0.72);
  padding: 16px 10px;
}

.event-spotlight__day,
.event-spotlight__mon,
.event-spotlight__year {
  color: var(--muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.event-spotlight__num {
  font-family: "Anton", Impact, sans-serif;
  font-size: 72px;
  line-height: 0.95;
}

.event-spotlight__eyebrow {
  margin: 0;
  color: var(--accent-2);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.event-spotlight__title {
  margin: 6px 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 0.95;
  letter-spacing: 0.025em;
}

.event-spotlight__sub {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
}

.event-spotlight__text {
  margin: 0;
  color: var(--muted);
  max-width: 760px;
}

.event-spotlight__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.event-spotlight__chips span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  color: #d8e3ff;
  background: rgba(255, 255, 255, 0.02);
}

.grid {
  display: grid;
  gap: 14px;
}

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

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--card-glass);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 18px 16px;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(5, 9, 20, 0.34);
}

.card--warn {
  border-color: rgba(255, 139, 139, 0.5);
  background: linear-gradient(180deg, rgba(255, 139, 139, 0.12) 0%, rgba(255, 139, 139, 0.05) 100%);
}

.card--special {
  border-color: rgba(104, 225, 255, 0.48);
  background: linear-gradient(180deg, rgba(104, 225, 255, 0.16) 0%, rgba(104, 225, 255, 0.08) 100%);
  box-shadow: 0 12px 32px rgba(104, 225, 255, 0.2);
}

.card__meta {
  margin: 12px 0 0;
  color: #ffd8d8;
  font-size: 14px;
}

ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

li + li {
  margin-top: 8px;
}

strong {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--accent);
  color: #05192a;
}

.btn--primary:hover {
  background: #8feaff;
}

.btn--ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.btn--ghost:hover {
  border-color: var(--accent-2);
  color: var(--accent-2);
}

.rules-cta {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
}

.modal.is-open {
  display: block;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 15, 0.7);
  backdrop-filter: blur(3px);
}

.modal__dialog {
  position: relative;
  width: min(920px, calc(100% - 32px));
  margin: 30px auto;
  max-height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #101a2f 0%, #0c1428 100%);
  border: 1px solid #324272;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.55);
}

.modal__head,
.modal__foot {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.modal__head {
  border-bottom: 1px solid var(--line);
}

.modal__eyebrow {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.modal__title {
  margin: 4px 0;
  font-size: clamp(24px, 4vw, 34px);
}

.modal__sub {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.modal__close {
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 38px;
  height: 38px;
  font-size: 24px;
  line-height: 1;
  background: #0f1a32;
  color: var(--text);
  cursor: pointer;
}

.modal__close:hover {
  border-color: var(--accent);
}

.modal__body {
  padding: 16px 20px;
  flex: 1;
  min-height: 0;
  overflow: auto;
}

.rules-doc h3 {
  margin: 0 0 8px;
}

.rules-doc ul,
.rules-doc ol,
.rules-doc p {
  margin-top: 0;
  margin-bottom: 14px;
}

.modal__foot {
  border-top: 1px solid var(--line);
  justify-content: flex-end;
}

/* ---- SMS SOMMER TEASER ------------------------------------------- */

.sms-teaser {
  position: relative;
  padding: 72px 0;
  overflow: hidden;
  isolation: isolate;
}

.sms-teaser::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 60% at 15% 40%, rgba(255, 209, 102, 0.28), transparent 65%),
    radial-gradient(50% 50% at 85% 60%, rgba(255, 140, 50, 0.18), transparent 70%),
    linear-gradient(180deg, #130c04 0%, #0d0a04 100%);
}

.sms-teaser__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.sms-teaser__sticker {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  background: var(--accent-2);
  color: #1a0f00;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 28px rgba(255, 209, 102, 0.4);
}

.sms-teaser__grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  text-align: left;
}

.sms-teaser__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 209, 102, 0.4);
  border-radius: 16px;
  padding: 20px 28px 24px;
  min-width: 200px;
  box-shadow: 0 20px 50px -10px rgba(255, 209, 102, 0.28);
  backdrop-filter: blur(8px);
}

.sms-teaser__day {
  font-size: 13px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--accent-2);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.sms-teaser__num {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(52px, 8vw, 88px);
  line-height: 0.9;
  background: linear-gradient(180deg, #fff 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 4px 0;
}

.sms-teaser__mon {
  font-family: "Anton", Impact, sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.sms-teaser__year {
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-top: 4px;
}

.sms-teaser__title {
  margin: 0 0 8px;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(34px, 5.5vw, 72px);
  line-height: 0.93;
  letter-spacing: -0.01em;
  background: linear-gradient(90deg, #fff, var(--accent-2), #ffb347);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sms-teaser__sub {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.sms-teaser__text {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: clamp(14px, 1.6vw, 16px);
  max-width: 560px;
  line-height: 1.65;
}

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

.sms-teaser__chips span {
  font-size: 13px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 209, 102, 0.3);
  border-radius: 999px;
  color: var(--text);
}

@media (max-width: 720px) {
  .sms-teaser__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sms-teaser__date {
    margin: 0 auto;
    min-width: 0;
    width: 200px;
  }

  .sms-teaser__body {
    text-align: center;
  }

  .sms-teaser__chips {
    justify-content: center;
  }
}

/* ---- WINTER FOOTER ----------------------------------------------- */

.winter-footer {
  margin-top: 18px;
  background: linear-gradient(180deg, rgba(10, 17, 34, 0.86) 0%, rgba(6, 12, 24, 0.9) 100%);
}

.winter-footer__inner {
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.winter-footer__logo {
  width: 86px;
  height: auto;
  opacity: 0.96;
}

.winter-footer__socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.winter-footer__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.winter-footer__social:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}

.winter-footer__links {
  margin: 0;
}

.winter-footer__links a {
  color: var(--text);
}

.winter-footer__links a:hover {
  color: var(--accent-2);
  text-decoration: none;
}

.section--compact {
  padding-top: 24px;
}

.section--highlight {
  background: linear-gradient(180deg, rgba(255, 209, 102, 0.11) 0%, rgba(255, 209, 102, 0.03) 100%);
  border-top: 1px solid rgba(255, 209, 102, 0.28);
  border-bottom: 1px solid rgba(255, 209, 102, 0.28);
}

.section--dark {
  background: linear-gradient(180deg, rgba(10, 17, 34, 0.78) 0%, rgba(6, 12, 24, 0.85) 100%);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent-2);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section__title {
  margin: 0 0 12px;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.section__lead {
  margin: 0 0 28px;
  max-width: 760px;
  color: var(--muted);
  font-size: 16px;
}

.champs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.champ {
  background: linear-gradient(180deg, rgba(104, 225, 255, 0.12) 0%, rgba(104, 225, 255, 0.04) 100%);
  border: 1px solid rgba(104, 225, 255, 0.28);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 32px rgba(104, 225, 255, 0.16);
}

.champ--current {
  border-color: rgba(104, 225, 255, 0.48);
  background: linear-gradient(180deg, rgba(104, 225, 255, 0.18) 0%, rgba(104, 225, 255, 0.08) 100%);
  box-shadow: 0 16px 40px rgba(104, 225, 255, 0.24);
}

.champ__year {
  font-family: "Anton", Impact, sans-serif;
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.champ__name {
  font-family: "Anton", Impact, sans-serif;
  font-size: 24px;
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}

.champ__detail {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 12px;
  line-height: 1.5;
}

.champ__badge {
  display: inline-block;
  background: rgba(104, 225, 255, 0.22);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.champ__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color 0.2s;
}

.champ__link:hover {
  color: #8feaff;
  text-decoration: none;
}


@media (max-width: 920px) {
  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 20px;
  }

  .event-spotlight__inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .event-spotlight__date {
    width: 180px;
    margin: 0 auto;
  }

  .winter-nav {
    padding: 0;
  }

  .winter-nav__inner {
    padding: 10px 12px;
    gap: 10px;
  }

  .winter-nav__links {
    display: none;
  }

  .winter-nav__cta {
    font-size: 13px;
    padding: 7px 10px;
  }

  .modal__dialog {
    width: calc(100% - 18px);
    margin: 16px auto;
    max-height: calc(100vh - 32px);
  }
}
