:root {
  --bg: #080b12;
  --surface: #101723;
  --surface-2: #1a2435;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f0f4ff;
  --text-soft: #b9c2d7;
  --accent: #f24831;
  --accent-2: #d83220;
  --ok: #2fb67a;
  --warn: #e6b531;
  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 14px;
  --shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 90% -20%, rgba(242, 72, 49, 0.3), transparent 40%),
    radial-gradient(circle at 0% 20%, rgba(52, 122, 184, 0.25), transparent 35%),
    var(--bg);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  padding-bottom: calc(92px + env(safe-area-inset-bottom));
}

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

img,
video {
  display: block;
  width: 100%;
}

.app,
.shell {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 12px;
}

.glass {
  border: 1px solid var(--line);
  background: rgba(10, 15, 25, 0.75);
  backdrop-filter: blur(10px);
}

.topbar,
.topnav {
  position: sticky;
  top: 10px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 999px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  background: rgba(10, 15, 25, 0.75);
  backdrop-filter: blur(10px);
}

.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark,
.badge {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #ff7357, #be2816);
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
}

.brand strong,
.brand h1 {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 0.88rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

.brand span {
  display: block;
  color: var(--text-soft);
  font-size: 0.72rem;
}

.menu-link,
.chip {
  font-size: 0.74rem;
  color: #ffc8be;
  border-radius: 999px;
  padding: 7px 10px;
  border: 1px solid rgba(242, 72, 49, 0.35);
  background: rgba(242, 72, 49, 0.14);
  white-space: nowrap;
}

.hero {
  margin-top: 12px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.hero img,
.hero video {
  height: 360px;
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 25%, rgba(0, 0, 0, 0.16) 72%);
}

.hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  z-index: 2;
}

.hero-kicker,
.kicker,
.eyebrow {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: #ffd3cb;
}

.hero h1,
.hero h2 {
  margin: 8px 0 10px;
  font-family: "Sora", sans-serif;
  line-height: 1.15;
  font-size: clamp(1.6rem, 7vw, 2.7rem);
}

.hero p {
  margin: 0;
  max-width: 36ch;
  color: var(--text-soft);
}

.actions {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.btn {
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 0.8rem;
  font-weight: 700;
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #fff;
}

.btn-secondary {
  border: 1px solid var(--line);
  color: #e1e6f2;
  background: rgba(255, 255, 255, 0.05);
}

.section {
  margin-top: 14px;
  border-radius: var(--radius-xl);
  padding: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, var(--surface), #0d1420);
}

.section-flat {
  margin-top: 0;
}

.section h2,
.title,
.section-title {
  margin: 0 0 12px;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.events {
  display: grid;
  gap: 10px;
}

.event-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 10px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-2);
}

.event-card img {
  width: 76px;
  height: 100%;
  object-fit: cover;
}

.event-card-body {
  padding: 10px 10px 10px 0;
}

.event-card h3 {
  margin: 0 0 5px;
  font-size: 0.9rem;
}

.event-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.78rem;
}

.pill {
  display: inline-block;
  margin-top: 8px;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #c2f3dd;
  background: rgba(47, 182, 122, 0.18);
}

.about p,
.content p {
  margin: 0 0 12px;
  color: var(--text-soft);
  line-height: 1.6;
  font-size: 0.9rem;
}

.leaders {
  display: grid;
  gap: 10px;
}

.leader {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0c121d;
}

.leader img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.leader .copy {
  padding: 12px;
}

.leader strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.leader span {
  color: var(--text-soft);
  font-size: 0.82rem;
}

.vehicles {
  display: grid;
  gap: 10px;
}

.vehicle {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #0f1725;
  overflow: hidden;
}

.vehicle img {
  height: 175px;
  width: 100%;
  object-fit: cover;
  cursor: pointer;
}

.vehicle .copy {
  padding: 12px;
}

.vehicle strong {
  display: block;
  margin-bottom: 6px;
}

.vehicle p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.82rem;
  line-height: 1.5;
}

.meta-grid,
.quick-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.meta-item,
.quick-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-2);
  padding: 12px;
}

.meta-item strong,
.quick-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.meta-item span,
.meta-item a,
.quick-card span {
  color: var(--text-soft);
  font-size: 0.82rem;
}

.posts {
  display: grid;
  gap: 10px;
}

.post-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #0f1725;
  overflow: hidden;
}

.post-media {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #0a111b;
}

.post-card video.post-media {
  object-fit: contain;
  background: #0a111b;
}

.post-body {
  padding: 12px;
}

.post-title {
  font-size: 0.9rem;
  margin: 0 0 8px;
}

.post-text {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.82rem;
  line-height: 1.5;
}

.post-date {
  margin-top: 8px;
  font-size: 0.74rem;
  color: #9da9c0;
}

.timeline {
  display: grid;
  gap: 10px;
}

.timeline-item {
  border-radius: var(--radius-md);
  background: #0e1320;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px;
}

.timeline-item strong {
  display: block;
  color: #ffffff;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.timeline-item span {
  color: var(--text-soft);
  font-size: 0.84rem;
}

.countdown-box {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(230, 181, 49, 0.45);
  background: rgba(230, 181, 49, 0.12);
  padding: 14px;
  font-family: "Sora", sans-serif;
  text-align: center;
}

.countdown-value {
  font-size: clamp(1.2rem, 7vw, 2.2rem);
  letter-spacing: 0.04em;
}

.countdown-hint {
  margin-top: 6px;
  color: #ffecb5;
  font-size: 0.75rem;
}

.ticket {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(140deg, #2a1315, #391318);
}

.ticket img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: contain;
  background: #fff;
  padding: 6px;
}

.ticket .action {
  margin-top: 8px;
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}

.ticket-copy {
  color: var(--text-soft);
  font-size: 0.85rem;
}

.contact-grid,
.info-grid {
  display: grid;
  gap: 10px;
}

.contact-item,
.info-card {
  border-radius: var(--radius-lg);
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--surface-2);
}

.contact-item strong,
.info-card strong,
.info-card h3 {
  display: block;
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.contact-item span,
.contact-item a,
.info-card span,
.info-card a,
.info-card p {
  color: var(--text-soft);
  font-size: 0.82rem;
}

.info-card p {
  margin: 0 0 8px;
}

.social {
  margin-top: 8px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.social a {
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 8px 12px;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
}

.legal h2,
.legal h3 {
  font-family: "Sora", sans-serif;
  margin: 0 0 10px;
}

.legal p {
  margin: 0 0 12px;
  color: var(--text-soft);
  line-height: 1.6;
  font-size: 0.88rem;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 14, 0.92);
  display: grid;
  place-items: center;
  z-index: 120;
  padding: 18px;
}

.lightbox-content {
  width: min(960px, 100%);
  max-height: 92vh;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #0b111a;
  padding: 12px;
  display: grid;
  gap: 10px;
}

.lightbox-close {
  justify-self: end;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-soft);
}

.lightbox-media {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 12px;
  background: #05070c;
}

.lightbox-caption {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.85rem;
  line-height: 1.5;
}

.meta,
.footer {
  margin: 16px 0 6px;
  text-align: center;
  color: #8e99b0;
  font-size: 0.75rem;
}

.text-soft {
  color: var(--text-soft);
}

.text-sm {
  font-size: 0.85rem;
}

.container {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 12px;
}

.px-4 {
  padding-left: 12px;
  padding-right: 12px;
}

.px-lg-5 {
  padding-left: 16px;
  padding-right: 16px;
}

.row {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.col,
.col-md-4,
.col-md-6,
.col-lg-5,
.col-lg-7,
.col-xl-4,
.col-xl-8 {
  min-width: 0;
}

.navbar {
  position: sticky;
  top: 10px;
  z-index: 40;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(10, 15, 25, 0.75);
  backdrop-filter: blur(10px);
  margin: 12px auto 0;
  width: min(1100px, 100%);
}

.fixed-top {
  position: sticky;
  top: 10px;
}

.navbar-brand {
  font-family: \"Sora\", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.impressum-section,
.contact-section {
  padding: 18px 0;
}

.bg-black {
  background: rgba(8, 11, 18, 0.7);
}

.card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface-2);
  padding: 12px;
}

.py-4 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.h-100 {
  height: 100%;
}

.card-body {
  padding: 8px 0;
}

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

.text-primary {
  color: var(--accent);
}

.text-uppercase {
  text-transform: uppercase;
}

.m-0 {
  margin: 0;
}

.mb-2 {
  margin-bottom: 8px;
}

.mb-3 {
  margin-bottom: 12px;
}

.mb-md-0 {
  margin-bottom: 0;
}

.my-4 {
  margin-top: 16px;
  margin-bottom: 16px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.small {
  font-size: 0.82rem;
  color: var(--text-soft);
}

.d-flex {
  display: flex;
}

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

.mx-2 {
  margin-left: 8px;
  margin-right: 8px;
}

.text-white-50 {
  color: #a8b2c6;
}

.tabbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  border-top: 1px solid var(--line);
  background: rgba(8, 11, 18, 0.92);
  backdrop-filter: blur(12px);
  padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
  display: flex;
  gap: 8px;
}

.tabbar a {
  flex: 1;
  text-align: center;
  border-radius: 12px;
  color: #9ba6bc;
  padding: 8px 4px;
  font-size: 0.7rem;
}

.tabbar a.active {
  background: rgba(242, 72, 49, 0.2);
  color: #fff;
}

@media (min-width: 760px) {
  .app,
  .shell {
    padding: 16px;
  }

  .hero img,
  .hero video {
    height: 500px;
  }

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

  .event-card {
    grid-template-columns: 1fr;
  }

  .event-card img {
    width: 100%;
    height: 170px;
  }

  .event-card-body {
    padding: 12px;
  }

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

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

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

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

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

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

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

  .tabbar {
    width: min(1100px, 100%);
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }
}

@media (min-width: 1024px) {
  .about-layout {
    display: grid;
    gap: 12px;
    grid-template-columns: 1.3fr 1fr;
    align-items: start;
  }

  .desktop-row {
    display: grid;
    gap: 14px;
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }
}
