:root {
  --bg: #080a12;
  --surface: #101421;
  --surface-2: #171c2b;
  --ink: #f7f8fc;
  --muted: #a9b0c3;
  --line: rgba(255, 255, 255, 0.12);
  --cyan: #35d2ff;
  --mint: #52f0b8;
  --pink: #ff6cab;
  --purple: #d600dab8;
  --yellow: #ffd166;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at 18% 0%, rgba(53, 210, 255, 0.18), transparent 34%),
    radial-gradient(circle at 88% 16%, rgba(255, 108, 171, 0.14), transparent 32%), var(--bg);
  color: var(--ink);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.shell { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.skip-link {
  position: fixed; left: 16px; top: 12px; z-index: 100;
  transform: translateY(-140%); background: var(--ink); color: #060812;
  padding: 10px 14px; border-radius: 6px; font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }
.site-header {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(8, 10, 18, 0.78);
  border-bottom: 1px solid var(--line);
}
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: 0; }
.brand img { height: 42px; object-fit: cover; border-radius: 8px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  min-height: 42px; display: inline-flex; align-items: center;
  padding: 0 12px; border-radius: 6px; color: var(--muted); font-weight: 700; font-size: 14px;
}
.nav-links a:hover, .nav-links a.is-active { color: var(--ink); background: rgba(255, 255, 255, 0.08); }
.nav-links .nav-cta { background: var(--cyan); color: #06111a; }
.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: var(--surface); border-radius: 6px; }
.nav-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--ink); }

.hero {
  min-height: calc(100vh - 76px);
  display: grid; align-items: center;
  padding: 64px 0 42px;
}
.hero-home {
  position: relative; overflow: hidden;
}
.hero-home::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 10, 18, 0.96) 0%, rgba(8, 10, 18, 0.74) 43%, rgba(8, 10, 18, 0.34) 100%),
    url("https://communityflow.de/assets/blue_bg.jpg") center / cover no-repeat;
}
.hero-home::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(circle at 18% 12%, rgba(53, 210, 255, 0.24), transparent 34%);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr); gap: 46px; align-items: center; }
.hero-stage {
  position: relative; min-height: calc(100vh - 160px); display: grid; align-content: center;
  padding: 52px 0 128px;
}
.hero-copy {
  width: min(780px, 100%); position: relative; z-index: 2;
}
.hero-strip {
  position: absolute; left: 0; right: 0; bottom: 34px; z-index: 3;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px;
  border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
  background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(14px);
}
.hero-strip div {
  min-height: 96px; display: grid; align-content: center; gap: 6px; padding: 18px;
  background: rgba(16, 20, 33, 0.74);
}
.hero-strip strong { font-size: 24px; line-height: 1; }
.hero-strip span { color: var(--muted); font-size: 13px; font-weight: 800; }
.eyebrow { color: var(--mint); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(44px, 8vw, 88px); line-height: 0.95; letter-spacing: 0; margin-bottom: 22px; }
h2 { font-size: clamp(30px, 4.8vw, 54px); line-height: 1.02; letter-spacing: 0; margin-bottom: 14px; }
h3 { font-size: 20px; margin-bottom: 8px; }
.lead { color: #dfe4f4; font-size: clamp(18px, 2.1vw, 23px); line-height: 1.55; max-width: 760px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 0 18px; border-radius: 7px; border: 1px solid var(--line); font-weight: 800; cursor: pointer;
}
.button.primary { background: var(--cyan); color: #06111a; border-color: transparent; }
.button.secondary { background: rgba(255, 255, 255, 0.08); color: var(--ink); }
.button.dark { background: #080a12; color: var(--ink); }
.hero-panel {
  border: 1px solid var(--line); background: linear-gradient(145deg, rgba(23, 28, 43, 0.92), rgba(16, 20, 33, 0.72));
  border-radius: 8px; padding: 22px; box-shadow: var(--shadow);
}
.hero-video {
  aspect-ratio: 16 / 9; border-radius: 8px; overflow: hidden; border: 1px solid var(--line);
  background: #050711; margin-bottom: 14px;
}
.hero-video iframe {
  width: 100%; height: 100%; border: 0; display: block;
}
.metric-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.metric { min-height: 132px; border-radius: 8px; background: rgba(255,255,255,0.07); padding: 18px; border: 1px solid var(--line); }
.metric strong { display: block; font-size: 36px; line-height: 1; }
.metric span { color: var(--muted); font-weight: 700; font-size: 13px; }

.section { padding: 86px 0; }
.section.alt { background: rgba(255, 255, 255, 0.035); border-block: 1px solid var(--line); }
.section-head { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 28px; }
.section-head p { color: var(--muted); max-width: 620px; line-height: 1.7; margin-bottom: 0; }
.about-layout {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr); gap: 22px; align-items: start;
}
.about-copy {
  color: #dfe4f4; line-height: 1.75; font-size: 17px;
  padding: 22px; border: 1px solid var(--line); border-radius: 8px;
  background: rgba(16, 20, 33, 0.62);
}
.about-copy p {
  margin: 0 0 16px;
}
.about-copy p:last-child {
  margin-bottom: 0;
}
.about-video {
  margin-bottom: 0; box-shadow: var(--shadow);
}
.grid { display: grid; gap: 16px; }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card, .form-panel, .talent-card {
  background: rgba(16, 20, 33, 0.84); border: 1px solid var(--line); border-radius: 8px; padding: 20px;
}
.card p, .talent-card p { color: var(--muted); line-height: 1.65; margin-bottom: 0; }
.icon {
  width: 45px; height: 45px; border-radius: 7px; display: grid; place-items: center;
  margin-bottom: 16px; color: #06111a; background: var(--mint); font-weight: 900; font-size: 30px;
}
.icon.purple {
  background: rgba(214, 0, 218, 0.1) !important;
  border: 1px solid rgba(214, 0, 218, 1) !important;
  color: rgba(214, 0, 218, 1) !important;
}

.icon.pink {
  background: rgba(255, 108, 171, 0.1) !important;
  border: 1px solid rgba(255, 108, 171, 1) !important;
  color: rgba(255, 108, 171, 1) !important;
}

.icon.cyan {
  background: rgba(53, 210, 255, 0.1) !important;
  border: 1px solid rgba(53, 210, 255, 1) !important;
  color: rgba(53, 210, 255, 1) !important;
}

.icon.yellow {
  background: rgba(255, 209, 102, 0.1) !important;
  border: 1px solid rgba(255, 209, 102, 1) !important;
  color: rgba(255, 209, 102, 1) !important;
}

.band {
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
  padding: 30px; border-radius: 8px; background: linear-gradient(110deg, var(--cyan), var(--mint)); color: #06111a;
}
.band p { margin: 0; max-width: 720px; color: rgba(6, 17, 26, 0.78); font-weight: 600; }

.page-hero { padding: 74px 0 36px; }
.page-hero h1 { font-size: clamp(42px, 6vw, 72px); }
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 24px; }
.filter, .search {
  min-height: 42px; border: 1px solid var(--line); border-radius: 7px;
  background: rgba(255, 255, 255, 0.06); color: var(--ink); padding: 0 13px; font-weight: 700;
}
.filter.is-selected { background: var(--cyan); color: #06111a; border-color: transparent; }
.search { min-width: min(360px, 100%); font: inherit; }
.talent-card { min-height: 338px; display: flex; flex-direction: column; justify-content: flex-start; overflow: hidden; padding: 18px; }
.talent-card:hover { transform: translateY(-4px); border-color: rgba(53, 210, 255, 0.58); }
.talent-visual {
  width: min(200px, 100%); aspect-ratio: 1 / 1; display: grid; place-items: center; margin: 0 auto 18px;
  border-radius: 8px; overflow: hidden;
  background:
    linear-gradient(145deg, rgba(53, 210, 255, 0.92), rgba(255, 108, 171, 0.82)),
    radial-gradient(circle at 22% 18%, rgba(255,255,255,0.36), transparent 30%);
}
.talent-body { width: 100%; }
.talent-top { display: flex; align-items: start; justify-content: space-between; gap: 10px; }
.avatar {
  width: 100%; height: 100%; border-radius: 0;
  background: rgba(6, 17, 26, 0.22); display: grid; place-items: center;
  color: #06111a; font-size: 48px; font-weight: 900; border: 1px solid rgba(255,255,255,0.34);
}
.talent-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.tag { font-size: 12px; color: #06111a; background: var(--yellow); border-radius: 999px; padding: 5px 8px; font-weight: 800; }
.tag.alt { background: rgba(255,255,255,0.12); color: var(--ink); }

.steps { counter-reset: step; display: grid; gap: 14px; }
.step { counter-increment: step; display: grid; grid-template-columns: 48px 1fr; gap: 15px; align-items: start; padding: 18px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,0.05); }
.step::before { content: counter(step); width: 38px; height: 38px; border-radius: 7px; background: var(--cyan); color: #06111a; display: grid; place-items: center; font-weight: 900; }
.step p { color: var(--muted); line-height: 1.65; margin-bottom: 0; }

.form-grid { display: grid; grid-template-columns: 0.88fr 1.12fr; gap: 22px; align-items: start; }
label { display: grid; gap: 8px; color: var(--ink); font-weight: 800; font-size: 14px; }
input, textarea, select {
  width: 100%; min-height: 48px; border: 1px solid var(--line); border-radius: 7px;
  background: rgba(255,255,255,0.08); color: var(--ink); padding: 12px 13px; font: inherit;
}
textarea { min-height: 150px; resize: vertical; }
.form-panel { display: grid; gap: 15px; }
.check { display: flex; gap: 10px; align-items: center; color: var(--muted); font-weight: 700; }
.check input { width: 18px; min-height: 18px; }
.notice { color: var(--muted); line-height: 1.7; font-size: 14px; }
.legal { color: #d7dceb; line-height: 1.75; }
.legal h2 { font-size: 28px; margin-top: 32px; }
.profile-hero { padding: 74px 0 46px; }
.profile-grid {
  display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 42px; align-items: center;
}
.profile-media { display: grid; gap: 16px; justify-items: center; }
.profile-image {
  width: 260px; aspect-ratio: 1 / 1; border-radius: 8px; overflow: hidden;
  border: 1px solid var(--line); background: rgba(255,255,255,0.06); box-shadow: var(--shadow);
}
.profile-img { width: 100%; height: 100%; object-fit: cover; }
.profile-badges { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.back-link { display: inline-flex; color: var(--muted); font-weight: 800; margin-bottom: 18px; }
.back-link:hover { color: var(--ink); }
.profile-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.profile-sections { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.profile-card {
  background: rgba(16, 20, 33, 0.84); border: 1px solid var(--line);
  border-radius: 8px; padding: 22px;
}
.profile-card.wide { grid-column: 1 / -1; }
.profile-card h2 { font-size: 24px; margin-bottom: 14px; }
.profile-card p { color: var(--muted); line-height: 1.7; margin-bottom: 0; }
.profile-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.profile-stats div { border: 1px solid var(--line); border-radius: 8px; padding: 18px; background: rgba(255,255,255,0.06); }
.profile-stats strong { display: block; font-size: 34px; line-height: 1; }
.profile-stats span { color: var(--muted); font-weight: 800; font-size: 13px; }
.social-list { display: grid; gap: 10px; }
.social-list a {
  display: flex; justify-content: space-between; align-items: center; min-height: 44px;
  border: 1px solid var(--line); border-radius: 7px; padding: 0 12px; font-weight: 800;
  background: rgba(255,255,255,0.06);
}
.social-list a:hover { border-color: rgba(53, 210, 255, 0.58); }
.social-list a.is-disabled { opacity: 0.45; pointer-events: none; }
.game-strip { display: flex; flex-wrap: wrap; gap: 12px; }
.game-strip img { width: 72px; height: 96px; object-fit: cover; border-radius: 6px; border: 1px solid var(--line); background: rgba(255,255,255,0.06); }
.footer { border-top: 1px solid var(--line); padding: 34px 0; color: var(--muted); }
.footer-grid { display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.footer strong { color: var(--ink); }
.footer p { margin: 6px 0 0; max-width: 560px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; font-weight: 800; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; left: 16px; right: 16px; top: 70px; display: none; flex-direction: column; align-items: stretch;
    background: #101421; border: 1px solid var(--line); border-radius: 8px; padding: 10px; box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { justify-content: center; }
  .hero-grid, .form-grid { grid-template-columns: 1fr; }
  .hero-stage { min-height: auto; padding: 42px 0 28px; }
  .hero-strip { position: static; margin-top: 16px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .profile-grid { grid-template-columns: 1fr; text-align: center; }
  .profile-actions { justify-content: center; }
  .profile-sections { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .grid.three, .grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-head, .band, .footer-grid { display: block; }
  .band .button { margin-top: 18px; }
}
@media (max-width: 560px) {
  .shell { width: min(100% - 24px, 1180px); }
  .hero { padding-top: 38px; }
  .metric-grid, .grid.three, .grid.four { grid-template-columns: 1fr; }
  .hero-strip { grid-template-columns: 1fr; }
  .card, .form-panel, .band { padding: 16px; }
  .talent-card { min-height: 310px; padding: 16px; }
  .talent-visual { width: min(200px, 100%); }
  .avatar { font-size: 42px; }
  .profile-image { width: min(240px, 100%); }
  .profile-stats { grid-template-columns: 1fr; }
  .footer-links { margin-top: 18px; }
}


/* Wenn ein Filter-Button ausgewählt ist */
.filter.is-selected {
  background: rgba(0, 212, 255, 1) !important; /* Dreht es bei Selektion auf voll deckend um */
  color: #000 !important; 
}