/* ── RESET & VARIABLES ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
button, a { -webkit-tap-highlight-color: transparent; }

@font-face {
  font-family: "Radioactive Granny";
  src: url("assets/fonts/RadioactiveGranny.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg:          #0a0003;
  --bg-2:        #0f0005;
  --bg-3:        #160008;
  --border:      rgba(255,60,20,0.12);
  --text:        #f0e8e8;
  --text-muted:  #9a7070;
  --accent:      #cc1100;
  --accent-2:    #ff4422;
  --accent-hot:  #ff6633;

  --gradient:    linear-gradient(135deg, #8b0000, #cc2200, #ff4422);
  --r-sm:        8px;
  --r-md:        12px;
  --r-lg:        20px;
  --shadow:      0 4px 24px rgba(0,0,0,0.6);
  --transition:  0.25s ease;
  --font:        "Inter", system-ui, sans-serif;
  --font-display:"Radioactive Granny", "Space Grotesk", system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, select { font: inherit; color: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.hidden { display: none !important; }

/* ── CONTAINER ────────────────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SECTION COMMON ───────────────────────────────────────────────────────── */
.section { padding: 100px 0; }

.section__header {
  text-align: center;
  margin-bottom: 56px;
}

.section__tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(204,17,0,0.15);
  border: 1px solid rgba(204,17,0,0.4);
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section__desc {
  color: var(--text-muted);
  margin-top: 12px;
  font-size: 1.05rem;
}

/* ── BUTTONS ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 0 24px rgba(204,17,0,0.5);
}
.btn--primary:hover { opacity: 0.9; box-shadow: 0 0 36px rgba(204,17,0,0.7); transform: translateY(-2px); }

.btn--ghost {
  background: rgba(204,17,0,0.08);
  border: 1px solid rgba(204,17,0,0.3);
  color: var(--text);
}
.btn--ghost:hover { background: rgba(204,17,0,0.15); border-color: var(--accent-2); transform: translateY(-2px); }

.btn--outline {
  background: transparent;
  border: 1px solid rgba(204,17,0,0.5);
  color: var(--accent-2);
}
.btn--outline:hover { background: rgba(204,17,0,0.12); transform: translateY(-2px); }

/* ── NAV ──────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.nav--scrolled {
  background: rgba(10,0,3,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
  padding: 14px 48px;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.nav__logo span { color: var(--accent-2); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav__link:hover { color: var(--text); }

.nav__link--cta {
  padding: 9px 20px;
  background: var(--gradient);
  color: #fff !important;
  border-radius: var(--r-sm);
  font-weight: 600;
  box-shadow: 0 0 16px rgba(204,17,0,0.4);
}
.nav__link--cta:hover { opacity: 0.9; }

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 10px; min-width: 44px; min-height: 44px; justify-content: center; align-items: center; }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.nav__burger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger--open span:nth-child(2) { opacity: 0; }
.nav__burger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(180,20,0,0.35) 0%, rgba(100,5,0,0.15) 50%, transparent 80%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.hero__orb--1 { width: 700px; height: 700px; background: #8b0000; top: -300px; left: -150px; }
.hero__orb--2 { width: 600px; height: 600px; background: #cc2200; top: -200px; right: -200px; }
.hero__orb--3 { width: 500px; height: 300px; background: #ff4422; bottom: 0; left: 50%; transform: translateX(-50%); opacity: 0.2; }

/* Concert silhouette at bottom of hero */
.hero__stage {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero__stage svg {
  width: 100%;
  height: auto;
  display: block;
}

.hero__content { position: relative; z-index: 1; max-width: 800px; }

.hero__eyebrow {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 10rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.hero__title span { color: var(--accent-2); }

.hero__sub {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.hero__countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.countdown__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 24px;
  min-width: 90px;
}
.countdown__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.countdown__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 4px;
}
.countdown__sep {
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-muted);
  padding-bottom: 20px;
}
.countdown__live { font-size: 1.5rem; color: var(--accent-2); }

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

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.hero__scroll span {
  display: block;
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  position: relative;
}
.hero__scroll span::after {
  content: "";
  position: absolute;
  width: 4px; height: 8px;
  background: var(--text-muted);
  border-radius: 2px;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { top: 5px; opacity: 1; }
  80% { top: 14px; opacity: 0; }
}

/* ── ABOUT ────────────────────────────────────────────────────────────────── */
.about { background: var(--bg-2); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about__text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about__facts {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about__facts li {
  padding: 10px 16px;
  background: rgba(204,17,0,0.08);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 0.95rem;
}
.about__facts strong { color: var(--accent-2); }

.about__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about__card {
  display: block;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: transform var(--transition), border-color var(--transition);
  opacity: 0;
  transform: translateY(20px);
  cursor: pointer;
}
.about__card.visible { opacity: 1; transform: none; transition: opacity 0.5s ease, transform 0.5s ease, transform 0.25s ease, border-color 0.25s ease; }
.about__card:hover { transform: translateY(-4px); border-color: rgba(204,17,0,0.3); }
.about__card:hover .about__card-arrow { opacity: 1; transform: translateX(0); }

.about__card-arrow {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent-2);
  font-size: 1rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--transition), transform var(--transition);
}

.about__card-icon { font-size: 2rem; margin-bottom: 12px; }
.about__card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.about__card p  { font-size: 0.9rem; color: var(--text-muted); }

/* ── LINEUP ───────────────────────────────────────────────────────────────── */
.lineup { background: var(--bg); }

.tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tab {
  padding: 10px 24px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.tab:hover { border-color: var(--accent); color: var(--text); }
.tab--active {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 16px rgba(204,17,0,0.4);
}

.stage-filter {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.stage-btn {
  padding: 10px 18px;
  min-height: 44px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  transition: var(--transition);
}
.stage-btn:hover { color: var(--text); border-color: rgba(204,17,0,0.4); }
.stage-btn--active {
  background: rgba(204,17,0,0.15);
  border-color: rgba(204,17,0,0.5);
  color: var(--accent-2);
}

.lineup__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
  gap: 20px;
}

.lineup__empty { text-align: center; color: var(--text-muted); padding: 60px 0; width: 100%; }

.lineup__card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(16px);
  position: relative;
  overflow: hidden;
}
.lineup__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity var(--transition);
}
.lineup__card.visible { opacity: 1; transform: none; transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.25s ease, box-shadow 0.25s ease; }
.lineup__card:hover { transform: translateY(-4px); border-color: rgba(204,17,0,0.4); box-shadow: var(--shadow); }

.lineup__card--headliner {
  border-color: rgba(204,17,0,0.4);
  background: linear-gradient(135deg, rgba(204,17,0,0.12), rgba(204,17,0,0.08));
}

.lineup__card-stage {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-2);
  margin-bottom: 8px;
}
.lineup__card-time {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.lineup__card-artist {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.lineup__card-genre {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.lineup__card-hl {
  display: inline-block;
  margin-top: 12px;
  padding: 3px 10px;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--accent-hot);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── BADGES ───────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid;
}
.badge--frueh  { background: rgba(16,185,129,0.12);  border-color: rgba(16,185,129,0.3);  color: #34d399; }
.badge--mittel { background: rgba(245,158,11,0.12);  border-color: rgba(245,158,11,0.3);  color: #fbbf24; }
.badge--spaet  { background: rgba(239,68,68,0.12);   border-color: rgba(239,68,68,0.3);   color: #f87171; }
.badge--nacht  { background: rgba(99,102,241,0.12);  border-color: rgba(99,102,241,0.3);  color: #a5b4fc; }

.role-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  background: rgba(204,17,0,0.12);
  border: 1px solid rgba(204,17,0,0.25);
  color: var(--accent-2);
}

.area-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  background: rgba(204,17,0,0.1);
  border: 1px solid rgba(204,17,0,0.25);
  color: var(--accent-hot);
}

/* ── CORNHOLE ─────────────────────────────────────────────────────────────── */
.cornhole { background: var(--bg-2); }

.cornhole__image {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-3);
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.cornhole__image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--r-lg);
}

.cornhole__placeholder-text {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: center;
  padding: 24px;
}

.cornhole__image--missing img { display: none; }
.cornhole__image--missing .cornhole__placeholder-text { display: flex; }

/* ── CORNHOLE TOURNAMENT ─────────────────────────────────────────────────── */
.cornhole__tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 48px;
  margin-bottom: 32px;
}

.cornhole__tab {
  padding: 10px 32px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  letter-spacing: 0.04em;
}
.cornhole__tab:hover { border-color: var(--accent); color: var(--text); }
.cornhole__tab--active {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 16px rgba(204,17,0,0.5);
}

.cornhole__panel--hidden { display: none; }

.ch-groups {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.ch-group__title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-2);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}

.ch-teams {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ch-team {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 8px 12px;
  transition: border-color var(--transition);
}
.ch-team:hover { border-color: rgba(204,17,0,0.35); }

.ch-team__num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 22px;
  text-align: center;
}

.ch-team__info { flex: 1; }
.ch-team__name {
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 1px;
}
.ch-team__players {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* Spielplan */
.ch-rounds { display: flex; flex-direction: column; gap: 24px; }

.ch-round__title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-2);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}

.ch-matches { display: flex; flex-direction: column; gap: 5px; }

.ch-match {
  display: grid;
  grid-template-columns: 56px 1fr auto 1fr 52px 44px;
  align-items: center;
  gap: 10px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 8px 14px;
  transition: border-color var(--transition);
}
.ch-match:hover { border-color: rgba(204,17,0,0.3); }

.ch-match--final { border-color: rgba(204,17,0,0.4); background: linear-gradient(135deg, rgba(204,17,0,0.08), rgba(255,68,34,0.04)); }

.ch-match__time {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.ch-match__team {
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ch-match__team--right { text-align: right; }
.ch-match__team--tbd { color: var(--text-muted); font-weight: 400; font-style: italic; }

.ch-match__vs {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.ch-match__score {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  color: var(--text-muted);
  white-space: nowrap;
}
.ch-match__score--set { color: var(--text); }

.ch-match__field {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-align: right;
}

@media (max-width: 900px) {
  .ch-groups { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .ch-groups { grid-template-columns: 1fr; }

  .ch-match {
    grid-template-columns: 44px 1fr auto 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
      "time  t1    vs    t2"
      "field score score score";
    gap: 3px 8px;
    padding: 8px 10px;
  }
  .ch-match__time  { grid-area: time;  font-size: 0.75rem; align-self: center; }
  .ch-match__team:not(.ch-match__team--right) { grid-area: t1; align-self: center; }
  .ch-match__vs    { grid-area: vs;    align-self: center; text-align: center; }
  .ch-match__team--right { grid-area: t2; text-align: left; align-self: center; }
  .ch-match__score { grid-area: score; text-align: center; font-size: 0.8rem; }
  .ch-match__field { grid-area: field; text-align: left; font-size: 9px; align-self: center; }

  .ch-match__team  { font-size: 0.82rem; }
}



/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.footer__logo span { color: var(--accent-2); }

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__grid p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }
.footer__grid h4 { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 16px; }
.footer__grid ul { display: flex; flex-direction: column; gap: 10px; }
.footer__grid ul a { font-size: 0.95rem; color: var(--text-muted); transition: color var(--transition); }
.footer__grid ul a:hover { color: var(--text); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p, .footer__bottom a { font-size: 0.875rem; color: var(--text-muted); }
.footer__bottom a:hover { color: var(--text); }

/* ── MODAL ────────────────────────────────────────────────────────────────── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.modal-backdrop[hidden] { display: none; }
.modal-backdrop.modal--visible { opacity: 1; }

.modal {
  position: relative;
  background: var(--bg-3);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: 40px 44px;
  max-width: 560px;
  width: 100%;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.25s ease;
}
.modal-backdrop.modal--visible .modal { transform: none; }

.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.modal__close:hover { background: rgba(255,255,255,0.12); color: var(--text); }

.modal__stage {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-2);
  margin-bottom: 10px;
}

.modal__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--text-muted);
}
.modal__sep { opacity: 0.4; }
.modal__time { font-family: var(--font-display); font-weight: 600; color: var(--text); }

.modal__artist {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.1;
}

.modal__desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.modal__footer {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.modal__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(204,17,0,0.12);
  border: 1px solid rgba(204,17,0,0.25);
  color: var(--accent-2);
}
.modal__badge--hl {
  background: rgba(245,158,11,0.12);
  border-color: rgba(245,158,11,0.3);
  color: var(--accent-hot);
}

/* klickbare Lineup-Kacheln anzeigen */
.lineup__card { cursor: pointer; }

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .nav--scrolled { padding: 12px 24px; }
  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,0,3,0.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 99;
  }
  .nav__links--open { display: flex; }
  .nav__link { font-size: 1.5rem; }
  .nav__burger { display: flex; z-index: 100; }

  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__cards { grid-template-columns: 1fr 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero { padding: 100px 16px 72px; }
  .hero__title { font-size: clamp(2.2rem, 16vw, 6rem); }
  .hero__sub { font-size: 1.05rem; margin-bottom: 28px; }
  .hero__eyebrow { font-size: 12px; }

  .countdown__block { padding: 12px 14px; min-width: 64px; }
  .countdown__num { font-size: 1.6rem; }

  .about__cards { grid-template-columns: 1fr; }

  .schedule__table-wrap { display: none; }
  .schedule__cards { display: block; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .tickets__grid { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .container { padding: 0 14px; }
  .section { padding: 56px 0; }
  .countdown__sep { display: none; }
  .countdown__block { padding: 10px 10px; min-width: 56px; }
  .countdown__num { font-size: 1.4rem; }
  .stage-filter { gap: 6px; }
  .stage-btn { font-size: 12px; padding: 8px 12px; min-height: 40px; }
  .tab { padding: 10px 16px; font-size: 13px; }
  .hero__title { font-size: clamp(2rem, 18vw, 4rem); }
}

@media (hover: none) {
  .about__card:hover,
  .lineup__card:hover,
  .ticket-card:hover,
  .btn:hover { transform: none; }
}
