:root {
  --bg: #050913;
  --bg-soft: #0a1222;
  --card: rgba(10, 19, 36, 0.78);
  --line: rgba(226, 181, 76, 0.28);
  --gold: #e9bd5a;
  --gold-bright: #ffe6a0;
  --blue: #1f7dff;
  --blue-bright: #54b5ff;
  --text: #f5f7fb;
  --muted: #aab7ca;
  --danger: #ff7b7b;
  --success: #68e5a0;
  --radius: 24px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -10%, rgba(29, 111, 255, .24), transparent 34rem),
    linear-gradient(180deg, #050a14 0%, #060b15 45%, #03060c 100%);
  min-height: 100vh;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
code { color: var(--gold-bright); }

/* Fallender Sternenstaub im Hintergrund */
.stardust {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  /* Oben sichtbar, ab der Bildschirmmitte zunehmend transparent. */
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 42%, rgba(0,0,0,.78) 58%, rgba(0,0,0,.28) 82%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 42%, rgba(0,0,0,.78) 58%, rgba(0,0,0,.28) 82%, transparent 100%);
}

.stardust__particle {
  position: absolute;
  top: -12vh;
  left: var(--x);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(circle, rgba(255,255,255,.98) 0 18%, rgba(255,224,143,.9) 28%, rgba(84,181,255,.55) 52%, transparent 74%);
  box-shadow: 0 0 calc(var(--size) * 2.8) rgba(105,185,255,.7), 0 0 calc(var(--size) * 5) rgba(233,189,90,.26);
  animation: stardust-fall var(--duration) linear var(--delay) infinite;
  will-change: transform, opacity;
}

.stardust__particle::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 52%;
  width: max(1px, calc(var(--size) * .22));
  height: var(--trail);
  transform: translateX(-50%);
  background: linear-gradient(to top, rgba(255,255,255,.55), rgba(84,181,255,.18) 45%, transparent);
  filter: blur(.35px);
}

@keyframes stardust-fall {
  0% { transform: translate3d(0, -12vh, 0) scale(.7); opacity: 0; }
  8% { opacity: var(--opacity); }
  58% { opacity: var(--opacity); }
  88% { opacity: calc(var(--opacity) * .28); }
  100% { transform: translate3d(var(--drift), 112vh, 0) scale(1.15); opacity: 0; }
}

.site-header, main, .site-footer { position: relative; z-index: 2; }
.background-glow { z-index: 0; }

@media (prefers-reduced-motion: reduce) {
  .stardust__particle { animation: none; opacity: .18; transform: translateY(45vh); }
}

.background-glow { position: fixed; width: 30rem; height: 30rem; filter: blur(100px); opacity: .12; border-radius: 50%; pointer-events: none; }
.background-glow--one { background: var(--blue); top: 16rem; left: -12rem; }
.background-glow--two { background: var(--gold); bottom: 4rem; right: -14rem; }

.section-shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 100px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: min(1220px, calc(100% - 28px));
  margin: 14px auto 0;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(4, 9, 18, .78);
  backdrop-filter: blur(18px);
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.brand { display: flex; align-items: center; gap: 12px; font-family: "Cinzel", serif; font-weight: 700; letter-spacing: .14em; }
.brand img { width: 46px; height: 46px; border-radius: 12px; object-fit: cover; border: 1px solid var(--line); }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav > a:not(.button) { color: var(--muted); font-weight: 600; }
.main-nav > a:hover { color: var(--gold-bright); }
.nav-toggle { display: none; border: 0; background: transparent; color: white; font-size: 1.65rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid rgba(255, 218, 128, .65);
  border-radius: 14px;
  background: linear-gradient(135deg, #f6d98e, #c99027 65%, #ffe7a7);
  color: #171006;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(211, 158, 44, .25), inset 0 1px 0 rgba(255,255,255,.6);
  transition: transform .2s ease, filter .2s ease;
}
.button:hover { transform: translateY(-2px); filter: brightness(1.08); }
.button--small { min-height: 42px; padding-inline: 18px; }
.button--ghost { color: var(--text); background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.15); box-shadow: none; }

.hero { min-height: calc(100vh - 90px); display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; padding: 80px 0 60px; }
.eyebrow { margin: 0 0 16px; color: var(--gold); font-size: .78rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; }
h1, h2 { font-family: "Cinzel", serif; }
h1 { margin-bottom: 24px; font-size: clamp(3.2rem, 7vw, 6.6rem); line-height: .96; letter-spacing: -.045em; }
h1 span { display: block; color: var(--gold-bright); text-shadow: 0 0 38px rgba(235, 186, 83, .26); }
.hero__text { max-width: 650px; color: var(--muted); font-size: 1.15rem; line-height: 1.75; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 42px; }
.hero__facts { display: flex; gap: 34px; flex-wrap: wrap; }
.hero__facts div { display: grid; gap: 4px; }
.hero__facts strong { font-family: "Cinzel", serif; color: var(--gold-bright); }
.hero__facts span { color: var(--muted); font-size: .88rem; }
.logo-frame {
  position: relative;
  max-width: 520px;
  margin-inline: auto;
  padding: 12px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 230, 160, .9), rgba(141, 91, 13, .55), rgba(44, 140, 255, .35));
  box-shadow: 0 40px 100px rgba(0,0,0,.55), 0 0 70px rgba(23, 104, 255, .2);
}
.logo-frame::before { content: ""; position: absolute; inset: -20px; z-index: -1; border-radius: 45px; background: radial-gradient(circle, rgba(31, 125, 255, .28), transparent 70%); filter: blur(20px); }
.logo-frame img { aspect-ratio: 1; object-fit: cover; border-radius: 25px; }

.section-heading { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section-heading--left { margin-left: 0; text-align: left; }
.section-heading h2 { margin-bottom: 18px; font-size: clamp(2.2rem, 4.5vw, 4rem); }
.section-heading p:last-child { color: var(--muted); line-height: 1.75; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.info-card, .application-form, .discord-card, .discord-copy {
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(145deg, rgba(12, 23, 43, .88), rgba(4, 9, 18, .82));
  box-shadow: var(--shadow);
}
.info-card { padding: 30px; border-radius: var(--radius); }
.info-card__icon { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 24px; border: 1px solid var(--line); border-radius: 15px; color: var(--gold-bright); background: rgba(229, 180, 74, .08); font-size: 1.4rem; }
.info-card h3 { margin-bottom: 12px; font-family: "Cinzel", serif; font-size: 1.35rem; }
.info-card p { margin-bottom: 0; color: var(--muted); line-height: 1.7; }

.discord-layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr); gap: 24px; align-items: stretch; }
.discord-card { position: relative; min-height: 500px; overflow: hidden; border-radius: var(--radius); }
.discord-card iframe { width: 100%; height: 100%; min-height: 500px; display: none; }
.discord-placeholder { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; padding: 36px; }
.discord-placeholder__logo { width: 72px; height: 72px; display: grid; place-items: center; margin: 0 auto 20px; border-radius: 20px; background: linear-gradient(135deg, #5865f2, #7289da); font-size: 2rem; }
.discord-placeholder p { max-width: 520px; color: var(--muted); line-height: 1.7; }
.discord-copy { padding: 40px; border-radius: var(--radius); display: flex; flex-direction: column; justify-content: center; }
.status-pill { align-self: flex-start; padding: 8px 12px; border-radius: 999px; background: rgba(104, 229, 160, .08); color: var(--success); font-size: .85rem; font-weight: 700; }
.status-pill i { display: inline-block; width: 8px; height: 8px; margin-right: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 14px currentColor; }
.discord-copy h3 { margin: 24px 0 14px; font-family: "Cinzel", serif; font-size: 2rem; }
.discord-copy p { color: var(--muted); line-height: 1.75; margin-bottom: 28px; }
.discord-copy .button { align-self: flex-start; }

.application-section { padding-bottom: 120px; }
.application-form { max-width: 900px; margin-inline: auto; padding: 34px; border-radius: var(--radius); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-grid__wide { grid-column: 1 / -1; }
label span { display: block; margin-bottom: 9px; font-weight: 700; color: #dce4f0; }
input, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 13px;
  padding: 14px 15px;
  color: var(--text);
  background: rgba(255,255,255,.035);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus, textarea:focus { border-color: rgba(84, 181, 255, .8); box-shadow: 0 0 0 4px rgba(44, 135, 255, .12); }
textarea { resize: vertical; min-height: 170px; }
.checkbox-row { display: flex; gap: 12px; margin-top: 24px; color: var(--muted); line-height: 1.55; }
.checkbox-row input { width: 18px; height: 18px; margin-top: 3px; flex: 0 0 auto; }
.checkbox-row span { margin: 0; font-weight: 500; color: var(--muted); }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-footer { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 28px; }
.form-status { margin: 0; color: var(--muted); }
.form-status--success { color: var(--success); }
.form-status--error { color: var(--danger); }

.site-footer { display: flex; justify-content: space-between; gap: 24px; padding: 30px 0 42px; border-top: 1px solid rgba(255,255,255,.08); color: var(--muted); }
.site-footer div:first-child { display: grid; gap: 5px; }
.site-footer strong { color: var(--gold-bright); font-family: "Cinzel", serif; letter-spacing: .12em; }
.footer-links { display: flex; gap: 20px; }
.footer-links a:hover { color: var(--gold-bright); }

.legal-page { padding: 80px 0 120px; }
.legal-page .legal-card { max-width: 900px; padding: 36px; margin: 0 auto; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.08); background: var(--card); }
.legal-card h1 { font-size: clamp(2.3rem, 5vw, 4rem); }
.legal-card h2 { margin-top: 32px; font-size: 1.45rem; }
.legal-card p, .legal-card li { color: var(--muted); line-height: 1.75; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 70px; }
  .hero__content { text-align: center; }
  .hero__text { margin-inline: auto; }
  .hero__actions, .hero__facts { justify-content: center; }
  .hero__visual { order: -1; }
  .logo-frame { max-width: 390px; }
  .card-grid, .discord-layout { grid-template-columns: 1fr; }
  .discord-card { min-height: 420px; }
}

@media (max-width: 680px) {
  .section-shell { width: min(100% - 24px, 1180px); }
  .site-header { width: calc(100% - 16px); }
  .brand span { font-size: .9rem; }
  .nav-toggle { display: block; }
  .main-nav { display: none; position: absolute; top: calc(100% + 8px); left: 0; right: 0; padding: 18px; flex-direction: column; align-items: stretch; border: 1px solid rgba(255,255,255,.08); border-radius: 16px; background: #070d18; }
  .main-nav.is-open { display: flex; }
  .main-nav a { text-align: center; }
  .hero { gap: 44px; }
  h1 { font-size: clamp(3rem, 16vw, 4.7rem); }
  .hero__facts { gap: 18px; }
  .section { padding: 74px 0; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid__wide { grid-column: auto; }
  .application-form, .discord-copy { padding: 24px; }
  .site-footer { flex-direction: column; }
}

.discord-icon {
  width: 1.2em;
  height: 1.2em;
  flex: 0 0 auto;
  display: inline-block;
  vertical-align: -0.18em;
}
.button .discord-icon { margin-right: 0.55rem; }
.footer-links a { display: inline-flex; align-items: center; gap: 0.4rem; }

/* Individuelles Discord-Live-Widget */
.discord-card {
  min-height: 500px;
  padding: 1px;
  background:
    linear-gradient(145deg, rgba(229,180,74,.55), rgba(53,127,255,.22) 45%, rgba(255,255,255,.05)) border-box;
  border: 1px solid transparent;
}
.discord-panel {
  min-height: 498px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: calc(var(--radius) - 1px);
  background:
    radial-gradient(circle at 8% 0%, rgba(88,101,242,.20), transparent 34%),
    linear-gradient(155deg, rgba(10,20,38,.98), rgba(4,9,18,.98));
}
.discord-panel__header {
  min-height: 102px;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(110deg, rgba(88,101,242,.25), rgba(13,24,44,.28));
}
.discord-panel__brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.discord-panel__mark {
  width: 48px; height: 48px; flex: 0 0 auto; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.14); border-radius: 15px;
  background: linear-gradient(145deg, #6470f6, #4752c4);
  box-shadow: 0 12px 30px rgba(88,101,242,.28);
}
.discord-panel__mark img { width: 27px; height: 27px; }
.discord-panel__eyebrow { display: block; margin-bottom: 2px; color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.discord-panel__brand strong { display: block; overflow: hidden; color: #fff; font-family: "Cinzel", serif; font-size: 1.1rem; text-overflow: ellipsis; white-space: nowrap; }
.discord-panel__online { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 7px; padding: 8px 11px; border: 1px solid rgba(104,229,160,.16); border-radius: 999px; color: #b8f7d3; background: rgba(104,229,160,.08); font-size: .82rem; }
.online-dot { width: 8px; height: 8px; display: inline-block; border-radius: 50%; background: var(--success); box-shadow: 0 0 14px var(--success); }
.discord-panel__body { flex: 1; padding: 25px 26px 20px; }
.discord-panel__title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 20px; }
.discord-panel__label { color: var(--gold-bright); font-family: "Cinzel", serif; font-size: .94rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.discord-panel__title-row p { margin: 5px 0 0; color: var(--muted); font-size: .86rem; }
.discord-member-badge { padding: 5px 9px; border: 1px solid rgba(229,180,74,.20); border-radius: 999px; color: var(--gold-bright); background: rgba(229,180,74,.08); font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.discord-member-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 11px; }
.discord-member {
  min-width: 0; padding: 12px; display: flex; align-items: center; gap: 11px;
  border: 1px solid rgba(255,255,255,.07); border-radius: 14px;
  background: rgba(255,255,255,.035); transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.discord-member:hover { transform: translateY(-1px); border-color: rgba(229,180,74,.24); background: rgba(255,255,255,.055); }
.discord-member__avatar { position: relative; width: 42px; height: 42px; flex: 0 0 auto; }
.discord-member__avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; background: #111827; }
.discord-member__avatar::after { content: ""; position: absolute; right: -1px; bottom: -1px; width: 11px; height: 11px; border: 3px solid #0a1220; border-radius: 50%; background: var(--success); }
.discord-member__info { min-width: 0; }
.discord-member__name { display: block; overflow: hidden; color: #edf3ff; font-size: .9rem; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.discord-member__activity { display: block; overflow: hidden; margin-top: 2px; color: var(--muted); font-size: .75rem; text-overflow: ellipsis; white-space: nowrap; }
.discord-empty { min-height: 180px; display: grid; place-content: center; text-align: center; color: var(--muted); }
.discord-empty strong { color: #fff; }
.discord-loading, .gallery-loading { grid-column: 1/-1; min-height: 180px; display: flex; align-items: center; justify-content: center; gap: 7px; color: var(--muted); }
.discord-loading span, .gallery-loading span { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-bright); animation: discordPulse 1.1s infinite ease-in-out; }
.discord-loading span:nth-child(2), .gallery-loading span:nth-child(2) { animation-delay: .14s; }
.discord-loading span:nth-child(3), .gallery-loading span:nth-child(3) { animation-delay: .28s; }
.discord-loading p, .gallery-loading p { margin: 0 0 0 8px; font-size: .85rem; }
.discord-panel__footer { padding: 14px 26px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border-top: 1px solid rgba(255,255,255,.07); color: #738096; font-size: .72rem; }
.discord-panel__footer span { display: inline-flex; align-items: center; gap: 7px; }
.discord-panel__footer .online-dot { width: 6px; height: 6px; box-shadow: 0 0 10px var(--success); }
.discord-placeholder[hidden] { display: none; }
.discord-placeholder:not([hidden]) { display: grid; background: linear-gradient(155deg, rgba(10,20,38,.98), rgba(4,9,18,.98)); }
.discord-placeholder__logo img { width: 36px; height: 36px; }
@keyframes discordPulse { 0%,80%,100% { opacity: .35; transform: translateY(0); } 40% { opacity: 1; transform: translateY(-4px); } }
@media (max-width: 680px) {
  .discord-panel__header { align-items: flex-start; padding: 20px; }
  .discord-panel__online { padding: 7px 9px; font-size: .75rem; }
  .discord-panel__body { padding: 22px 20px 18px; }
  .discord-member-list { grid-template-columns: 1fr; }
  .discord-panel__footer { padding: 13px 20px; }
  .discord-panel__footer span:last-child { display: none; }
}

/* Mitgliederbereich */
.member-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 22px; }
.member-card { display: grid; gap: 10px; text-align: center; }
.member-card__photo {
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease;
}
.member-card__photo:hover { transform: translateY(-3px); border-color: var(--line); }
.member-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.member-card__name { font-weight: 700; color: var(--text); }
.member-card__like {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  color: var(--muted);
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease;
}
.member-card__like:hover { border-color: var(--line); }
.member-card__heart { font-size: 1.05rem; }
.member-card__like.is-liked { color: var(--gold-bright); border-color: rgba(229,180,74,.4); cursor: default; }
.member-card__like.is-liked .member-card__heart { color: var(--gold-bright); }

/* Modal (Mitglieder-Karteikarte & Lightbox teilen sich Basis-Overlay-Optik) */
.modal, .lightbox { position: fixed; inset: 0; z-index: 60; display: grid; place-items: center; padding: 24px; }
.modal[hidden], .lightbox[hidden] { display: none; }
.modal__backdrop, .lightbox::before {
  content: ""; position: absolute; inset: 0; background: rgba(2,5,12,.82); backdrop-filter: blur(6px);
}
.modal__card {
  position: relative; z-index: 1; max-width: 440px; width: 100%; padding: 32px;
  border-radius: var(--radius); border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(160deg, rgba(12,23,43,.97), rgba(4,9,18,.97));
  box-shadow: var(--shadow); text-align: center;
}
.modal__photo { width: 140px; height: 140px; margin: 0 auto 18px; border-radius: 50%; object-fit: cover; border: 2px solid var(--line); }
.modal__card h3 { font-family: "Cinzel", serif; font-size: 1.6rem; margin-bottom: 18px; }
.modal__close, .lightbox__close {
  position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%; background: rgba(255,255,255,.04); color: var(--text); cursor: pointer; font-size: 1rem;
}
.member-modal-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 0 0 18px; text-align: left; }
.member-modal-facts dt { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.member-modal-facts dd { margin: 0; font-weight: 700; }
.member-modal-motto { color: var(--gold-bright); font-style: italic; margin: 0; }

.empty-state { color: var(--muted); text-align: center; padding: 20px 0; }

@media (max-width: 680px) {
  .member-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 16px; }
  .member-modal-facts { grid-template-columns: 1fr; }
}

/* Ankündigungen */
.announcement-list { display: grid; gap: 18px; }
.announcement-card {
  padding: 26px 30px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(145deg, rgba(12,23,43,.88), rgba(4,9,18,.82));
}
.announcement-card__header { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.announcement-card__badge {
  padding: 4px 11px; border-radius: 999px; font-size: .72rem; font-weight: 800; text-transform: uppercase;
  background: rgba(84,181,255,.12); color: var(--blue-bright);
}
.announcement-card--event .announcement-card__badge { background: rgba(229,180,74,.14); color: var(--gold-bright); }
.announcement-card__date { color: var(--muted); font-size: .85rem; }
.announcement-card h3 { font-family: "Cinzel", serif; margin-bottom: 8px; }
.announcement-card p { margin: 0; color: var(--muted); line-height: 1.7; }

@media (max-width: 680px) {
  .announcement-card { padding: 20px; }
}

/* Galerie-Slider */
.gallery { margin-top: 48px; }
.gallery__viewport { overflow: hidden; border-radius: var(--radius); aspect-ratio: 16/8; }
.gallery__track { display: flex; height: 100%; transition: transform .4s ease; }
.gallery__slide { flex: none; height: 100%; }
.gallery__slide img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.gallery__dots { display: flex; justify-content: center; gap: 10px; margin-top: 16px; }
.gallery__dot { width: 10px; height: 10px; border-radius: 50%; border: 1px solid var(--line); background: transparent; cursor: pointer; padding: 0; }
.gallery__dot.is-active { background: var(--gold-bright); }
.lightbox__image { max-width: min(90vw, 1000px); max-height: 85vh; border-radius: 18px; position: relative; z-index: 1; }
