* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #050505;
  color: white;
}

a {
  color: inherit;
  text-decoration: none;
}

/* NAVBAR */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  z-index: 1000;
  padding: 0 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5, 5, 5, 0.92);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo {
  font-size: 28px;
  font-weight: 950;
  letter-spacing: 4px;
}

.desktop-menu {
  display: flex;
  gap: 36px;
}

.desktop-menu a {
  font-size: 14px;
  font-weight: 900;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.ticket-button {
  background: #ffdf2e;
  color: black;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 950;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

/* MOBILE DRAWER */

.mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1190;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 76vw;
  max-width: 430px;
  height: 100vh;
  z-index: 1200;
  background: #000;
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
}

.mobile-panel.open {
  transform: translateX(0);
}
.mobile-logo {
  font-size: 28px;
  font-weight: 950;
  letter-spacing: 3px;
}

.close-menu {
  position: relative !important;
  z-index: 9999 !important;

  width: 70px !important;
  height: 70px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  background: transparent !important;
  border: none !important;
  color: #fff !important;

  font-size: 58px !important;
  font-weight: 200 !important;
  line-height: 1 !important;

  cursor: pointer !important;
  pointer-events: auto !important;
  touch-action: manipulation !important;
}

.mobile-panel-links {
  padding: 42px 34px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mobile-panel-links a {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 24px;
  font-weight: 950;
}

.mobile-panel-links span {
  width: 38px;
  text-align: center;
}

.mobile-panel-footer {
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-mini-links {
  display: flex;
  gap: 28px;
  padding: 26px 34px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.socials {
  display: flex;
  justify-content: space-between;
  padding: 28px 42px;
  font-size: 22px;
  font-weight: 900;
}

/* HERO */

.hero {
  min-height: 100vh;
  padding: 120px 24px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #050505;
  position: relative;
}

.overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(150,0,255,0.25), transparent 35%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: #ff3b8f;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 14px;
  font-weight: 900;
}

.hero h1 {
  font-size: clamp(64px, 12vw, 140px);
  margin: 20px 0;
}

.subtitle {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
}

.hero-countdown {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 32px 0 18px;
  font-size: 20px;
  font-weight: 900;
}

.main-button,
.secondary-button {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 950;
}

.main-button {
  background: linear-gradient(135deg, #ff2d7a, #7b2cff);
  color: white;
}

.secondary-button {
  border: 1px solid rgba(255,255,255,0.5);
}

/* SECTIONS */

.section {
  padding: 110px 6%;
  text-align: center;
  background: #0b0b0b;
}

.section.dark {
  background: #050505;
}

.section h2 {
  font-size: clamp(34px, 6vw, 70px);
}

.text {
  max-width: 720px;
  margin: 0 auto 30px;
  color: rgba(255,255,255,0.72);
  font-size: 18px;
  line-height: 1.7;
}

.price {
  font-size: 72px;
  font-weight: 950;
}

/* FOOTER */

.footer {
  background: #0b0b0b;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: #e8e8e8;
}

/* obere Reihe */

.footer-top {
  min-height: 220px;
  padding: 0 7%;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  border-bottom: 1px solid rgba(255,255,255,0.12);
}

/* links */

.footer-link {
  justify-self: start;
  font-size: 18px;
  letter-spacing: 5px;
}

/* mitte */

.footer-logo {
  justify-self: center;

  font-size: 18px;
  font-weight: 900;
  letter-spacing: 2px;

  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  padding: 10px 20px;
}

/* rechts */

.footer-right {
  justify-self: end;
  display: flex;
  gap: 50px;
}

.footer-right a {
  font-size: 18px;
  letter-spacing: 5px;
}

/* untere Reihe */

.footer-bottom {
  padding: 36px 6%;
  text-align: center;
  font-size: 16px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.7);
}

/* MOBILE */

@media (max-width: 900px) {

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
    padding: 60px 28px;
  }

  .footer-link {
    justify-self: center;
  }

  .footer-logo {
    justify-self: center;
  }

  .footer-right {
    justify-self: center;
    flex-direction: column;
    gap: 18px;
  }
}
/* MOBILE DRAWER */

.mobile-panel {
  width: 76vw !important;
  max-width: 460px !important;
  background: #000 !important;
  box-shadow: -20px 0 40px rgba(0,0,0,0.45) !important;
}

.mobile-panel-header {
  position: relative !important;
  z-index: 1250 !important;

  height: 120px !important;
  padding: 0 46px !important;
  background: #111 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;

  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}

.mobile-logo {
  font-size: 34px !important;
  font-weight: 950 !important;
  letter-spacing: 1px !important;
  font-style: italic !important;
}

.mobile-panel-links {
  padding: 48px 46px 36px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 34px !important;
}

.mobile-panel-links a {
  font-size: 25px !important;
  font-weight: 950 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  display: flex !important;
  align-items: center !important;
  gap: 32px !important;
}

.mobile-panel-links span {
  width: 44px !important;
  height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 28px !important;
  font-weight: 400 !important;
}

.mobile-panel-footer {
  margin-top: 0 !important;
  border-top: 1px solid rgba(255,255,255,0.16) !important;
}

.footer-mini-links {
  padding: 32px 46px !important;
  display: flex !important;
  gap: 34px !important;
  border-bottom: 1px solid rgba(255,255,255,0.14) !important;
}

.footer-mini-links a {
  font-size: 19px !important;
  font-weight: 400 !important;
}

.socials {
  padding: 34px 58px !important;
  display: flex !important;
  justify-content: space-between !important;
  border-bottom: 1px solid rgba(255,255,255,0.14) !important;
}

.socials a {
  font-size: 24px !important;
  font-weight: 950 !important;
}
.mobile-panel-header {
  position: relative !important;
}

.close-menu {
  position: absolute !important;
  top: 22px !important;
  right: 34px !important;
  z-index: 99999 !important;

  width: 70px !important;
  height: 70px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  background: red !important;
  color: white !important;
  border: none !important;

  font-size: 42px !important;
  line-height: 1 !important;

  cursor: pointer !important;
  pointer-events: auto !important;
}
.close-menu {
  position: fixed !important;
  top: 24px !important;
  right: 28px !important;
  z-index: 999999 !important;

  width: 72px !important;
  height: 72px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  background: red !important;
  color: white !important;
  border: none !important;

  font-size: 46px !important;
  line-height: 1 !important;

  cursor: pointer !important;
  pointer-events: auto !important;
}