
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root { --green:#1a4a2e; --green-light:#246038; --red:#cc0000; --white:#ffffff; --dark:#111111; --text:#222222; }
html { scroll-behavior: smooth; }
body { font-family:'Inter',sans-serif; color:var(--text); background:var(--dark); }
nav { position:fixed; top:0; left:0; right:0; z-index:100; background:rgba(10,30,15,.94); backdrop-filter:blur(8px); display:flex; align-items:center; justify-content:space-between; padding:0 40px; height:64px; border-bottom:2px solid var(--red); }
.nav-logo { font-family:'Oswald',sans-serif; font-size:1.2rem; font-weight:700; color:var(--white); letter-spacing:.05em; text-decoration:none; white-space:nowrap; }
.nav-logo span { color:var(--red); }
nav ul { list-style:none; display:flex; align-items:stretch; gap:22px; height:64px; }
nav ul > li > a { display:inline-flex; align-items:center; height:64px; color:rgba(255,255,255,.8); text-decoration:none; font-size:.85rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase; transition:color .2s; }
nav ul a:hover, nav ul a.active { color:var(--red); }
main { background:var(--dark); min-height:calc(100vh - 64px); }
.hero { margin-top:64px; width:100%; position:relative; overflow:hidden; background:#06130b; }
.hero img { width:100%; height:auto; object-fit:cover; display:block; }
.hero-overlay { position:absolute; bottom:0; left:0; right:0; height:12%; background:linear-gradient(to top,var(--dark),transparent); }
.page-header { margin-top:64px; padding:74px 60px 46px; background:linear-gradient(135deg,#07150d,#123521 55%,#080808); border-bottom:2px solid rgba(204,0,0,.7); }
.section-label { font-family:'Oswald',sans-serif; font-size:.75rem; letter-spacing:.2em; text-transform:uppercase; color:var(--red); margin-bottom:12px; }
.section-title, .page-title { font-family:'Oswald',sans-serif; font-size:clamp(2rem,4vw,3.4rem); font-weight:700; color:var(--white); line-height:1.05; text-transform:uppercase; }
.page-intro, .section-intro { max-width:760px; margin-top:16px; color:rgba(255,255,255,.72); line-height:1.7; font-size:.96rem; }
section { padding:72px 60px; }
.section-title + .news-grid { margin-top:22px; }
.news-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:24px; }
.news-card-link { display:block; text-decoration:none; color:inherit; }
.news-card { height:100%; background:var(--green); border-radius:6px; overflow:hidden; transition:transform .2s, box-shadow .2s; border:1px solid rgba(255,255,255,.07); }
.news-card:hover { transform:translateY(-4px); box-shadow:0 12px 32px rgba(0,0,0,.5); }
.news-card-img { width:100%; background:#06130b; display:block; }
.news-card-img img { width:100%; height:auto; display:block; }
.news-card-body { padding:20px; }
.news-date { font-size:.72rem; color:rgba(255,255,255,.55); text-transform:uppercase; letter-spacing:.1em; margin-bottom:8px; }
.news-card-title { font-family:'Oswald',sans-serif; font-size:1.25rem; font-weight:600; color:var(--white); line-height:1.25; margin-bottom:10px; }
.news-card-text { font-size:.85rem; color:rgba(255,255,255,.72); line-height:1.65; }
.read-more { display:inline-block; margin-top:18px; font-family:'Oswald',sans-serif; font-size:.85rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--white); border-bottom:2px solid var(--red); padding-bottom:3px; }
.article-section { background:#0d0d0d; }
.article-card { max-width:1100px; margin:0 auto; background:#151515; border:1px solid rgba(255,255,255,.08); border-left:4px solid var(--red); border-radius:6px; overflow:hidden; box-shadow:0 18px 45px rgba(0,0,0,.35); }
.article-card img { width:100%; height:auto; display:block; background:#050505; }
.article-content { padding:36px; }
.article-date { font-size:.75rem; color:var(--red); text-transform:uppercase; letter-spacing:.16em; font-weight:700; margin-bottom:10px; }
.article-title { font-family:'Oswald',sans-serif; color:var(--white); font-size:clamp(2rem,4vw,3.2rem); line-height:1.05; margin-bottom:22px; text-transform:uppercase; }
.article-content p, .article-content li, .text-block p { color:rgba(255,255,255,.76); line-height:1.8; font-size:.98rem; }
.article-content p + p, .text-block p + p { margin-top:16px; }
.article-content ul { margin:18px 0 22px 20px; }
.article-content strong { color:var(--white); }
.article-actions { display:flex; gap:14px; flex-wrap:wrap; margin-top:30px; }
.info-box { margin-top:24px; padding:18px 20px; background:rgba(26,74,46,.45); border-left:3px solid var(--green-light); color:rgba(255,255,255,.78); line-height:1.7; }
.info-box a { color:var(--white); font-weight:700; text-decoration:none; }
.info-box a:hover { color:var(--red); }
.btn { display:inline-block; padding:14px 34px; font-family:'Oswald',sans-serif; font-size:1rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; text-decoration:none; border-radius:2px; transition:background .2s, transform .15s, border-color .2s; }
.btn-red { background:var(--red); color:var(--white); }
.btn-red:hover { background:#e60000; transform:translateY(-2px); }
.btn-outline { border:2px solid var(--white); color:var(--white); background:transparent; }
.btn-outline:hover { background:rgba(255,255,255,.1); transform:translateY(-2px); }
.match-list { display:flex; flex-direction:column; gap:12px; }
.match-row { display:flex; align-items:center; justify-content:space-between; background:#1a1a1a; border-left:3px solid var(--red); padding:16px 24px; border-radius:2px; font-size:.9rem; }
.match-date { color:rgba(255,255,255,.45); font-size:.78rem; width:120px; }
.match-teams { flex:1; text-align:center; font-family:'Oswald',sans-serif; font-size:1rem; font-weight:600; color:var(--white); }
.match-teams .vs { color:var(--red); margin:0 12px; }
.match-liga { color:rgba(255,255,255,.35); font-size:.72rem; text-align:right; width:120px; }
.text-block { max-width:900px; }
.join-panel { background:var(--green); text-align:center; }
.join-panel p { color:rgba(255,255,255,.78); max-width:600px; margin:16px auto 0; line-height:1.7; }
.sponsor-grid { display:flex; justify-content:center; gap:48px; flex-wrap:wrap; margin-top:26px; }
.sponsor-placeholder { width:140px; height:60px; border:1px solid rgba(255,255,255,.1); border-radius:4px; display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.2); font-size:.75rem; letter-spacing:.1em; }
footer { background:#0a0a0a; border-top:2px solid var(--green); padding:40px 60px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:24px; }
.footer-left { font-family:'Oswald',sans-serif; color:var(--white); font-size:1rem; }
.footer-left span { color:var(--red); }
.footer-links { display:flex; gap:24px; flex-wrap:wrap; }
.footer-links a { color:rgba(255,255,255,.45); font-size:.78rem; text-decoration:none; transition:color .2s; }
.footer-links a:hover { color:var(--white); }
@media (max-width:1200px){ nav{padding:0 24px;} nav ul{gap:16px;} nav ul > li > a{font-size:.72rem;} }
@media (max-width:980px){ nav{padding:0 18px;} nav ul{gap:12px;} nav ul > li > a{font-size:.66rem;} }
@media (max-width:768px){ nav ul{display:none;} section{padding:48px 24px;} .page-header{padding:56px 24px 38px;} footer{padding:32px 24px; flex-direction:column; text-align:center;} .match-row{align-items:flex-start; flex-direction:column; gap:8px;} .match-date,.match-liga{width:auto; text-align:left;} .match-teams{text-align:left;} .article-content{padding:26px 22px;} .article-actions{flex-direction:column;} .btn{text-align:center; width:100%;} }


/* ── DROPDOWN NAVIGATION ── */
nav ul li { position: relative; }
.nav-item > a { display: inline-flex; align-items: center; height: 64px; }
.nav-dropdown > a::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: .8;
}
.dropdown-menu {
  position: absolute;
  top: 64px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 250px;
  padding: 10px;
  background: rgba(8, 31, 18, .98);
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 18px 40px rgba(0,0,0,.48);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: rgba(8, 31, 18, .98);
  border-left: 1px solid rgba(255,255,255,.09);
  border-top: 1px solid rgba(255,255,255,.09);
  transform: translateX(-50%) rotate(45deg);
}
.dropdown-menu a {
  display: block;
  padding: 13px 14px;
  color: rgba(255,255,255,.86);
  text-decoration: none;
  font-size: .82rem;
  letter-spacing: .07em;
  border-radius: 4px;
  border-left: 3px solid transparent;
  background: transparent;
}
.dropdown-menu a:hover,
.dropdown-menu a:focus {
  color: var(--white);
  text-decoration: none;
  background: rgba(255,255,255,.075);
  border-left-color: var(--red);
}

/* ── VEREIN ÜBERSICHT ── */
.club-overview { background: var(--dark); }
.club-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}
.club-card {
  position: relative;
  min-height: 220px;
  padding: 28px 24px 24px;
  color: var(--white);
  text-decoration: none;
  background: linear-gradient(145deg, rgba(26,74,46,.95), rgba(12,35,21,.98));
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.club-card::after { content: none; }
.club-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(0,0,0,.45);
  border-color: rgba(204,0,0,.65);
}
.club-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 20px;
  color: rgba(255,255,255,.92);
}
.club-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.club-icon.large { width: 82px; height: 82px; color: var(--red); margin-bottom: 22px; }
.club-card h2 {
  position: relative;
  z-index: 1;
  font-family: 'Oswald', sans-serif;
  font-size: 1.45rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 10px;
}
.club-card p {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.72);
  font-size: .9rem;
  line-height: 1.65;
}
.simple-card { max-width: 900px; }
.news-section { background: var(--dark); }
.news-section .section-title { margin-bottom: 34px; }

@media (max-width:768px){
  .nav-dropdown .dropdown-menu { display:none; }
  .club-grid { grid-template-columns: 1fr; }
}

/* ── STADION SEITE ── */
.stadium-hero {
  margin-top: 64px;
  min-height: clamp(520px, 56vw, 820px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(to top, var(--dark) 0%, rgba(17,17,17,0) 18%),
    linear-gradient(90deg, rgba(5,8,6,.16) 0%, rgba(5,8,6,.04) 45%, rgba(5,8,6,.00) 100%),
    url("StadionWebseite.png") center center / cover no-repeat;
  border-bottom: 2px solid rgba(204,0,0,.55);
}
.stadium-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 55%, rgba(26,74,46,.14), transparent 38%);
  pointer-events: none;
}
.stadium-hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 80px));
  margin-left: 70px;
  padding: 70px 0 42px;
}
.stadium-hero h1 {
  font-family: 'Oswald', sans-serif;
  color: var(--white);
  font-size: clamp(3.1rem, 7.2vw, 7.6rem);
  line-height: .86;
  text-transform: uppercase;
  letter-spacing: .02em;
  text-shadow: 0 12px 34px rgba(0,0,0,.62);
}
.stadium-hero h1 span {
  display: inline-block;
  margin-top: 18px;
  color: #1f9b58;
  font-size: .38em;
  letter-spacing: .12em;
}
.stadium-hero-content p {
  max-width: 590px;
  margin-top: 24px;
  color: rgba(255,255,255,.78);
  font-size: 1.02rem;
  line-height: 1.8;
}
.stadium-section {
  padding: 72px 60px;
  background: var(--dark);
}
.stadium-section-alt {
  background: #0d0d0d;
}
.stadium-layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: stretch;
}
.stadium-main-card,
.stadium-final-card,
.stadium-info-panel,
.feature-card {
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(145deg, rgba(24,24,24,.98), rgba(13,13,13,.98));
  box-shadow: 0 18px 44px rgba(0,0,0,.32);
}
.stadium-main-card,
.stadium-final-card {
  border-left: 4px solid var(--red);
  border-radius: 8px;
  padding: 36px;
}
.stadium-main-card h2,
.stadium-final-card h2 {
  font-family: 'Oswald', sans-serif;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.stadium-main-card p,
.stadium-final-card p,
.stadium-info-panel p,
.feature-card p {
  color: rgba(255,255,255,.76);
  line-height: 1.82;
  font-size: .98rem;
}
.stadium-main-card p + p {
  margin-top: 16px;
}
.stadium-main-card a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}
.stadium-main-card a:hover { color: var(--red); }
.stadium-info-panel {
  border-radius: 8px;
  padding: 32px;
  background: linear-gradient(145deg, rgba(26,74,46,.96), rgba(9,30,17,.98));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stadium-info-panel h3 {
  font-family: 'Oswald', sans-serif;
  color: var(--white);
  font-size: 1.7rem;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.stadium-info-panel p + p { margin-top: 12px; }
.stadium-info-panel .btn { margin-top: 28px; text-align: center; }
.stadium-features {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.feature-card {
  min-height: 185px;
  border-radius: 8px;
  padding: 24px;
  background: linear-gradient(145deg, rgba(26,74,46,.94), rgba(12,35,21,.98));
  transition: transform .2s ease, border-color .2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(204,0,0,.6);
}
.feature-card span {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  color: var(--red);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.stadium-final-card {
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .stadium-layout { grid-template-columns: 1fr; }
  .stadium-features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .stadium-hero { min-height: 520px; background-position: center; }
  .stadium-hero-content { width: calc(100% - 48px); margin-left: 24px; }
  .stadium-section { padding: 48px 24px; }
  .stadium-main-card, .stadium-final-card, .stadium-info-panel { padding: 26px 22px; }
  .stadium-features { grid-template-columns: 1fr; }
}

/* ── VORSTAND SEITE ── */
.board-header {
  background:
    radial-gradient(circle at 88% 10%, rgba(204,0,0,.18), transparent 24%),
    linear-gradient(135deg, #07150d, #123521 56%, #080808);
}
.board-section {
  background: var(--dark);
  padding: 72px 60px;
}
.board-wrapper {
  max-width: 1220px;
  margin: 0 auto;
}
.board-intro-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 34px 36px;
  margin-bottom: 34px;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(26,74,46,.94), rgba(9,30,17,.98));
  border: 1px solid rgba(255,255,255,.08);
  border-left: 4px solid var(--red);
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
}
.board-intro-card h2,
.board-group-head h2 {
  font-family: 'Oswald', sans-serif;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.08;
}
.board-intro-card h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 14px;
}
.board-intro-card p {
  max-width: 760px;
  color: rgba(255,255,255,.76);
  line-height: 1.8;
}
.board-group {
  margin-top: 28px;
  padding: 30px;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(21,21,21,.98), rgba(13,13,13,.98));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 44px rgba(0,0,0,.26);
}
.board-group-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.board-group-head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  border-radius: 50%;
  font-family: 'Oswald', sans-serif;
  color: var(--white);
  background: var(--red);
  font-weight: 700;
  letter-spacing: .04em;
}
.board-group-head h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.35rem);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}
.contact-card {
  min-height: 150px;
  padding: 22px;
  border-radius: 7px;
  background: linear-gradient(145deg, rgba(26,74,46,.88), rgba(10,31,18,.98));
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(204,0,0,.62);
  box-shadow: 0 14px 34px rgba(0,0,0,.32);
}
.contact-card-highlight {
  border-left: 3px solid var(--red);
}
.contact-role {
  min-height: 36px;
  margin-bottom: 12px;
  color: rgba(255,255,255,.6);
  font-size: .78rem;
  line-height: 1.45;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
}
.contact-card h3 {
  font-family: 'Oswald', sans-serif;
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1.15;
  margin-bottom: 12px;
}
.contact-card a,
.contact-banner a {
  display: block;
  width: fit-content;
  max-width: 100%;
  color: rgba(255,255,255,.82);
  text-decoration: none;
  overflow-wrap: anywhere;
  line-height: 1.6;
}
.contact-card a + a { margin-top: 5px; }
.contact-card a:hover,
.contact-banner a:hover { color: var(--red); }
.board-note {
  margin-top: 18px;
  color: rgba(255,255,255,.56);
  font-size: .88rem;
}
.contact-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  padding: 18px 20px;
  border-radius: 6px;
  background: rgba(26,74,46,.42);
  border: 1px solid rgba(255,255,255,.08);
}
.contact-banner span {
  font-family: 'Oswald', sans-serif;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.contact-banner a {
  font-weight: 700;
  color: var(--white);
}
.board-split {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 28px;
}
.compact-group { height: fit-content; }
.compact-contact-grid { grid-template-columns: 1fr; }
.board-actions {
  justify-content: center;
}
@media (max-width: 900px) {
  .board-intro-card { flex-direction: column; align-items: flex-start; }
  .board-split { grid-template-columns: 1fr; }
  .contact-banner { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 768px) {
  .board-section { padding: 48px 24px; }
  .board-intro-card, .board-group { padding: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ── FÖRDERVEREIN SEITE ── */
.support-header {
  background:
    radial-gradient(circle at 78% 18%, rgba(204,0,0,.16), transparent 28%),
    linear-gradient(135deg, #07150d, #123521 58%, #080808);
}
.support-section {
  background: var(--dark);
  padding: 72px 60px;
}
.support-wrapper {
  max-width: 1220px;
  margin: 0 auto;
}
.support-lead-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 32px;
  align-items: stretch;
  padding: 36px;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(26,74,46,.93), rgba(9,30,17,.98));
  border: 1px solid rgba(255,255,255,.08);
  border-left: 4px solid var(--red);
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
}
.support-lead-card h2,
.support-text-panel h2,
.support-contact-panel h2,
.support-cta-card h2,
.support-card h3 {
  font-family: 'Oswald', sans-serif;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
}
.support-lead-card h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  margin-bottom: 18px;
}
.support-lead-card p,
.support-text-panel p,
.support-contact-panel p,
.support-cta-card p,
.support-card p {
  color: rgba(255,255,255,.76);
  line-height: 1.8;
  font-size: .98rem;
}
.support-lead-card p + p,
.support-text-panel p + p { margin-top: 16px; }
.support-fact-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border-radius: 8px;
  background: rgba(5,16,10,.55);
  border: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.fact-number {
  font-family: 'Oswald', sans-serif;
  font-size: 4.4rem;
  line-height: .95;
  color: var(--red);
  font-weight: 700;
}
.fact-label {
  margin-top: 10px;
  font-family: 'Oswald', sans-serif;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 1rem;
}
.fact-text {
  margin-top: 10px;
  color: rgba(255,255,255,.62);
  line-height: 1.6;
  font-size: .86rem;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.support-card {
  padding: 26px;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(21,21,21,.98), rgba(13,13,13,.98));
  border: 1px solid rgba(255,255,255,.08);
  border-top: 3px solid rgba(204,0,0,.78);
}
.support-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
}
.support-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
.support-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: 28px;
  margin-top: 28px;
}
.support-text-panel,
.support-contact-panel,
.support-cta-card {
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(21,21,21,.98), rgba(13,13,13,.98));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 44px rgba(0,0,0,.24);
}
.support-text-panel { padding: 34px; }
.support-text-panel h2,
.support-contact-panel h2,
.support-cta-card h2 {
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  margin-bottom: 18px;
}
.support-contact-panel {
  padding: 30px;
  border-left: 4px solid var(--green-light);
}
.support-meeting,
.support-person {
  margin-top: 22px;
  padding: 18px;
  border-radius: 6px;
  background: rgba(26,74,46,.42);
  border: 1px solid rgba(255,255,255,.08);
}
.support-meeting strong,
.support-person span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.support-meeting span {
  display: block;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
}
.support-person strong {
  display: block;
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.support-person a {
  color: rgba(255,255,255,.84);
  text-decoration: none;
  overflow-wrap: anywhere;
  line-height: 1.6;
}
.support-person a:hover { color: var(--red); }
.support-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  padding: 34px;
  background:
    radial-gradient(circle at 90% 50%, rgba(204,0,0,.14), transparent 28%),
    linear-gradient(145deg, rgba(26,74,46,.84), rgba(8,24,14,.98));
}
.support-cta-card p { max-width: 760px; }
.support-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 320px;
}
@media (max-width: 980px) {
  .support-lead-card,
  .support-content-grid,
  .support-grid { grid-template-columns: 1fr; }
  .support-cta-card { flex-direction: column; align-items: flex-start; }
  .support-cta-actions { min-width: 0; justify-content: flex-start; }
}
@media (max-width: 768px) {
  .support-section { padding: 48px 24px; }
  .support-lead-card,
  .support-text-panel,
  .support-contact-panel,
  .support-cta-card { padding: 24px; }
}

/* ── GESCHICHTE ── */
.history-header {
  background:
    linear-gradient(135deg, rgba(7,21,13,.98), rgba(18,53,33,.92) 52%, rgba(8,8,8,.98)),
    radial-gradient(circle at 85% 30%, rgba(204,0,0,.16), transparent 30%);
}
.history-section {
  background:
    linear-gradient(180deg, #111 0%, #0d0d0d 100%);
}
.history-layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}
.history-timeline {
  position: sticky;
  top: 92px;
  padding: 24px;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(26,74,46,.68), rgba(8,24,14,.96));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 44px rgba(0,0,0,.24);
}
.timeline-item {
  position: relative;
  padding-left: 26px;
}
.timeline-item + .timeline-item {
  margin-top: 28px;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(204,0,0,.14);
}
.timeline-item::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 24px;
  width: 2px;
  height: calc(100% + 10px);
  background: rgba(255,255,255,.14);
}
.timeline-item:last-child::after { display: none; }
.timeline-item span {
  display: block;
  margin-bottom: 7px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .04em;
}
.timeline-item p {
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  font-size: .9rem;
}
.history-article {
  padding: 42px;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(21,21,21,.99), rgba(13,13,13,.99));
  border: 1px solid rgba(255,255,255,.08);
  border-left: 4px solid var(--red);
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
}
.history-kicker {
  margin-bottom: 12px;
  font-family: 'Oswald', sans-serif;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
}
.history-article h2 {
  margin-bottom: 24px;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  text-transform: uppercase;
  color: var(--white);
}
.history-article p {
  color: rgba(255,255,255,.78);
  font-size: 1rem;
  line-height: 1.9;
}
.history-article p + p { margin-top: 18px; }
.history-highlight {
  margin-top: 34px;
  padding: 24px 26px;
  border-radius: 7px;
  background:
    linear-gradient(145deg, rgba(26,74,46,.72), rgba(8,24,14,.96));
  border: 1px solid rgba(255,255,255,.08);
  border-top: 3px solid var(--green-light);
}
.history-highlight strong {
  display: block;
  margin-bottom: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.45rem;
  color: var(--white);
  text-transform: uppercase;
}
.history-highlight span {
  color: rgba(255,255,255,.76);
  line-height: 1.7;
}
@media (max-width: 980px) {
  .history-layout { grid-template-columns: 1fr; }
  .history-timeline { position: static; }
}
@media (max-width: 768px) {
  .history-section { padding: 48px 24px; }
  .history-article { padding: 26px 22px; }
  .history-timeline { padding: 22px; }
}


/* ── JUGENDARBEIT ── */
.youth-header,
.membership-header {
  background:
    linear-gradient(135deg, rgba(7,21,13,.98), rgba(18,53,33,.94) 52%, rgba(8,8,8,.98)),
    radial-gradient(circle at 86% 30%, rgba(204,0,0,.14), transparent 32%);
}
.youth-section,
.membership-section {
  background: linear-gradient(180deg, #111 0%, #0d0d0d 100%);
}
.youth-wrapper,
.membership-wrapper {
  max-width: 1180px;
  margin: 0 auto;
}
.youth-lead-card,
.membership-lead-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 32px;
  align-items: center;
  padding: 34px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 25%, rgba(204,0,0,.12), transparent 28%),
    linear-gradient(145deg, rgba(26,74,46,.78), rgba(8,24,14,.98));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 44px rgba(0,0,0,.26);
}
.youth-lead-card h2,
.membership-lead-card h2,
.youth-text-panel h2,
.youth-contact-panel h2,
.membership-contact-card h2,
.document-body h2 {
  margin-bottom: 14px;
  font-family: 'Oswald', sans-serif;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.08;
}
.youth-lead-card h2,
.membership-lead-card h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}
.youth-lead-card p,
.membership-lead-card p,
.youth-card p,
.youth-text-panel p,
.youth-contact-panel p,
.membership-steps p,
.document-body p,
.membership-contact-card p {
  color: rgba(255,255,255,.76);
  line-height: 1.8;
}
.youth-lead-card p + p,
.youth-text-panel p + p { margin-top: 14px; }
.youth-badge {
  padding: 26px 22px;
  border-radius: 8px;
  background: rgba(5,16,10,.62);
  border: 1px solid rgba(255,255,255,.1);
  text-align: center;
}
.youth-badge span,
.youth-badge strong,
.youth-badge em { display: block; }
.youth-badge span {
  color: var(--red);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: .18em;
}
.youth-badge strong {
  margin-top: 4px;
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  text-transform: uppercase;
}
.youth-badge em {
  margin-top: 10px;
  color: rgba(255,255,255,.64);
  font-style: normal;
  line-height: 1.5;
}
.youth-card-grid,
.membership-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}
.youth-card,
.membership-steps article {
  padding: 26px;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(21,21,21,.98), rgba(13,13,13,.98));
  border: 1px solid rgba(255,255,255,.08);
  border-top: 3px solid var(--green-light);
}
.youth-card span,
.membership-steps span {
  display: block;
  margin-bottom: 14px;
  color: var(--red);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: .12em;
}
.youth-card h3,
.membership-steps h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
}
.youth-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  margin-top: 28px;
}
.youth-text-panel,
.youth-contact-panel,
.membership-contact-card {
  padding: 32px;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(21,21,21,.99), rgba(13,13,13,.99));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 44px rgba(0,0,0,.24);
}
.youth-text-panel { border-left: 4px solid var(--red); }
.youth-contact-panel { border-left: 4px solid var(--green-light); }
.contact-mail-large,
.membership-contact-card a {
  display: inline-block;
  margin-top: 18px;
  color: var(--white);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  overflow-wrap: anywhere;
}
.contact-mail-large:hover,
.membership-contact-card a:hover { color: var(--red); }

/* ── MITGLIEDSCHAFT ── */
.membership-lead-card {
  grid-template-columns: minmax(0, 1fr) auto;
}
.document-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}
.document-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 22px;
  padding: 28px;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(26,74,46,.58), rgba(8,24,14,.98));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 44px rgba(0,0,0,.24);
}
.document-icon {
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(204,0,0,.14);
  border: 1px solid rgba(204,0,0,.32);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: .08em;
}
.document-body .btn { margin-top: 22px; }
.membership-contact-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  border-left: 4px solid var(--red);
}
@media (max-width: 980px) {
  .youth-lead-card,
  .membership-lead-card,
  .youth-content-grid,
  .document-grid,
  .membership-contact-card { grid-template-columns: 1fr; }
  .membership-contact-card { display: block; }
  .youth-card-grid,
  .membership-steps { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .youth-section,
  .membership-section { padding: 48px 24px; }
  .youth-lead-card,
  .membership-lead-card,
  .youth-text-panel,
  .youth-contact-panel,
  .membership-contact-card,
  .document-card { padding: 24px; }
  .document-card { grid-template-columns: 1fr; }
}

/* ── LINKS SEITE ── */
.links-header {
  background:
    radial-gradient(circle at 82% 20%, rgba(204,0,0,.14), transparent 30%),
    linear-gradient(135deg, #07150d, #123521 56%, #080808);
}
.links-section {
  background: linear-gradient(180deg, #111 0%, #0d0d0d 100%);
}
.links-wrapper {
  max-width: 1180px;
  margin: 0 auto;
}
.links-lead-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  margin-bottom: 30px;
  padding: 34px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 35%, rgba(204,0,0,.12), transparent 28%),
    linear-gradient(145deg, rgba(26,74,46,.82), rgba(8,24,14,.98));
  border: 1px solid rgba(255,255,255,.08);
  border-left: 4px solid var(--red);
  box-shadow: 0 18px 44px rgba(0,0,0,.26);
}
.links-lead-card h2,
.links-category-head h2,
.link-card h3 {
  font-family: 'Oswald', sans-serif;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.08;
}
.links-lead-card h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3vw, 3rem);
}
.links-lead-card p {
  max-width: 760px;
  color: rgba(255,255,255,.76);
  line-height: 1.8;
}
.links-category {
  margin-top: 28px;
  padding: 30px;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(21,21,21,.99), rgba(13,13,13,.99));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 44px rgba(0,0,0,.24);
}
.links-category-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.links-category-head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: .04em;
}
.links-category-head h2 {
  font-size: clamp(1.5rem, 2.3vw, 2.2rem);
}
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.link-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 128px;
  padding: 22px;
  color: inherit;
  text-decoration: none;
  border-radius: 7px;
  background: linear-gradient(145deg, rgba(26,74,46,.72), rgba(8,24,14,.98));
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.link-card:hover,
.link-card:focus {
  transform: translateY(-3px);
  border-color: rgba(204,0,0,.62);
  box-shadow: 0 14px 34px rgba(0,0,0,.32);
  outline: none;
}
.link-card h3 {
  margin-bottom: 8px;
  font-size: 1.28rem;
}
.link-card p {
  color: rgba(255,255,255,.72);
  line-height: 1.6;
  font-size: .92rem;
}
.link-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 46px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--white);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.link-card:hover > span,
.link-card:focus > span {
  background: var(--red);
  border-color: var(--red);
  transform: translateX(4px);
}
@media (max-width: 768px) {
  .links-section { padding: 48px 24px; }
  .links-lead-card,
  .links-category { padding: 24px; }
  .links-lead-card { flex-direction: column; align-items: flex-start; }
  .links-grid { grid-template-columns: 1fr; }
}


/* ── SPONSOREN SEITE ── */
.sponsors-header {
  background:
    radial-gradient(circle at 10% 6%, rgba(26,74,46,.38), transparent 30%),
    radial-gradient(circle at 88% 0%, rgba(204,0,0,.18), transparent 24%),
    linear-gradient(135deg,#07150d,#111 58%,#080808);
}
.sponsors-page-section {
  padding: 54px 60px 80px;
  background:
    radial-gradient(circle at 8% 0%, rgba(26,74,46,.16), transparent 34%),
    linear-gradient(180deg, #111 0%, #0d0d0d 100%);
}
.sponsors-coded-board {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 34px 38px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  background:
    radial-gradient(circle at 4% 0%, rgba(255,255,255,.055), transparent 24%),
    radial-gradient(circle at 96% 0%, rgba(26,74,46,.22), transparent 30%),
    linear-gradient(135deg, rgba(14,18,16,.96), rgba(9,13,11,.98));
  box-shadow: 0 28px 70px rgba(0,0,0,.42);
  overflow: hidden;
  position: relative;
}
.sponsors-coded-board::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255,255,255,.025) 50%, transparent 100%);
}
.sponsors-board-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--green-light);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-size: .9rem;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.sponsors-board-title span {
  width: 72px;
  height: 1px;
  background: rgba(255,255,255,.25);
}
.sponsors-coded-board h2 {
  position: relative;
  z-index: 1;
  color: var(--white);
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 0;
  text-shadow: 0 8px 20px rgba(0,0,0,.45);
}
.sponsors-coded-board h2::before,
.sponsors-coded-board h2::after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 4px;
  background: var(--red);
  vertical-align: middle;
  margin: 0 18px;
  transform: translateY(-6px);
}
.sponsors-coded-board > p {
  position: relative;
  z-index: 1;
  text-align: center;
  color: rgba(255,255,255,.68);
  font-size: 1.08rem;
  margin: 14px 0 30px;
}
.sponsor-row-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sponsor-row {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr) 154px;
  min-height: 76px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.04), transparent 40%),
    rgba(255,255,255,.035);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.16);
}
.sponsor-logo-box {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  background: #f7f7f7;
  border-right: 3px solid var(--green-light);
}
.sponsor-row:nth-child(n+3) .sponsor-logo-box { border-right-color: var(--red); }
.sponsor-logo-box img {
  max-width: 100%;
  max-height: 62px;
  object-fit: contain;
  display: block;
}
.sponsor-name {
  padding: 0 24px;
  color: rgba(255,255,255,.9);
  font-family: 'Oswald', sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: .015em;
}
.sponsor-website-btn {
  justify-self: stretch;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: rgba(255,255,255,.88);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: .94rem;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(15,45,27,.96), rgba(7,23,14,.96));
  border-left: 1px solid rgba(255,255,255,.1);
  transition: color .18s ease, background .18s ease, box-shadow .18s ease;
}
.sponsor-website-btn span {
  color: var(--red);
  font-size: 1.35rem;
  line-height: 1;
  transition: transform .18s ease, color .18s ease;
}
.sponsor-website-btn:hover,
.sponsor-website-btn:focus {
  color: var(--white);
  background: linear-gradient(135deg, rgba(204,0,0,.94), rgba(20,71,41,.96));
  box-shadow: inset 3px 0 0 var(--red), 0 0 20px rgba(204,0,0,.18);
}
.sponsor-website-btn:hover span,
.sponsor-website-btn:focus span {
  color: var(--white);
  transform: translateX(4px);
}
.sponsor-next-note {
  max-width: 1180px;
  margin: 18px auto 0;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,.08);
  border-left: 3px solid var(--green-light);
  border-radius: 8px;
  color: rgba(255,255,255,.58);
  background: rgba(255,255,255,.035);
  font-size: .94rem;
}
@media (max-width: 940px) {
  .sponsor-row {
    grid-template-columns: 220px minmax(0, 1fr);
  }
  .sponsor-website-btn {
    grid-column: 1 / -1;
    min-height: 48px;
    border-top: 1px solid rgba(255,255,255,.1);
    border-left: 0;
  }
}
@media (max-width: 768px) {
  .sponsors-page-section { padding: 38px 20px 58px; }
  .sponsors-coded-board { padding: 26px 18px 28px; }
  .sponsors-coded-board h2::before,
  .sponsors-coded-board h2::after { display: none; }
  .sponsors-board-title span { width: 38px; }
  .sponsor-row { grid-template-columns: 1fr; }
  .sponsor-logo-box { border-right: 0; border-bottom: 3px solid var(--green-light); }
  .sponsor-row:nth-child(n+3) .sponsor-logo-box { border-bottom-color: var(--red); }
  .sponsor-name { padding: 16px 18px; text-align: center; }
}

/* ── MANNSCHAFTEN ── */
.team-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.team-card { overflow: hidden; }
.team-number {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(204,0,0,.88);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(204,0,0,.08);
}
.simple-page-card { max-width: 980px; }

/* ── 1. MANNSCHAFT DETAILSEITE ── */
.team-page-hero {
  margin-top: 64px;
  padding: 72px 60px 50px;
  background:
    radial-gradient(circle at 18% 0%, rgba(36,96,56,.42), transparent 34%),
    linear-gradient(135deg, rgba(9,39,23,.96), rgba(10,10,10,.98));
  border-bottom: 2px solid var(--red);
}
.first-team-section {
  padding: 54px 60px 84px;
  background: var(--dark);
}
.team-top-layout {
  max-width: 1280px;
  margin: 0 auto 46px;
  display: grid;
  grid-template-columns: 430px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}
.pitch-card,
.team-info-panel,
.squad-panel,
.staff-photo-card,
.staff-detail-card,
.sponsor-thanks-card,
.training-panel {
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(26,74,46,.82), rgba(12,34,22,.95)),
    #102417;
  box-shadow: 0 18px 44px rgba(0,0,0,.32);
  overflow: hidden;
}
.pitch-card { padding: 20px; }
.pitch-title {
  font-family: 'Oswald', sans-serif;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .11em;
  margin-bottom: 14px;
}
.football-pitch {
  position: relative;
  aspect-ratio: 3 / 4;
  min-height: 520px;
  border: 2px solid rgba(255,255,255,.18);
  border-radius: 12px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.04) 1px, transparent 1px),
    repeating-linear-gradient(90deg, rgba(36,96,56,.95) 0 48px, rgba(26,74,46,.96) 48px 96px);
  background-size: 40px 40px, 40px 40px, auto;
}
.football-pitch::before,
.football-pitch::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 46%;
  height: 13%;
  border: 2px solid rgba(255,255,255,.22);
}
.football-pitch::before { top: -2px; border-top: 0; border-radius: 0 0 10px 10px; }
.football-pitch::after { bottom: -2px; border-bottom: 0; border-radius: 10px 10px 0 0; }
.pitch-line.half {
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 2px;
  background: rgba(255,255,255,.18);
}
.pitch-circle {
  position: absolute;
  left: 50%; top: 50%;
  width: 92px; height: 92px;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255,255,255,.18);
  border-radius: 50%;
}
.player-token {
  position: absolute;
  width: 76px;
  min-height: 82px;
  transform: translate(-50%, -50%);
  padding: 9px 7px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 4px;
  color: var(--white);
  background:
    linear-gradient(155deg, rgba(18,18,18,.96), rgba(44,44,44,.94)),
    #1b1b1b;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 14px 14px 20px 20px;
  box-shadow: inset 0 0 0 2px rgba(36,96,56,.35), 0 10px 18px rgba(0,0,0,.32);
}
.player-token::before {
  content: "FSV";
  font-family: 'Oswald', sans-serif;
  font-size: .66rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  letter-spacing: .08em;
}
.player-token span {
  color: var(--red);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: .76rem;
}
.player-token strong {
  font-family: 'Oswald', sans-serif;
  font-size: .86rem;
  line-height: 1.05;
  color: var(--white);
}
.pos-gk { left: 50%; top: 90%; }
.pos-lb { left: 18%; top: 72%; }
.pos-cb1 { left: 39%; top: 76%; }
.pos-cb2 { left: 61%; top: 76%; }
.pos-rb { left: 82%; top: 72%; }
.pos-cm1 { left: 27%; top: 50%; }
.pos-cm2 { left: 50%; top: 47%; }
.pos-cm3 { left: 73%; top: 50%; }
.pos-lw { left: 22%; top: 25%; }
.pos-st { left: 50%; top: 18%; }
.pos-rw { left: 78%; top: 25%; }
.team-info-stack { display: flex; flex-direction: column; gap: 22px; }
.team-info-panel { padding: 30px; }
.team-info-panel h2,
.squad-panel h2,
.staff-detail-card h2,
.training-panel h2 {
  font-family: 'Oswald', sans-serif;
  color: var(--white);
  font-size: 2rem;
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0 0 22px;
}
.lineup-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.lineup-columns h3,
.squad-group h3 {
  font-family: 'Oswald', sans-serif;
  color: var(--white);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.clean-list { list-style: none; margin: 0; padding: 0; }
.compact-list li { color: rgba(255,255,255,.72); line-height: 1.7; margin-bottom: 8px; }
.lineup-columns p,
.squad-group p,
.training-note,
.sponsor-thanks-card p { color: rgba(255,255,255,.72); line-height: 1.75; }
.staff-grid-mini,
.role-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.staff-grid-mini div,
.role-list div,
.training-row {
  padding: 14px 16px;
  background: rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.08);
  border-left: 3px solid var(--red);
  border-radius: 8px;
}
.staff-grid-mini span,
.role-list span,
.training-row span {
  display: block;
  color: var(--red);
  font-family: 'Oswald', sans-serif;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 4px;
}
.staff-grid-mini strong,
.role-list strong,
.training-row strong { color: var(--white); }
.team-photo-block,
.squad-panel,
.staff-sponsor-layout,
.training-panel {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.team-photo-block {
  margin-bottom: 28px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 20px 48px rgba(0,0,0,.36);
  background: #0a0a0a;
}
.team-photo-block img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.squad-panel { padding: 32px; margin-bottom: 36px; }
.squad-panel-head {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
}
.fussballde-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 210px;
  padding: 12px 18px;
  color: var(--white);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,.82);
  border-radius: 999px;
  background: linear-gradient(135deg, #1f7b46, #0f4f2d);
  box-shadow: 0 14px 26px rgba(0,0,0,.25);
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.fussballde-btn span { font-size: 1.45rem; line-height: 1; }
.fussballde-btn:hover,
.fussballde-btn:focus {
  background: linear-gradient(135deg, var(--red), #0f4f2d);
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(204,0,0,.22);
}
.squad-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.squad-group {
  padding: 20px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
}
.squad-group.wide { grid-column: 1 / -1; }
.staff-sponsor-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr) 280px;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 36px;
}
.staff-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}
.staff-detail-card { padding: 30px; }
.sponsor-thanks-card {
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.lvm-logo-link {
  display: block;
  padding: 16px;
  background: #fff;
  border-radius: 10px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.lvm-logo-link:hover { transform: translateY(-3px); box-shadow: 0 0 24px rgba(204,0,0,.24); }
.lvm-logo-link img { max-width: 190px; display: block; }
.text-link-clean {
  color: var(--red);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.text-link-clean:hover { color: var(--white); }
.training-panel { padding: 34px; }
.training-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 22px 0 18px; }
.training-row em { display: block; color: rgba(255,255,255,.62); font-style: normal; margin-top: 6px; line-height: 1.45; }
@media (max-width: 1160px) {
  .team-top-layout { grid-template-columns: 1fr; }
  .football-pitch { min-height: 620px; }
  .staff-sponsor-layout { grid-template-columns: 320px 1fr; }
  .sponsor-thanks-card { grid-column: 1 / -1; }
}
@media (max-width: 820px) {
  .first-team-section, .team-page-hero { padding-left: 22px; padding-right: 22px; }
  .lineup-columns, .squad-groups, .staff-grid-mini, .role-list, .training-grid { grid-template-columns: 1fr; }
  .squad-panel-head { flex-direction: column; }
  .fussballde-btn { width: 100%; }
  .staff-sponsor-layout { grid-template-columns: 1fr; }
  .staff-photo-card img { min-height: 0; }
  .football-pitch { min-height: 520px; }
  .player-token { width: 68px; min-height: 76px; }
  .player-token strong { font-size: .78rem; }
}


/* ── 2. MANNSCHAFT ── */
.team-content-section {
  padding: 54px 60px 84px;
  background: var(--dark);
}
.second-team-hero {
  background:
    radial-gradient(circle at 84% 18%, rgba(204,0,0,.15), transparent 28%),
    radial-gradient(circle at 14% 0%, rgba(36,96,56,.42), transparent 34%),
    linear-gradient(135deg, rgba(10,40,24,.96), rgba(10,10,10,.98));
}
.team-support-layout {
  max-width: 1280px;
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 24px;
  align-items: stretch;
}
.support-staff-card,
.support-sponsors-card {
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(26,74,46,.82), rgba(12,34,22,.95)),
    #102417;
  box-shadow: 0 18px 44px rgba(0,0,0,.32);
}
.support-staff-card {
  padding: 30px;
}
.support-sponsors-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.support-staff-card h2,
.support-sponsors-card h2 {
  font-family: 'Oswald', sans-serif;
  color: var(--white);
  font-size: 2rem;
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0 0 22px;
}
.support-staff-card p,
.support-sponsors-card p,
.support-meta {
  color: rgba(255,255,255,.72);
  line-height: 1.75;
}
.support-logo-grid {
  display: grid;
  gap: 18px;
}
.support-logo-card {
  padding: 18px;
  background: rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
}
.support-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-family: 'Oswald', sans-serif;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.support-logo-link {
  display: block;
  padding: 16px;
  border-radius: 10px;
  background: #fff;
  transition: transform .18s ease, box-shadow .18s ease;
}
.support-logo-link:hover,
.support-logo-link:focus {
  transform: translateY(-3px);
  box-shadow: 0 0 24px rgba(204,0,0,.24);
}
.support-logo-link img {
  width: 100%;
  max-height: 112px;
  object-fit: contain;
  display: block;
}
.support-meta strong {
  color: var(--white);
}
.support-actions {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
@media (max-width: 1160px) {
  .team-support-layout { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .team-content-section, .team-page-hero { padding-left: 22px; padding-right: 22px; }
  .support-staff-card, .support-sponsors-card { padding: 24px; }
}


/* ── ALTHERREN SEITE ── */
.ah-header {
  background:
    radial-gradient(circle at 84% 18%, rgba(204,0,0,.16), transparent 28%),
    radial-gradient(circle at 15% 5%, rgba(36,96,56,.55), transparent 34%),
    linear-gradient(135deg, rgba(7,21,13,.98), rgba(18,53,33,.92) 55%, rgba(8,8,8,.98));
}

.ah-section {
  background: linear-gradient(180deg, #111 0%, #0d0d0d 100%);
}

.ah-wrapper {
  max-width: 1220px;
  margin: 0 auto;
}

.ah-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 26px;
  align-items: stretch;
  margin-bottom: 32px;
}

.ah-lead-card,
.ah-contact-card,
.ah-teamlinks,
.ah-training-card,
.ah-note-card {
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(26,74,46,.74), rgba(8,24,14,.98));
  box-shadow: 0 18px 44px rgba(0,0,0,.30);
}

.ah-lead-card,
.ah-contact-card,
.ah-teamlinks,
.ah-training-card,
.ah-note-card {
  padding: 32px;
}

.ah-lead-card h2,
.ah-contact-card h2,
.ah-section-head h2,
.ah-training-card h2,
.ah-note-card h2 {
  font-family: 'Oswald', sans-serif;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.08;
}

.ah-lead-card h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 18px;
}

.ah-contact-card h2,
.ah-section-head h2,
.ah-training-card h2,
.ah-note-card h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  margin-bottom: 14px;
}

.ah-lead-card p,
.ah-contact-card p,
.ah-section-head p,
.ah-team-card p,
.ah-note-card p {
  color: rgba(255,255,255,.75);
  line-height: 1.8;
}

.ah-lead-card p + p {
  margin-top: 14px;
}

.ah-lead-card .btn {
  margin-top: 26px;
}

.ah-contact-card {
  border-left: 4px solid var(--red);
}

.ah-contact-icon {
  width: 74px;
  height: 74px;
  margin-bottom: 22px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: .06em;
  box-shadow: inset 0 0 0 2px rgba(36,96,56,.28);
}

.ah-mail-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--white);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  overflow-wrap: anywhere;
}

.ah-mail-link:hover {
  color: var(--red);
}

.ah-teamlinks {
  background:
    radial-gradient(circle at 96% 12%, rgba(204,0,0,.12), transparent 25%),
    linear-gradient(145deg, rgba(19,19,19,.98), rgba(8,24,14,.96));
  margin-bottom: 32px;
}

.ah-section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}

.ah-section-head p {
  max-width: 420px;
}

.ah-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ah-team-card {
  position: relative;
  padding: 26px;
  border-radius: 9px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}

.ah-team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
}

.ah-team-number {
  color: rgba(255,255,255,.16);
  font-family: 'Oswald', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}

.ah-team-card h3 {
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-size: 1.55rem;
  margin-bottom: 10px;
}

.ah-team-button {
  margin-top: 22px;
  width: 100%;
  min-width: 0;
}

.ah-bottom-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 26px;
}

.ah-training-card {
  border-left: 4px solid var(--green-light);
}

.ah-note-card {
  border-left: 4px solid var(--red);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ah-note-card .btn {
  margin-top: 22px;
  width: fit-content;
}

.ah-training-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.ah-training-row {
  display: grid;
  grid-template-columns: 170px 180px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 8px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.08);
  border-left: 3px solid var(--red);
}

.ah-training-row span {
  color: var(--red);
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .8rem;
}

.ah-training-row strong {
  color: var(--white);
}

.ah-training-row em {
  color: rgba(255,255,255,.68);
  font-style: normal;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .ah-intro-grid,
  .ah-bottom-grid,
  .ah-team-grid {
    grid-template-columns: 1fr;
  }

  .ah-section-head {
    display: block;
  }

  .ah-section-head p {
    margin-top: 12px;
    max-width: none;
  }

  .ah-training-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 768px) {
  .ah-section {
    padding: 48px 24px;
  }

  .ah-lead-card,
  .ah-contact-card,
  .ah-teamlinks,
  .ah-training-card,
  .ah-note-card,
  .ah-team-card {
    padding: 24px;
  }
}


/* ── FUSSBALL.DE BUTTON CLEANUP ── */
.teamsite-banner {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 210px;
  padding: 12px 18px;
  color: var(--white) !important;
  text-decoration: none !important;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,.82);
  border-radius: 999px;
  background: linear-gradient(135deg, #1f7b46, #0f4f2d);
  box-shadow: 0 14px 26px rgba(0,0,0,.25);
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.teamsite-banner span {
  font-size: 1.45rem;
  line-height: 1;
}
.teamsite-banner:hover,
.teamsite-banner:focus {
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--red), #0f4f2d);
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(204,0,0,.22);
}
.fussballde-btn {
  box-shadow: 0 14px 26px rgba(0,0,0,.25) !important;
}
.fussballde-btn:hover,
.fussballde-btn:focus {
  box-shadow: 0 0 24px rgba(204,0,0,.22) !important;
}


/* ── SONSTIGE MANNSCHAFTEN ── */
.other-header {
  background:
    radial-gradient(circle at 84% 18%, rgba(204,0,0,.15), transparent 28%),
    radial-gradient(circle at 12% 0%, rgba(36,96,56,.46), transparent 34%),
    linear-gradient(135deg, rgba(7,21,13,.98), rgba(18,53,33,.92) 55%, rgba(8,8,8,.98));
}

.other-section {
  background: linear-gradient(180deg, #111 0%, #0d0d0d 100%);
}

.other-wrapper {
  max-width: 1220px;
  margin: 0 auto;
}

.other-lead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  margin-bottom: 32px;
  padding: 32px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 94% 18%, rgba(204,0,0,.10), transparent 24%),
    linear-gradient(145deg, rgba(26,74,46,.74), rgba(8,24,14,.98));
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 18px 44px rgba(0,0,0,.30);
}

.other-lead h2 {
  margin-bottom: 12px;
  font-family: 'Oswald', sans-serif;
  color: var(--white);
  text-transform: uppercase;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.other-lead p {
  max-width: 760px;
  color: rgba(255,255,255,.75);
  line-height: 1.8;
}

.other-team-list {
  display: grid;
  gap: 22px;
}

.other-team-card {
  position: relative;
  padding: 28px;
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(19,19,19,.98), rgba(8,24,14,.96));
  border: 1px solid rgba(255,255,255,.09);
  border-left: 4px solid var(--red);
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
  overflow: hidden;
}

.other-team-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--red);
}

.other-team-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 22px;
}

.other-team-kicker {
  margin-bottom: 8px;
  color: var(--red);
  font-family: 'Oswald', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.other-team-card h2 {
  font-family: 'Oswald', sans-serif;
  color: var(--white);
  text-transform: uppercase;
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  line-height: 1.05;
}

.other-age-badge {
  flex: 0 0 auto;
  min-width: 74px;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--white);
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .06em;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: inset 0 0 0 2px rgba(36,96,56,.25);
}

.other-team-content {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, .8fr) auto;
  gap: 16px;
  align-items: stretch;
  margin-bottom: 20px;
}

.other-info-block {
  padding: 16px 18px;
  border-radius: 8px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.08);
}

.other-info-block span,
.other-training-title {
  display: block;
  margin-bottom: 7px;
  color: var(--red);
  font-family: 'Oswald', sans-serif;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.other-info-block strong {
  display: block;
  color: rgba(255,255,255,.86);
  line-height: 1.65;
}

.other-info-block a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.other-info-block a:hover {
  color: var(--red);
}

.other-team-button {
  align-self: center;
  min-width: 220px;
  height: fit-content;
  white-space: nowrap;
}

.other-training-block {
  padding: 18px;
  border-radius: 8px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.07);
}

.other-training-list {
  display: grid;
  gap: 10px;
}

.other-training-row {
  display: grid;
  grid-template-columns: 150px 170px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 13px 15px;
  border-radius: 7px;
  background: rgba(0,0,0,.20);
  border-left: 3px solid var(--green-light);
}

.other-training-row span {
  color: var(--red);
  font-family: 'Oswald', sans-serif;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.other-training-row strong {
  color: var(--white);
}

.other-training-row em {
  color: rgba(255,255,255,.68);
  font-style: normal;
  line-height: 1.5;
}

@media (max-width: 1120px) {
  .other-team-content {
    grid-template-columns: 1fr;
  }

  .other-team-button {
    width: 100%;
  }
}

@media (max-width: 820px) {
  .other-section {
    padding: 48px 24px;
  }

  .other-lead,
  .other-team-card {
    padding: 24px;
  }

  .other-lead,
  .other-team-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .other-training-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}


/* ── SPIELPLAN HEADER ── */
.schedule-image-header {
  margin-top: 64px;
  width: 100%;
  height: clamp(230px, 23vw, 430px);
  overflow: hidden;
  background: #06130b;
  border-bottom: 2px solid rgba(204,0,0,.7);
}

.schedule-image-header img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 768px) {
  .schedule-image-header {
    height: clamp(190px, 45vw, 280px);
  }
}


/* ── KONTAKT / RECHTLICH ── */
.dropdown-menu-right {
  left: auto;
  right: 0;
}

.contact-header,
.legal-header {
  background:
    radial-gradient(circle at 86% 18%, rgba(204,0,0,.14), transparent 28%),
    radial-gradient(circle at 14% 0%, rgba(36,96,56,.44), transparent 34%),
    linear-gradient(135deg, rgba(7,21,13,.98), rgba(18,53,33,.92) 55%, rgba(8,8,8,.98));
}

.contact-section,
.legal-section {
  background: linear-gradient(180deg, #111 0%, #0d0d0d 100%);
}

.contact-wrapper,
.legal-wrapper {
  max-width: 1220px;
  margin: 0 auto;
}

.map-card {
  height: clamp(320px, 44vw, 540px);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 22px 52px rgba(0,0,0,.34);
  background: #0b1c12;
  margin-bottom: 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 22px;
  margin-bottom: 28px;
}

.contact-info-card,
.route-card,
.legal-block {
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(26,74,46,.74), rgba(8,24,14,.98));
  box-shadow: 0 18px 44px rgba(0,0,0,.30);
}

.contact-info-card,
.route-card,
.legal-block {
  padding: 30px;
}

.contact-info-card {
  border-left: 4px solid var(--red);
}

.contact-info-card h2,
.route-card h2,
.legal-block h2 {
  font-family: 'Oswald', sans-serif;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.08;
}

.contact-info-card h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  margin-bottom: 14px;
}

.route-card h2,
.legal-block h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  margin-bottom: 16px;
}

.contact-info-card p,
.route-card p,
.legal-block p {
  color: rgba(255,255,255,.75);
  line-height: 1.8;
}

.contact-action {
  display: inline-flex;
  margin-top: 18px;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.14);
}

.contact-action:hover {
  background: var(--red);
  border-color: var(--red);
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 22px;
  margin-top: 24px;
}

.route-block {
  padding: 22px;
  border-radius: 9px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.08);
  border-left: 3px solid var(--red);
}

.route-block h3,
.legal-block h3 {
  font-family: 'Oswald', sans-serif;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.route-block h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.route-block p + p {
  margin-top: 12px;
}

.legal-wrapper {
  display: grid;
  gap: 22px;
}

.legal-block {
  border-left: 4px solid var(--red);
}

.legal-block h3 {
  font-size: 1.2rem;
  margin: 18px 0 8px;
}

.legal-block h3:first-of-type {
  margin-top: 0;
}

.legal-block p + p {
  margin-top: 12px;
}

@media (max-width: 900px) {
  .contact-grid,
  .route-grid {
    grid-template-columns: 1fr;
  }

  .map-card {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .contact-section,
  .legal-section {
    padding: 48px 24px;
  }

  .contact-info-card,
  .route-card,
  .route-block,
  .legal-block {
    padding: 24px;
  }
}


/* ── KONTAKT DROPDOWN POSITION FIX ── */
nav .nav-dropdown .dropdown-menu-right {
  left: auto !important;
  right: 0 !important;
  width: 180px;
  transform: translateY(10px) !important;
}

nav .nav-dropdown:hover .dropdown-menu-right,
nav .nav-dropdown:focus-within .dropdown-menu-right {
  transform: translateY(0) !important;
}

nav .dropdown-menu-right::before {
  left: auto;
  right: 22px;
}

nav .dropdown-menu-right a {
  white-space: nowrap;
}


/* ── STARTSEITE FEINJUSTIERUNG ── */
.home-hero {
  min-height: 0;
  max-height: none;
}

.home-hero img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center top;
  transform: translateY(-18px);
  margin-bottom: 30px;
}

.home-hero .hero-overlay {
  height: 25%;
}

.home-intro-section {
  padding-top: 88px;
  padding-bottom: 104px;
}

.home-news-section {
  padding-top: 56px;
}

@media (max-width: 900px) {
  .home-hero img {
    height: auto;
    transform: translateY(-10px);
    margin-bottom: -10px;
  }

  .home-intro-section {
    padding-top: 72px;
    padding-bottom: 82px;
  }
}


/* ── SPONSOREN HEADER BILD ── */
.sponsors-image-header {
  margin-top: 64px;
  width: 100%;
  height: clamp(300px, 31vw, 520px);
  overflow: hidden;
  background: #06130b;
  border-bottom: 2px solid rgba(204,0,0,.7);
}

.sponsors-image-header img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 768px) {
  .sponsors-image-header {
    height: clamp(230px, 46vw, 340px);
  }
}


/* ── MANNSCHAFTEN HEADER & OVERVIEW UPDATE ── */
.teams-image-header {
  margin-top: 64px;
  width: 100%;
  height: clamp(300px, 30vw, 510px);
  overflow: hidden;
  background: #06130b;
  border-bottom: 2px solid rgba(204,0,0,.72);
}

.teams-image-header img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.teams-overview-section {
  position: relative;
  padding: 70px 60px 96px;
  min-height: calc(100vh - 64px - 330px);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(36,96,56,.18), transparent 30%),
    radial-gradient(circle at 78% 72%, rgba(204,0,0,.10), transparent 30%),
    linear-gradient(180deg, #111 0%, #0b0b0b 100%);
}

.teams-overview-bg {
  position: absolute;
  inset: 0;
  opacity: .24;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(255,255,255,.12) 50%, transparent 50.2%),
    radial-gradient(circle at center, transparent 0 9%, rgba(255,255,255,.12) 9.2% 9.7%, transparent 10%),
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 90px 90px, 90px 90px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
}

.teams-overview-shell {
  position: relative;
  max-width: 1420px;
  margin: 0 auto;
}

.teams-overview-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 34px;
  padding: 28px 30px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(26,74,46,.58), rgba(8,24,14,.88));
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 18px 44px rgba(0,0,0,.25);
}

.teams-overview-intro h2 {
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  line-height: 1;
  text-transform: uppercase;
}

.teams-overview-intro p {
  max-width: 460px;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}

.teams-modern-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.teams-modern-card {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-radius: 16px;
  background:
    linear-gradient(155deg, rgba(31,95,56,.92), rgba(9,28,17,.96) 72%),
    #102417;
  border: 1px solid rgba(255,255,255,.11);
  box-shadow: 0 22px 52px rgba(0,0,0,.34);
  isolation: isolate;
}

.teams-modern-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 12%, rgba(204,0,0,.30), transparent 26%),
    linear-gradient(135deg, rgba(255,255,255,.08), transparent 38%);
  opacity: .65;
  transition: opacity .22s ease, transform .22s ease;
}

.teams-modern-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 72px;
  height: 1px;
  background: linear-gradient(90deg, rgba(204,0,0,.95), transparent);
  opacity: .65;
}

.teams-modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,.44);
  border-color: rgba(204,0,0,.38);
}

.teams-modern-card:hover::before {
  opacity: .95;
  transform: scale(1.04);
}

.teams-modern-card .team-number {
  width: 60px;
  height: 60px;
  margin-bottom: 28px;
  box-shadow: 0 0 0 8px rgba(204,0,0,.10), 0 12px 28px rgba(0,0,0,.28);
}

.team-card-kicker {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,.60);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.teams-modern-card h2 {
  font-size: clamp(1.45rem, 1.8vw, 2rem);
  margin-bottom: 12px;
}

.teams-modern-card p {
  color: rgba(255,255,255,.76);
  line-height: 1.65;
}

.team-card-arrow {
  align-self: flex-start;
  margin-top: 24px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.20);
  transition: background .2s ease, border-color .2s ease;
}

.teams-modern-card:hover .team-card-arrow {
  background: var(--red);
  border-color: var(--red);
}

@media (max-width: 1280px) {
  .teams-modern-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .teams-image-header {
    height: clamp(230px, 46vw, 340px);
  }

  .teams-overview-section {
    padding: 48px 24px 72px;
  }

  .teams-overview-intro {
    flex-direction: column;
    align-items: flex-start;
  }

  .teams-modern-grid {
    grid-template-columns: 1fr;
  }

  .teams-modern-card {
    min-height: 230px;
  }
}


/* ── MANNSCHAFTEN KARTEN LAYOUT FIX ── */
.teams-overview-intro {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}

.teams-overview-intro p {
  display: none;
}

.teams-modern-grid {
  max-width: 1120px;
  margin: 0 auto;
  grid-template-columns: 1fr;
  gap: 16px;
}

.teams-modern-card {
  min-height: 132px;
  display: grid;
  grid-template-columns: 76px 190px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
}

.teams-modern-card::after {
  display: none;
}

.teams-modern-card .team-number {
  margin: 0;
}

.teams-modern-card .team-card-content {
  display: contents;
}

.teams-modern-card .team-card-kicker {
  grid-column: 2;
  align-self: end;
  margin: 0 0 7px;
}

.teams-modern-card h2 {
  grid-column: 2;
  align-self: start;
  margin: 0;
}

.teams-modern-card p {
  grid-column: 3;
  grid-row: 1 / span 2;
  max-width: 560px;
  margin: 0;
  align-self: center;
}

.team-card-arrow {
  display: none !important;
}

@media (max-width: 820px) {
  .teams-modern-card {
    min-height: 0;
    grid-template-columns: 64px 1fr;
    gap: 18px;
  }

  .teams-modern-card .team-card-kicker,
  .teams-modern-card h2 {
    grid-column: 2;
  }

  .teams-modern-card p {
    grid-column: 1 / -1;
    grid-row: auto;
    max-width: none;
    padding-top: 8px;
  }
}


/* ── MOBILE NAVIGATION & RESPONSIVE HEADER FIX ── */
.mobile-nav-toggle {
  display: none;
}

.mobile-overview-link {
  display: none !important;
}

@media (max-width: 920px) {
  body.nav-lock {
    overflow: hidden;
  }

  nav {
    height: 64px;
    padding: 0 20px;
  }

  .nav-logo {
    position: relative;
    z-index: 103;
  }

  .mobile-nav-toggle {
    position: relative;
    z-index: 103;
    display: inline-flex;
    width: 44px;
    height: 44px;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    cursor: pointer;
  }

  .mobile-nav-toggle span {
    width: 21px;
    height: 2px;
    display: block;
    background: var(--white);
    border-radius: 99px;
    transition: transform .2s ease, opacity .2s ease;
  }

  nav.mobile-open .mobile-nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  nav.mobile-open .mobile-nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  nav.mobile-open .mobile-nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  nav ul {
    position: fixed;
    inset: 64px 0 auto 0;
    height: calc(100vh - 64px);
    padding: 18px 20px 34px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background:
      radial-gradient(circle at 80% 12%, rgba(204,0,0,.14), transparent 28%),
      linear-gradient(180deg, rgba(5,18,10,.98), rgba(10,10,10,.99));
    border-top: 1px solid rgba(204,0,0,.55);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  nav.mobile-open ul {
    display: flex;
  }

  nav ul > li > a,
  .nav-item > a {
    width: 100%;
    height: auto;
    min-height: 48px;
    justify-content: space-between;
    padding: 14px 14px;
    border-radius: 10px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.07);
  }

  nav ul > li > a:hover,
  nav ul > li > a.active {
    background: rgba(204,0,0,.14);
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    display: none;
    margin: 6px 0 8px;
    padding: 8px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    border-radius: 12px;
    background: rgba(0,0,0,.28);
    box-shadow: none;
  }

  .dropdown-menu-right {
    left: auto !important;
    right: auto !important;
    width: 100%;
    transform: none !important;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    transform: none;
  }

  .nav-dropdown.mobile-submenu-open .dropdown-menu {
    display: grid;
    gap: 6px;
  }

  .dropdown-menu::before,
  .dropdown-menu-right::before {
    display: none;
  }

  .dropdown-menu a {
    min-height: 44px;
    padding: 12px 14px;
    border-radius: 9px;
    background: rgba(255,255,255,.045);
  }

  .mobile-overview-link {
    display: flex !important;
  }

  .nav-dropdown > a::after {
    transition: transform .18s ease;
  }

  .nav-dropdown.mobile-submenu-open > a::after {
    transform: rotate(225deg) translateY(-2px);
  }

  main {
    overflow-x: hidden;
  }

  section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .page-header {
    padding: 58px 24px 40px;
  }

  .schedule-image-header,
  .sponsors-image-header,
  .teams-image-header {
    height: auto;
    max-height: none;
    background: #06130b;
  }

  .schedule-image-header img,
  .sponsors-image-header img,
  .teams-image-header img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center center;
  }

  .team-page-hero {
    padding: 54px 24px 38px;
  }
}

@media (max-width: 560px) {
  nav {
    padding: 0 16px;
  }

  .nav-logo {
    font-size: 1rem;
  }

  .section-title,
  .page-title {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .page-intro,
  .section-intro {
    font-size: .92rem;
  }

  .home-hero img {
    width: 100%;
  }

  .contact-section,
  .legal-section,
  .other-section,
  .first-team-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .map-card {
    height: 310px;
  }
}
