/* =============================================
   CALL OF THE FLAMES — Hauptstylesheet
   Feuerwehr & Rettungsdienst Design
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Roboto:wght@300;400;500&family=Rajdhani:wght@500;600;700&display=swap');

:root {
  --fire-red:    #FF2200;
  --fire-orange: #FF6A00;
  --flame-amber: #FFB300;
  --bg-deep:     #0A0A0A;
  --bg-card:     #141414;
  --bg-panel:    #1C1C1C;
  --border:      #2A2A2A;
  --text-light:  #F0F0F0;
  --text-muted:  #888888;
  --white:       #FFFFFF;
  --danger:      #FF1744;
  --success:     #00E676;
  --nav-h:       70px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text-light);
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

/* ── NAVBAR ─────────────────────────────────── */
nav.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(10, 10, 10, 0.96);
  border-bottom: 2px solid var(--fire-red);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-brand .brand-icon {
  height: 44px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 8px var(--fire-orange));
  animation: flicker 2.5s infinite;
}

.nav-brand .brand-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

.nav-brand .brand-text span {
  color: var(--fire-orange);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-transform: uppercase;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 106, 0, 0.15);
  border-bottom: 2px solid var(--fire-orange);
}

.nav-discord-btn {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  background: #5865F2;
  color: #fff !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 6px !important;
  border-bottom: none !important;
}

.nav-discord-btn:hover {
  background: #4752c4 !important;
  color: #fff !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-hamburger span {
  width: 26px;
  height: 2px;
  background: var(--text-light);
  transition: all 0.3s;
}

/* ── PAGE WRAPPER ────────────────────────────── */
.page-wrapper {
  padding-top: var(--nav-h);
  min-height: 100vh;
}

/* ── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at bottom center, #3a0a00 0%, var(--bg-deep) 70%);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}

.flames-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  display: flex;
  justify-content: center;
  z-index: 2;
}

.flame {
  position: absolute;
  bottom: 0;
  width: 60px;
  border-radius: 50% 50% 20% 20%;
  transform-origin: bottom center;
  filter: blur(4px);
  animation: burnUp 1.8s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 820px;
  padding: 2rem;
}

.hero-eyebrow {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--fire-orange);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--fire-orange);
  opacity: 0.6;
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -1px;
  color: var(--white);
  text-shadow: 0 0 60px rgba(255, 106, 0, 0.4);
  margin-bottom: 1rem;
}

.hero-title .fire-word {
  color: var(--fire-orange);
  display: block;
  text-shadow: 0 0 40px rgba(255, 106, 0, 0.8), 0 0 80px rgba(255, 34, 0, 0.4);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 1.5rem auto 2.5rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--fire-red), var(--fire-orange));
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 106, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 106, 0, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--fire-orange);
  color: var(--fire-orange);
  transform: translateY(-2px);
}

.btn-discord {
  background: #5865F2;
  color: #fff;
  box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
}

.btn-discord:hover {
  background: #4752c4;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(88, 101, 242, 0.6);
}

/* ── SECTION STYLES ──────────────────────────── */
section {
  padding: 5rem 2rem;
}

.section-eyebrow {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--fire-orange);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  max-width: 600px;
  font-size: 1rem;
  line-height: 1.7;
}

.section-header { margin-bottom: 3rem; }

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── CARDS ───────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  transition: border-color 0.25s, transform 0.2s, box-shadow 0.25s;
}

.card:hover {
  border-color: var(--fire-orange);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(255, 106, 0, 0.12);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 6px var(--fire-orange));
}

.card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ── GRID LAYOUTS ────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }

/* ── DIVIDER ─────────────────────────────────── */
.fire-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 4rem auto;
  max-width: 800px;
}

.fire-divider::before,
.fire-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--fire-orange), transparent);
}

.fire-divider-icon { font-size: 1.5rem; filter: drop-shadow(0 0 6px var(--fire-orange)); }

/* ── PAGE HERO (Unterseiten) ─────────────────── */
.page-hero {
  background: linear-gradient(135deg, #1a0500 0%, #0A0A0A 100%);
  border-bottom: 2px solid var(--fire-red);
  padding: 4rem 2rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at top, rgba(255, 106, 0, 0.08) 0%, transparent 70%);
}

.page-hero .section-eyebrow,
.page-hero .section-title,
.page-hero .section-desc {
  position: relative;
  z-index: 1;
}

.page-hero .section-desc { margin: 0 auto; }

/* ── FOOTER ──────────────────────────────────── */
footer {
  background: #080808;
  border-top: 2px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-brand {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-brand span { color: var(--fire-orange); }

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1.5rem 0;
  list-style: none;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--fire-orange); }

.footer-copy {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 1rem;
}

/* ── BADGE ───────────────────────────────────── */
.badge {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 4px;
}

.badge-owner   { background: linear-gradient(135deg, var(--fire-red), var(--fire-orange)); color: #fff; }
.badge-support { background: rgba(88,101,242,0.2); color: #8b9cf9; border: 1px solid rgba(88,101,242,0.4); }
.badge-admin   { background: rgba(255,179,0,0.2); color: var(--flame-amber); border: 1px solid rgba(255,179,0,0.4); }
.badge-warn    { background: rgba(255,23,68,0.15); color: #ff6090; border: 1px solid rgba(255,23,68,0.3); }
.badge-law     { background: rgba(0,200,120,0.12); color: #00d68f; border: 1px solid rgba(0,200,120,0.3); }

/* ── ALERT BOX ───────────────────────────────── */
.alert {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.alert-danger {
  background: rgba(255, 23, 68, 0.08);
  border: 1px solid rgba(255, 23, 68, 0.35);
}

.alert-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.alert-text h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: var(--danger);
  margin-bottom: 0.25rem;
}
.alert-text p { color: var(--text-muted); font-size: 0.9rem; }

/* ── RULE CARDS ──────────────────────────────── */
.rule-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--fire-orange);
  border-radius: 8px;
  padding: 1.75rem;
  margin-bottom: 1rem;
  transition: border-color 0.2s;
}

.rule-card.danger { border-left-color: var(--danger); }
.rule-card.law    { border-left-color: #00d68f; }

.rule-card:hover { border-color: var(--fire-orange); border-left-color: inherit; }
.rule-card.danger:hover { border-color: var(--danger); }

.rule-number {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--fire-orange);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.rule-card.danger .rule-number { color: var(--danger); }
.rule-card.law .rule-number { color: #00d68f; }

.rule-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.rule-card p,
.rule-card ul {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
}

.rule-card ul { padding-left: 1.25rem; }
.rule-card ul li { margin-bottom: 0.35rem; }

/* ── TEAM CARDS ──────────────────────────────── */
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.25s;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fire-red), var(--fire-orange));
}

.team-card.supporter::before { background: linear-gradient(90deg, #5865F2, #8b9cf9); }

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(255, 106, 0, 0.15);
}

.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fire-red), var(--fire-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--bg-deep);
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.35);
}

.team-card.supporter .team-avatar {
  background: linear-gradient(135deg, #5865F2, #8b9cf9);
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.35);
}

.team-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

/* ── ANNOUNCEMENT CARD ───────────────────────── */
.announcement-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.25s;
}

.announcement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 106, 0, 0.12);
}

.ann-header {
  background: linear-gradient(135deg, #1a0500, #2a0d00);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ann-date-badge {
  background: linear-gradient(135deg, var(--fire-red), var(--fire-orange));
  border-radius: 8px;
  padding: 0.6rem 1rem;
  text-align: center;
  min-width: 70px;
  flex-shrink: 0;
}

.ann-date-badge .day {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.ann-date-badge .month {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.ann-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
}

.ann-tag {
  display: inline-block;
  background: rgba(255, 106, 0, 0.15);
  color: var(--fire-orange);
  border: 1px solid rgba(255,106,0,0.3);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-top: 0.35rem;
  display: block;
  width: fit-content;
}

.ann-body { padding: 1.5rem; }
.ann-body p { color: var(--text-muted); line-height: 1.7; font-size: 0.95rem; }

/* ── VERIFY / DISCORD SECTION ────────────────── */
.verify-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3rem;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.verify-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 12px rgba(88,101,242,0.6));
}

.verify-box h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.verify-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.verify-steps {
  text-align: left;
  background: var(--bg-panel);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.verify-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.verify-step:last-child { border-bottom: none; padding-bottom: 0; }

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fire-red), var(--fire-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.step-text { color: var(--text-light); font-size: 0.9rem; }
.step-text strong { color: var(--white); }

/* ── SCROLL-TO-TOP ───────────────────────────── */
#scrollTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--fire-red), var(--fire-orange));
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 900;
  box-shadow: 0 4px 16px rgba(255,106,0,0.4);
}

#scrollTop.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── STAT BAR (Index) ────────────────────────── */
.stat-bar {
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  text-align: center;
}

.stat-item .num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--fire-orange);
  line-height: 1;
}

.stat-item .label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* ── UNIVERSELLES MEDIA-FRAME (Quer- & Hochformat) ─ */
/* Bilder & Videos werden unabhängig vom Seitenverhältnis
   sauber dargestellt: Querformat füllt die Breite,
   Hochformat wird in der Höhe begrenzt und mittig
   „letterboxed". Es wird nichts verzerrt oder beschnitten. */
.media-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #000;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin: 0 auto;
}

.media-frame img,
.media-frame video {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
}

/* Hochformat darf etwas höher werden */
.media-frame.portrait img,
.media-frame.portrait video { max-height: 80vh; }

/* Kompakt – z. B. in schmalen Spalten / Sidebars */
.media-frame.compact img,
.media-frame.compact video { max-height: 50vh; }

/* Videos generell auf schwarzem Grund + nicht markierbar */
video {
  background: #000;
  outline: none;
}

/* ── PARTNER-SEITE ───────────────────────────── */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.partner-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2.25rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.25s, border-color 0.2s;
}

.partner-card:hover {
  transform: translateY(-6px);
  border-color: var(--fire-orange);
  box-shadow: 0 16px 50px rgba(255, 106, 0, 0.15);
}

.partner-logo {
  width: 110px;
  height: 110px;
  border-radius: 20px;
  object-fit: contain;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  padding: 0.6rem;
  margin-bottom: 1.25rem;
}

.partner-logo-fallback {
  width: 110px;
  height: 110px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--fire-red), var(--fire-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 24px rgba(255, 106, 0, 0.3);
}

.partner-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.partner-cat {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fire-orange);
  margin-bottom: 0.9rem;
}

.partner-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex: 1;
}

.partner-link {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--fire-orange);
  text-decoration: none;
  border: 1px solid rgba(255, 106, 0, 0.4);
  border-radius: 6px;
  padding: 0.5rem 1.25rem;
  transition: background 0.2s, color 0.2s;
}

.partner-link:hover {
  background: var(--fire-orange);
  color: #fff;
}

.partner-card.placeholder {
  border-style: dashed;
  justify-content: center;
  color: var(--text-muted);
}

.partner-card.placeholder .partner-desc { margin-bottom: 0; }

/* „Partner werden" CTA */
.partner-cta {
  background: linear-gradient(135deg, #1a0500, #0A0A0A);
  border: 1px solid rgba(255, 106, 0, 0.25);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
}

.partner-cta h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.partner-cta p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* ── DETAILLIERTE PARTNER-ZEILEN ─────────────── */
.partner-rows { margin-bottom: 3.5rem; }

.partner-row {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2rem;
  transition: transform 0.2s, box-shadow 0.25s, border-color 0.2s;
}

.partner-row:hover {
  border-color: var(--fire-orange);
  box-shadow: 0 16px 50px rgba(255, 106, 0, 0.12);
}

/* Werbe-Banner – breites Werbebild oben, nie verzerrt/beschnitten */
.partner-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border-bottom: 1px solid var(--border);
}

.partner-banner img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
}

.partner-banner .werbung-label {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  background: rgba(0, 0, 0, 0.6);
  color: var(--text-muted);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

.banner-placeholder {
  width: 100%;
  min-height: 160px;
  margin: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  text-align: center;
  color: var(--text-muted);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border: 1px dashed var(--border);
  border-radius: 8px;
  background: var(--bg-panel);
}

.banner-placeholder small { font-size: 0.78rem; opacity: 0.7; }

.partner-row-body { padding: 2rem; }

.partner-row-head {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

/* Logo innerhalb der Zeile: Karten-Margin zurücksetzen */
.partner-row .partner-logo,
.partner-row .partner-logo-fallback {
  margin-bottom: 0;
  flex-shrink: 0;
}

.partner-row-headtext { flex: 1; min-width: 0; }

.partner-row-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.partner-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.partner-meta .partner-cat { margin-bottom: 0; }

.partner-row-desc { margin-bottom: 0.5rem; }

.partner-row-desc p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 0.85rem;
}

.partner-row-desc p:last-child { margin-bottom: 0; }

.partner-feature-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin: 1.25rem 0 0;
}

.partner-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.partner-feature-list li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
}

.partner-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

@media (max-width: 600px) {
  .partner-row-head { flex-direction: column; text-align: center; }
  .partner-meta { justify-content: center; }
  .partner-row-body { padding: 1.5rem; }
}

/* ── PARTNER-EMBED (Vorschau-Fenster / Lightbox) ── */
.embed-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.embed-overlay.open { opacity: 1; visibility: visible; }

.embed-window {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1100px;
  height: 85vh;
  background: var(--bg-card);
  border: 1px solid var(--fire-orange);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.85);
  opacity: 0;
  transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.3, 1.15),
              opacity 0.22s ease, max-width 0.28s ease, height 0.28s ease;
}

.embed-overlay.open .embed-window { transform: scale(1); opacity: 1; }

/* verkleinerter Modus */
.embed-window.compact { max-width: 620px; height: 58vh; }

.embed-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 1rem;
  background: var(--bg-panel);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.embed-title {
  flex: 1;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.embed-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }

.embed-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.embed-btn:hover { border-color: var(--fire-orange); color: var(--fire-orange); }
.embed-btn[data-act="close"]:hover { border-color: var(--danger); color: var(--danger); }

.embed-body {
  position: relative;
  flex: 1;
  background: #ffffff;
}

.embed-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.embed-fallback {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 2rem;
  background: var(--bg-card);
  color: var(--text-muted);
}

.embed-fallback.show { display: flex; }
.embed-fallback .ef-icon { font-size: 2.75rem; filter: drop-shadow(0 0 10px var(--fire-orange)); }
.embed-fallback p { max-width: 420px; line-height: 1.6; }
.embed-fallback .ef-url {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  word-break: break-all;
  max-width: 90%;
}

@media (max-width: 768px) {
  .embed-overlay { padding: 0.75rem; }
  .embed-window,
  .embed-window.compact { max-width: 100%; height: 88vh; }
}

/* ── MOBILE NAV ──────────────────────────────── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 2px solid var(--fire-red);
    gap: 0.25rem;
  }

  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .hero-title { font-size: 3rem; }
  section { padding: 3rem 1.25rem; }
  .verify-box { padding: 2rem 1.25rem; }
}

/* ── ANIMATIONS ──────────────────────────────── */
@keyframes flicker {
  0%, 100% { opacity: 1; filter: drop-shadow(0 0 8px var(--fire-orange)); }
  50%       { opacity: 0.8; filter: drop-shadow(0 0 4px var(--fire-red)); }
}

@keyframes burnUp {
  0%   { height: 80px; opacity: 0.9; }
  50%  { height: 160px; opacity: 0.7; }
  100% { height: 110px; opacity: 0.85; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeInUp 0.6s ease forwards; }
.fade-in-delay-1 { animation: fadeInUp 0.6s 0.15s ease both; }
.fade-in-delay-2 { animation: fadeInUp 0.6s 0.3s ease both; }
.fade-in-delay-3 { animation: fadeInUp 0.6s 0.45s ease both; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
