:root {
  color-scheme: dark;
  --bg: #080907;
  --ink: #fff8e6;
  --muted: #c9c3ad;
  --gold: #e3b64b;
  --gold-soft: #f4d681;
  --red: #d81f26;
  --grass: #167a36;
  --panel: rgba(14, 16, 13, 0.78);
  --panel-solid: #11140f;
  --line: rgba(255, 248, 230, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(216, 31, 38, 0.18), transparent 28rem),
    radial-gradient(circle at 85% 8%, rgba(227, 182, 75, 0.18), transparent 30rem),
    linear-gradient(180deg, #080907 0%, #10150d 42%, #070807 100%);
  color: var(--ink);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem clamp(1rem, 3vw, 2.5rem);
  background: rgba(4, 5, 4, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 248, 230, 0.1);
}

.brand,
.nav-links,
.nav-action,
.hero-actions a {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-logo {
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 22px rgba(227, 182, 75, 0.24));
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-links a,
.site-footer a {
  text-decoration: none;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--gold-soft);
}

.nav-action {
  justify-self: end;
  border: 1px solid rgba(244, 214, 129, 0.5);
  background: rgba(227, 182, 75, 0.13);
  color: var(--gold-soft);
  padding: 0.72rem 1rem;
  border-radius: 999px;
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #070807;
}

.hero-art {
  display: block;
}

.hero-art img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-content {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(1.25rem, 3vw, 2rem) 0 clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.2rem 2rem;
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.8rem;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 0.6rem;
  font-size: 1.18rem;
}

.hero-copy {
  max-width: 700px;
  margin-bottom: 0;
  color: #efe5c7;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  justify-content: flex-end;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 900;
}

.primary-button {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #1b1202;
  box-shadow: 0 14px 36px rgba(227, 182, 75, 0.28);
}

.secondary-button {
  border: 1px solid rgba(255, 248, 230, 0.32);
  background: rgba(255, 248, 230, 0.08);
}

.ticker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1080px, calc(100% - 2rem));
  margin: 0 auto;
  position: relative;
  z-index: 3;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 14, 10, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.ticker div {
  padding: 1.2rem 1rem;
  text-align: center;
  border-right: 1px solid var(--line);
}

.ticker div:last-child {
  border-right: 0;
}

.ticker strong {
  display: block;
  color: var(--gold-soft);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.ticker span {
  color: var(--muted);
  font-weight: 800;
}

.countdown {
  width: min(1320px, calc(100% - 2rem));
  margin: clamp(1.25rem, 3vw, 2rem) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: center;
  border: 1px solid rgba(244, 214, 129, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(227, 182, 75, 0.13), rgba(216, 31, 38, 0.08)),
    rgba(12, 15, 11, 0.9);
  box-shadow: var(--shadow);
  padding: clamp(1.2rem, 3vw, 2rem);
}

.countdown h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.countdown p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.countdown-grid div {
  min-height: 6rem;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(255, 248, 230, 0.14);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
}

.countdown-grid strong {
  color: var(--gold-soft);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.countdown-grid span {
  color: var(--muted);
  font-weight: 900;
}

.section-band,
.tips-section,
.faq {
  padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 4vw, 2.5rem);
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.intro-copy p,
.tips-head p,
.step-grid p,
.faq-list p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.03rem;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.intro-copy {
  padding-top: clamp(1.2rem, 3vw, 2.4rem);
}

.info-strip {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.info-strip article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(14, 16, 13, 0.72);
  padding: 1.3rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.info-strip span {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.info-strip strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.15;
}

.info-strip a {
  color: var(--gold-soft);
}

.info-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.tips-section {
  width: min(1380px, 100%);
  margin: 0 auto;
}

.tips-head {
  max-width: 780px;
  margin-bottom: 1.6rem;
}

.kicktipp-shell {
  position: relative;
  width: min(100%, 1280px);
  margin: 0 auto;
  min-height: 480px;
  overflow: auto;
  border: 1px solid rgba(244, 214, 129, 0.24);
  border-radius: 8px;
  background: #303030;
  color: #f1f1ea;
  box-shadow: var(--shadow);
}

.kicktipp-shell > :not(.embed-fallback) {
  position: relative;
  z-index: 2;
}

.kicktipp-shell > div:not(.embed-fallback) {
  width: 100% !important;
  max-width: none !important;
}

.kicktipp-shell iframe {
  display: block;
  width: 100% !important;
  min-width: 100% !important;
  border: 0;
  background: #303030;
}

.embed-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-content: center;
  gap: 0.65rem;
  padding: 2rem;
  text-align: center;
  color: #f1f1ea;
  background:
    linear-gradient(135deg, rgba(227, 182, 75, 0.12), transparent),
    #303030;
}

.embed-fallback a {
  color: var(--gold-soft);
  font-weight: 900;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.step-grid article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.step-grid article {
  padding: 1.35rem;
}

.step-grid span {
  display: inline-block;
  margin-bottom: 1.2rem;
  color: var(--gold-soft);
  font-weight: 950;
}

.faq {
  width: min(960px, 100%);
  margin: 0 auto;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  padding: 1rem 1.2rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 0.7rem 0 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 4vw, 2.5rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .section-inner,
  .step-grid,
  .info-strip,
  .countdown {
    grid-template-columns: 1fr;
  }

  .ticker {
    grid-template-columns: 1fr;
    margin-top: -1rem;
  }

  .ticker div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .ticker div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 520px) {
  .brand span {
    max-width: 10.5rem;
  }

  .nav-action {
    padding-inline: 0.85rem;
  }

  .hero-actions a {
    width: 100%;
  }

  .kicktipp-shell {
    min-height: 560px;
  }

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