/* ============================================================
   BABBELINO YOUTH LEAGUE — Redesign
   Dark, clean, energetic. Black / brand-red / off-white.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700;800;900&family=Hanken+Grotesk:wght@400;500;600;700&display=swap');

:root{
  /* surfaces */
  --bg:        #0c0c0e;
  --bg-2:      #111114;
  --surface:   #16161b;
  --surface-2: #1c1c22;
  --line:      rgba(255,255,255,.09);
  --line-strong: rgba(255,255,255,.16);

  /* ink */
  --ink:       #f4f3f2;
  --ink-mute:  #b9b7b6;
  --ink-dim:   #84817f;

  /* brand */
  --red:       #e11d24;
  --red-deep:  #b3141a;
  --red-glow:  #ff2b32;

  --radius:    14px;
  --radius-lg: 22px;
  --maxw:      1280px;

  --ease: cubic-bezier(.2,.7,.2,1);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:'Hanken Grotesk', system-ui, sans-serif;
  font-size:17px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

/* subtle film grain over everything */
body::before{
  content:"";
  position:fixed; inset:0; z-index:9999; pointer-events:none;
  opacity:.035; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

a{ color:inherit; text-decoration:none; }
img{ display:block; max-width:100%; }
h1,h2,h3,h4{ font-family:'Archivo', sans-serif; margin:0; line-height:1.02; letter-spacing:-.01em; }

.wrap{ width:100%; max-width:var(--maxw); margin:0 auto; padding:0 clamp(20px,5vw,56px); }

/* ---------- shared bits ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:11px;
  font-family:'Archivo',sans-serif; font-weight:700;
  font-size:13px; letter-spacing:.22em; text-transform:uppercase;
  color:var(--ink-mute);
}
.eyebrow::before{
  content:""; width:30px; height:3px; background:var(--red);
  transform:skewX(-22deg); border-radius:1px;
}
.section{ padding:clamp(72px,11vw,140px) 0; position:relative; }

.kicker-red{ color:var(--red); }

.btn{
  --pad:16px 30px;
  display:inline-flex; align-items:center; gap:11px;
  font-family:'Archivo',sans-serif; font-weight:800;
  font-size:14px; letter-spacing:.06em; text-transform:uppercase;
  padding:var(--pad); border-radius:9px; cursor:pointer; border:0;
  transition:transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
}
.btn .arr{ transition:transform .25s var(--ease); }
.btn:hover .arr{ transform:translateX(4px); }
.btn-red{
  background:var(--red); color:#fff;
  box-shadow:0 10px 30px -10px rgba(225,29,36,.6);
  clip-path:polygon(0 0,100% 0,calc(100% - 12px) 100%,0 100%);
  padding-right:40px;
}
.btn-red:hover{ background:var(--red-glow); transform:translateY(-2px); box-shadow:0 16px 40px -12px rgba(255,43,50,.7); }
.btn-ghost{
  background:transparent; color:var(--ink);
  border:1.5px solid var(--line-strong);
}
.btn-ghost:hover{ border-color:var(--red); color:#fff; transform:translateY(-2px); }

/* image placeholder */
.ph{
  position:relative; overflow:hidden; border-radius:var(--radius);
  background:
    repeating-linear-gradient(135deg, #15151a 0 14px, #101015 14px 28px);
  border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
}
.ph::after{
  content:attr(data-label);
  font-family:'Archivo',monospace; font-size:12px; letter-spacing:.12em;
  text-transform:uppercase; color:var(--ink-dim);
  background:rgba(0,0,0,.45); padding:7px 12px; border-radius:6px;
  border:1px solid var(--line);
}

/* ============================================================
   TOP UTILITY BAR
   ============================================================ */
.utility{
  background:#000; border-bottom:1px solid rgba(225,29,36,.4);
  font-size:13.5px; color:var(--ink-mute);
}
.utility .wrap{ display:flex; align-items:center; justify-content:space-between; height:42px; gap:18px; }
.utility a{ display:inline-flex; align-items:center; gap:8px; transition:color .2s; }
.utility a:hover{ color:#fff; }
.utility .u-right{ display:flex; align-items:center; gap:18px; }
.u-login{
  font-family:'Archivo',sans-serif; font-weight:700; font-size:12px;
  letter-spacing:.08em; text-transform:uppercase;
  border:1px solid var(--line-strong); padding:6px 14px; border-radius:6px; color:var(--ink);
}
.u-login:hover{ border-color:var(--red); color:#fff; }
.u-socials{ display:flex; gap:13px; }
.u-socials a{ width:30px; height:30px; border-radius:50%; border:1px solid var(--line);
  display:grid; place-items:center; }
.u-socials a:hover{ border-color:var(--red); background:rgba(225,29,36,.12); }
.u-socials svg{ width:15px; height:15px; fill:currentColor; }

/* ============================================================
   NAV
   ============================================================ */
.nav{
  position:sticky; top:0; z-index:500;
  background:rgba(10,10,12,.78); backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.nav .wrap{ display:flex; align-items:center; justify-content:space-between; height:84px; gap:24px; }
.brand{ display:flex; align-items:center; gap:14px; flex-shrink:0; }
.brand img{ width:54px; height:54px; }
.brand .b-text{ font-family:'Archivo',sans-serif; line-height:1; }
.brand .b-text b{ display:block; font-weight:900; font-size:16px; letter-spacing:.04em; }
.brand .b-text span{ display:block; font-size:11px; letter-spacing:.28em; color:var(--red); font-weight:700; margin-top:3px; }
.menu{ display:flex; align-items:center; gap:6px; }
.menu a{
  font-family:'Archivo',sans-serif; font-weight:600; font-size:14.5px;
  padding:9px 13px; border-radius:8px; color:var(--ink-mute);
  transition:color .2s, background .2s; white-space:nowrap;
}
.menu a:hover, .menu a.active{ color:#fff; background:rgba(255,255,255,.05); }
.menu a.active{ color:var(--red); }
.menu .has::after{ content:"▾"; font-size:10px; margin-left:5px; color:var(--ink-dim); }
.menu-group{position:relative}
.menu-group>.has{display:flex;align-items:center}
.submenu{position:absolute;left:0;top:100%;z-index:30;display:none;min-width:250px;padding:10px;border:1px solid var(--line);border-radius:12px;background:#08080a;box-shadow:0 24px 70px rgba(0,0,0,.35)}
.submenu a{display:block;width:100%;padding:9px 10px;white-space:nowrap}
.menu-group:hover .submenu,.menu-group:focus-within .submenu{display:block}
.nav-cta{ flex-shrink:0; white-space:nowrap; }
@media(max-width:1200px){ .nav-cta{ display:none; } }
.burger{ display:none; background:none; border:0; color:#fff; cursor:pointer; }

/* ============================================================
   HERO
   ============================================================ */
.hero{ position:relative; padding:clamp(56px,9vw,104px) 0 0; overflow:hidden; }
.hero::before{ /* red glow */
  content:""; position:absolute; top:-180px; right:-120px; width:780px; height:780px;
  background:radial-gradient(circle, rgba(225,29,36,.20), transparent 62%);
  pointer-events:none; z-index:0;
}
.hero .wrap{ position:relative; z-index:1; }
.hero-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(32px,5vw,72px); align-items:center; }

.hero-badge{
  display:inline-flex; align-items:center; gap:12px; margin-bottom:26px;
  border:1px solid rgba(225,29,36,.45); background:rgba(225,29,36,.08);
  padding:8px 8px 8px 16px; border-radius:100px;
  font-size:13.5px; color:var(--ink);
}
.hero-badge b{ font-family:'Archivo',sans-serif; }
.hero-badge .pill{
  font-family:'Archivo',sans-serif; font-weight:800; font-size:12px; letter-spacing:.04em;
  background:var(--red); color:#fff; padding:5px 11px; border-radius:100px;
}
.hero h1{
  font-weight:900; text-transform:uppercase;
  font-size:clamp(46px,7vw,104px); letter-spacing:-.02em; line-height:.92;
}
.hero h1 .red{ color:var(--red); position:relative; }
.hero h1 .red::after{
  content:""; position:absolute; left:0; bottom:.06em; width:.62em; height:.09em;
  background:var(--red); transform:skewX(-20deg);
}
.hero .lede{
  margin:28px 0 8px; max-width:30ch; font-size:clamp(18px,2vw,21px); color:var(--ink-mute);
}
.hero .lede strong{ color:var(--ink); font-weight:600; }
.hero-actions{ display:flex; flex-wrap:wrap; gap:14px; margin-top:34px; }

/* hero visual */
.hero-visual{ position:relative; }
.hero-visual .ph{ aspect-ratio:4/4.6; border-radius:var(--radius-lg);
  background:
    repeating-linear-gradient(135deg, #16161c 0 16px, #101016 16px 32px); }
.hero-visual::before{ /* red corner frame */
  content:""; position:absolute; top:-14px; right:-14px; width:120px; height:120px;
  border-top:4px solid var(--red); border-right:4px solid var(--red);
  border-top-right-radius:var(--radius-lg); z-index:2;
}
.hero-visual::after{
  content:""; position:absolute; bottom:-14px; left:-14px; width:120px; height:120px;
  border-bottom:4px solid var(--line-strong); border-left:4px solid var(--line-strong);
  border-bottom-left-radius:var(--radius-lg);
}
.hv-tag{
  position:absolute; left:0; bottom:26px; z-index:3;
  background:#000; border:1px solid var(--line); border-left:4px solid var(--red);
  padding:14px 22px 14px 18px; border-radius:0 10px 10px 0;
  transform:translateX(-10px);
}
.hv-tag .n{ font-family:'Archivo',sans-serif; font-weight:900; font-size:30px; color:#fff; line-height:1; }
.hv-tag .l{ font-size:12.5px; color:var(--ink-mute); letter-spacing:.04em; }

/* feature cards under hero */
.features{ position:relative; z-index:1; margin-top:clamp(48px,7vw,92px); }
.feat-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.feat{
  background:linear-gradient(180deg,var(--surface),var(--bg-2));
  border:1px solid var(--line); border-radius:var(--radius);
  padding:26px 24px 28px; position:relative; overflow:hidden;
  transition:transform .3s var(--ease), border-color .3s var(--ease);
}
.feat:hover{ transform:translateY(-5px); border-color:rgba(225,29,36,.5); }
.feat .ic{
  width:48px; height:48px; border-radius:11px; display:grid; place-items:center;
  background:rgba(225,29,36,.12); border:1px solid rgba(225,29,36,.35); margin-bottom:18px;
}
.feat .ic svg{ width:24px; height:24px; stroke:var(--red); fill:none; stroke-width:1.7; }
.feat h3{ font-size:18px; font-weight:800; margin-bottom:9px; }
.feat p{ margin:0; font-size:14.5px; color:var(--ink-mute); line-height:1.5; }
.feat .num{ position:absolute; top:14px; right:18px; font-family:'Archivo',sans-serif;
  font-weight:900; font-size:42px; color:rgba(255,255,255,.04); }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.sec-head{ max-width:680px; margin-bottom:clamp(40px,5vw,64px); }
.sec-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.sec-head h2{ font-weight:900; text-transform:uppercase; font-size:clamp(32px,4.6vw,58px); margin-top:18px; }
.sec-head p{ color:var(--ink-mute); font-size:18px; margin-top:18px; }
.sec-head.center .eyebrow{ }

/* ============================================================
   SO FUNKTIONIERT'S  (steps)
   ============================================================ */
.how{ background:var(--bg-2); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; counter-reset:step; }
.step{
  position:relative; background:var(--surface); border:1px solid var(--line);
  border-radius:var(--radius); padding:36px 30px 34px;
  transition:transform .3s var(--ease), border-color .3s var(--ease);
}
.step:hover{ transform:translateY(-5px); border-color:rgba(225,29,36,.5); }
.step .step-n{
  font-family:'Archivo',sans-serif; font-weight:900; font-size:18px;
  width:54px; height:54px; border-radius:13px; display:grid; place-items:center;
  background:var(--red); color:#fff; margin-bottom:22px;
  box-shadow:0 12px 30px -12px rgba(225,29,36,.7);
}
.step h3{ font-size:21px; font-weight:800; margin-bottom:11px; }
.step p{ margin:0; color:var(--ink-mute); font-size:15px; }
.step .line{ position:absolute; top:60px; right:-22px; width:22px; height:2px;
  background:linear-gradient(90deg,var(--red),transparent); display:none; }
@media(min-width:861px){ .step:not(:last-child) .line{ display:block; } }

/* anmeldung CTA band */
.enroll{
  margin-top:clamp(40px,5vw,60px);
  background:linear-gradient(110deg,var(--red-deep),var(--red));
  border-radius:var(--radius-lg); padding:clamp(36px,5vw,56px);
  display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap;
  position:relative; overflow:hidden;
}
.enroll::before{ content:""; position:absolute; inset:0;
  background-image:repeating-linear-gradient(125deg, rgba(255,255,255,.06) 0 2px, transparent 2px 22px);
  pointer-events:none; }
.enroll .e-txt{ position:relative; z-index:1; }
.enroll h3{ font-weight:900; text-transform:uppercase; font-size:clamp(26px,3.4vw,40px); color:#fff; }
.enroll p{ margin:10px 0 0; color:rgba(255,255,255,.85); font-size:17px; }
.enroll .e-actions{ position:relative; z-index:1; display:flex; gap:14px; flex-wrap:wrap; }

.league-intro{display:grid;grid-template-columns:minmax(0,1fr) minmax(280px,480px);gap:clamp(24px,4vw,52px);align-items:center;margin-bottom:clamp(44px,6vw,76px)}
.league-intro-copy h2{margin:16px 0 12px;color:#fff!important;font-family:'Archivo',sans-serif;font-size:clamp(34px,5vw,62px);font-weight:900;line-height:1.02;text-transform:uppercase}
.league-intro-copy h2 span{color:var(--red)!important}
.league-intro-copy p{max-width:720px;margin:0 0 16px;color:var(--ink-mute);font-size:18px;line-height:1.65}
.league-intro-copy p strong{color:#fff}
.league-claim{color:#fff!important;font-family:'Archivo',sans-serif;font-size:clamp(22px,3vw,32px)!important;font-weight:900;text-transform:uppercase}
.league-claim span{color:var(--red)}
.league-intro-media{overflow:hidden;border:1px solid var(--line);border-left:4px solid var(--red);border-radius:18px;background:#15161b;box-shadow:0 24px 70px rgba(0,0,0,.28)}
.league-intro-media img{width:100%;aspect-ratio:4/3;object-fit:cover}
.league-offer{margin-bottom:clamp(34px,5vw,58px)}
.offer-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
.offer-item{position:relative;min-height:172px;padding:22px 18px;border:1px solid var(--line);border-radius:14px;background:linear-gradient(180deg,var(--surface),var(--bg-2));overflow:hidden}
.offer-item span{display:grid;place-items:center;width:42px;height:42px;margin-bottom:16px;border:1px solid rgba(225,29,36,.4);border-radius:12px;background:rgba(225,29,36,.12);color:var(--red);font-family:'Archivo',sans-serif;font-weight:900}
.offer-item h3{margin:0 0 8px;color:#fff;font-family:'Archivo',sans-serif;font-size:18px;font-weight:900;line-height:1.15}
.offer-item p{margin:0;color:var(--ink-mute);font-size:14.5px;line-height:1.45}
.league-process{display:grid;grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr);gap:clamp(24px,4vw,48px);align-items:start;margin-bottom:clamp(34px,5vw,58px);padding:clamp(22px,3.5vw,34px);border:1px solid var(--line);border-left:4px solid var(--red);border-radius:18px;background:#15161b}
.league-process h2{margin:16px 0 0;color:#fff;font-family:'Archivo',sans-serif;font-size:clamp(28px,4vw,46px);font-weight:900;line-height:1.05;text-transform:uppercase}
.league-process ul{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px 14px;margin:0;padding:0;list-style:none}
.league-process li{position:relative;padding:12px 12px 12px 34px;border:1px solid rgba(255,255,255,.12);border-radius:10px;background:#111217;color:#e6e7ec;font-weight:700;line-height:1.35}
.league-process li::before{content:"";position:absolute;left:13px;top:18px;width:8px;height:8px;border-radius:50%;background:var(--red);box-shadow:0 0 14px rgba(225,29,36,.8)}
.league-process .league-process-cta{display:flex;align-items:stretch;padding:0;border:0;background:transparent}
.league-process .league-process-cta::before{display:none}
.league-process .league-process-cta .btn{width:100%;justify-content:center;min-height:100%}
.league-process .league-process-actions{grid-column:1/-1;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
@media(max-width:620px){.league-process .league-process-actions{grid-template-columns:1fr}}
.player-finder{padding-top:0;background:var(--bg-2)}
.finder-panel{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:24px;align-items:center;border:1px solid rgba(225,29,36,.45);border-radius:18px;background:linear-gradient(135deg,rgba(225,29,36,.17),#15161b);padding:clamp(24px,4vw,40px);box-shadow:0 24px 70px rgba(0,0,0,.22)}
.finder-panel h2{margin:14px 0 12px;color:#fff;font-family:'Archivo',sans-serif;font-size:clamp(30px,4vw,50px);font-weight:900;text-transform:uppercase}
.finder-panel p{margin:0;color:#e6e7ec;font-size:18px;line-height:1.6}
.btn-onred{ background:#000; color:#fff; }
.btn-onred:hover{ background:#111; transform:translateY(-2px); }
.btn-onwhite{ background:#fff; color:#111; }
.btn-onwhite:hover{ background:#f0f0f0; transform:translateY(-2px); }

/* ============================================================
   MATCHDAY / NEWS
   ============================================================ */
.match-grid{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(30px,4vw,56px); align-items:center; }
.match-visual{ position:relative; }
.match-visual .ph{ aspect-ratio:5/4; border-radius:var(--radius-lg); }
.play-btn{
  position:absolute; inset:0; margin:auto; width:84px; height:84px; border-radius:50%;
  background:var(--red); border:0; cursor:pointer; display:grid; place-items:center;
  box-shadow:0 0 0 0 rgba(225,29,36,.5); animation:pulse 2.4s infinite;
}
.play-btn svg{ width:30px; height:30px; fill:#fff; margin-left:4px; }
@keyframes pulse{ 0%{box-shadow:0 0 0 0 rgba(225,29,36,.45);} 70%{box-shadow:0 0 0 26px rgba(225,29,36,0);} 100%{box-shadow:0 0 0 0 rgba(225,29,36,0);} }
.match-result{ display:inline-flex; align-items:center; gap:14px; margin:6px 0 22px;
  font-family:'Archivo',sans-serif; }
.match-result .score{ font-weight:900; font-size:46px; color:#fff; line-height:1; }
.match-result .vs{ font-size:13px; color:var(--ink-dim); text-transform:uppercase; letter-spacing:.12em; }
.match-teams{ color:var(--ink-mute); font-size:15px; margin-bottom:22px; }
.checks{ list-style:none; padding:0; margin:0 0 22px; display:grid; gap:12px; }
.checks li{ display:flex; align-items:center; gap:13px; font-weight:600; }
.checks svg{ width:22px; height:22px; flex-shrink:0; }
.match-body{ color:var(--ink-mute); font-size:16px; max-width:46ch; }

/* news cards */
.news{ margin-top:clamp(56px,7vw,96px); }
.news-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.card{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius);
  overflow:hidden; transition:transform .3s var(--ease), border-color .3s var(--ease);
  display:flex; flex-direction:column;
}
.card:hover{ transform:translateY(-6px); border-color:rgba(225,29,36,.5); }
.card .ph{ aspect-ratio:16/10; border-radius:0; border:0; border-bottom:1px solid var(--line); }
.card .c-body{ padding:24px 24px 28px; }
.card .c-meta{ display:flex; align-items:center; gap:10px; font-size:12px; letter-spacing:.08em;
  text-transform:uppercase; color:var(--ink-dim); margin-bottom:13px; font-family:'Archivo',sans-serif; font-weight:600; }
.card .c-tag{ color:var(--red); }
.card h3{ font-size:20px; font-weight:800; margin-bottom:10px; line-height:1.15; }
.card p{ margin:0 0 18px; color:var(--ink-mute); font-size:14.5px; }
.card .more{ font-family:'Archivo',sans-serif; font-weight:700; font-size:13px; letter-spacing:.06em;
  text-transform:uppercase; color:var(--red); display:inline-flex; gap:7px; align-items:center; margin-top:auto; }
.card .more .arr{ transition:transform .25s var(--ease); }
.card:hover .more .arr{ transform:translateX(4px); }

/* ============================================================
   STATS
   ============================================================ */
.stats{ background:#000; border-top:1px solid rgba(225,29,36,.3); border-bottom:1px solid rgba(225,29,36,.3); }
.stats .wrap{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; padding-top:clamp(48px,6vw,72px); padding-bottom:clamp(48px,6vw,72px); }
.stat{ text-align:center; position:relative; }
.stat:not(:last-child)::after{ content:""; position:absolute; right:-10px; top:18%; height:64%; width:1px; background:var(--line); }
.stat .num{ font-family:'Archivo',sans-serif; font-weight:900; font-size:clamp(44px,6vw,72px); color:#fff; line-height:1; }
.stat .num .u{ color:var(--red); }
.stat .lbl{ margin-top:10px; font-size:13.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--ink-mute); font-family:'Archivo',sans-serif; font-weight:600; }

/* ============================================================
   FOOTER
   ============================================================ */
.newsletter{ text-align:center; padding-bottom:clamp(56px,7vw,80px); }
.newsletter h2{ font-weight:900; text-transform:uppercase; font-size:clamp(30px,4.4vw,54px); }
.newsletter p{ color:var(--ink-mute); margin:14px 0 26px; }
.team-studio{padding-top:clamp(54px,7vw,86px)}
.studio-panel{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(300px,.75fr);gap:24px;align-items:stretch}
.studio-controls{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;align-items:stretch}
.studio-card,.studio-preview-card{display:flex;flex-direction:column;border:1px solid var(--line);border-left:4px solid var(--red);border-radius:14px;background:#15161b;padding:clamp(18px,3vw,28px)}
.studio-card h3{margin:0 0 16px;color:#fff;font-family:'Archivo',sans-serif;font-size:24px;font-weight:900;text-transform:uppercase}
.studio-field{display:grid;gap:7px;margin-bottom:14px}
.studio-field label{color:#fff;font-weight:900}
.studio-field input,.studio-field select{width:100%;min-height:46px;border:1px solid rgba(255,255,255,.18);border-radius:10px;background:#f5f5f7;color:#111217;padding:10px 12px;font:inherit;font-weight:800}
.studio-counter{color:var(--ink-mute);font-size:13px}
.studio-names{display:flex;flex-wrap:wrap;align-content:flex-start;gap:8px;min-height:112px;margin:14px 0}
.studio-names button{border:1px solid rgba(255,255,255,.16);border-radius:999px;background:#111217;color:#fff;padding:8px 12px;font-weight:900;cursor:pointer}
.studio-names button:hover{border-color:var(--red);color:#fff}
.studio-swatches{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;margin:14px 0 18px}
.studio-swatches button{display:flex;align-items:center;gap:9px;min-height:40px;border:1px solid rgba(255,255,255,.16);border-radius:10px;background:#111217;color:#fff;padding:8px 10px;font-weight:900;cursor:pointer}
.studio-swatches button.is-active{border-color:var(--red);box-shadow:0 0 0 2px rgba(225,29,36,.22)}
.studio-swatches span{display:block;width:18px;height:18px;border-radius:999px;background:var(--studio-swatch,#e11d24)}
.studio-swatches button[data-logo-color="#00a3ff"] span{background:#00a3ff}
.studio-swatches button[data-logo-color="#19c37d"] span{background:#19c37d}
.studio-swatches button[data-logo-color="#f5b700"] span{background:#f5b700}
.studio-swatches button[data-logo-color="#7c3aed"] span{background:#7c3aed}
.studio-swatches button[data-logo-color="#ff6b00"] span{background:#ff6b00}
.studio-swatches button[data-logo-color="#ffffff"] span{background:#fff;border:1px solid rgba(0,0,0,.35)}
.studio-swatches button[data-logo-color="#111217"] span{background:#111217;border:1px solid rgba(255,255,255,.35)}
.studio-logo-preview{display:grid;place-items:center;min-height:380px;margin:18px 0;border:1px solid rgba(255,255,255,.12);border-radius:14px;background:radial-gradient(circle at 50% 30%,rgba(255,255,255,.08),transparent 62%),#0b0c10}
.studio-logo-preview svg{width:min(280px,100%);height:auto}
.studio-preview-card p{margin:0 0 18px;color:var(--ink-mute);line-height:1.6}
.studio-preview-card .studio-actions{margin-top:auto}
.studio-actions{display:flex;flex-wrap:wrap;gap:10px}
@media(max-width:1120px){.studio-panel{grid-template-columns:1fr}.studio-controls{grid-template-columns:1fr 1fr}}
@media(max-width:760px){.studio-controls{grid-template-columns:1fr}.studio-actions{display:grid}.studio-actions .btn{width:100%;justify-content:center}}
.ai-logo-generator{padding:clamp(54px,7vw,86px) 0}
.ai-logo-head{max-width:920px;margin:0 0 28px}
.ai-logo-head h2{margin:8px 0 12px;color:#fff;font-family:'Archivo',sans-serif;font-size:clamp(34px,5vw,64px);font-weight:900;line-height:.98;text-transform:uppercase}
.ai-logo-head h2 span:last-child{color:var(--red)}
.ai-logo-head p{max-width:820px;color:var(--ink-mute);font-size:clamp(18px,2vw,22px);line-height:1.55}
.ai-logo-grid{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(320px,.95fr);gap:24px;align-items:stretch}
.ai-logo-panel{border:1px solid var(--line);border-left:4px solid var(--red);border-radius:14px;background:#15161b;padding:clamp(18px,3vw,28px);box-shadow:0 22px 48px rgba(0,0,0,.24)}
.ai-logo-panel h3{margin:0 0 18px;color:#fff;font-family:'Archivo',sans-serif;font-size:24px;font-weight:900;text-transform:uppercase}
.ai-logo-fields{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;margin-bottom:18px}
.ai-field{display:grid;gap:8px;min-width:0}
.ai-field-wide{grid-column:1 / -1}
.ai-logo-fields label{display:block;margin:0;color:#fff;font-weight:900}
.ai-logo-fields input:not([type="color"]),.ai-logo-fields select{width:100%;min-height:46px;border:1px solid rgba(255,255,255,.18);border-radius:10px;background:#f5f5f7;color:#111217;padding:10px 12px;font:inherit;font-weight:800}
.ai-logo-fields input[type="color"]{width:100%;height:46px;border:1px solid rgba(255,255,255,.18);border-radius:10px;background:#f5f5f7;padding:4px}
.ai-color-row{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.ai-logo-status{min-height:24px;margin:14px 0 0;color:var(--ink-mute);font-weight:700}
.ai-logo-status.is-error{color:#ff7b8c}
.ai-logo-result{display:flex;flex-direction:column}
.ai-logo-preview{display:grid;place-items:center;min-height:360px;margin:0 0 18px;border:1px solid rgba(255,255,255,.12);border-radius:14px;background:radial-gradient(circle at 50% 30%,rgba(255,255,255,.08),transparent 62%),#0b0c10;overflow:hidden}
.ai-logo-preview span{color:var(--ink-mute);font-weight:900}
.ai-logo-preview img{display:block;width:min(360px,100%);height:auto}
.ai-name-list{margin:0 0 18px}
.ai-name-list p{margin:0 0 10px;color:#fff;font-weight:900}
.ai-name-buttons{display:flex;flex-wrap:wrap;gap:8px}
.ai-name-buttons button{border:1px solid rgba(255,255,255,.16);border-radius:999px;background:#111217;color:#fff;padding:8px 12px;font-weight:900;cursor:pointer}
.ai-name-buttons button:hover{border-color:var(--red)}
.ai-logo-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:auto}
.ai-logo-generator.is-loading .ai-logo-preview{position:relative}
.ai-logo-generator.is-loading .ai-logo-preview::after{content:"KI erstellt Logo...";position:absolute;inset:auto 20px 20px;padding:10px 12px;border-radius:999px;background:rgba(225,29,36,.92);color:#fff;font-family:'Archivo',sans-serif;font-weight:900;text-align:center}
@media(max-width:980px){.ai-logo-grid{grid-template-columns:1fr}.ai-logo-fields{grid-template-columns:1fr}.ai-field-wide{grid-column:auto}.ai-color-row{grid-template-columns:1fr 1fr}}
@media(max-width:520px){.ai-color-row,.ai-logo-actions{grid-template-columns:1fr;display:grid}.ai-logo-actions .btn{width:100%;justify-content:center}.ai-logo-preview{min-height:280px}}
.byl-board{display:grid;gap:clamp(22px,4vw,36px)}
.byl-board-intro{max-width:980px}
.byl-board-intro h2{margin:8px 0 12px;color:#fff;font-family:'Archivo',sans-serif;font-size:clamp(34px,5vw,64px);font-weight:900;line-height:1;text-transform:uppercase}
.byl-board-intro h2 span:last-child{display:block;color:var(--red)}
.byl-board-intro p{max-width:860px;color:var(--ink-mute);font-size:clamp(17px,2vw,21px);line-height:1.6}
.byl-board-steps,.byl-board-options{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.byl-board-steps article,.byl-board-options article{border:1px solid var(--line);border-left:4px solid var(--red);border-radius:14px;background:#15161b;padding:20px;box-shadow:0 18px 42px rgba(0,0,0,.22)}
.byl-board-steps strong,.byl-board-options h3{display:block;margin:0 0 8px;color:#fff;font-family:'Archivo',sans-serif;font-size:20px;font-weight:900;text-transform:uppercase}
.byl-board-steps span,.byl-board-options p{display:block;margin:0;color:var(--ink-mute);line-height:1.55}
.byl-board-layout{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px;align-items:stretch}
.byl-board-panel,.byl-board-current{display:flex;flex-direction:column;background:#fff;border:2px solid var(--red);border-radius:14px;padding:clamp(20px,3vw,32px);box-shadow:0 22px 48px rgba(0,0,0,.28)}
.content-panel .byl-board-panel h3,.content-panel .byl-board-current h3,.byl-board-panel h3,.byl-board-current h3{margin:0 0 8px;color:#111217;font-family:'Archivo',sans-serif;font-size:clamp(20px,2vw,28px);font-style:italic;font-weight:900;line-height:1.08;text-transform:uppercase}
.content-panel .byl-board-note,.content-panel .byl-board-current p,.byl-board-note,.byl-board-current p{margin:0 0 12px;color:#333842;font-size:12.5px;line-height:1.45}
.byl-board-form{display:flex;flex:1;flex-direction:column;gap:14px}
.byl-board-field{display:grid;gap:7px;min-width:0}
.byl-board-field-wide,.byl-board-check,.byl-board-form .btn,.byl-board-status{grid-column:1 / -1}
.content-panel .byl-board-field label,.byl-board-field label{margin:0;color:#111217;font-weight:900}
.content-panel .byl-board-field input,.content-panel .byl-board-field select,.content-panel .byl-board-field textarea,.byl-board-field input,.byl-board-field select,.byl-board-field textarea{width:100%;min-height:48px;border:1px solid #b9bec8;border-radius:10px;background:#f7f7f9;color:#111217;padding:12px 14px;font:inherit;font-weight:700}
.content-panel .byl-board-field textarea,.byl-board-field textarea{min-height:132px;resize:vertical;line-height:1.45}
.content-panel .byl-board-field textarea::placeholder,.byl-board-field textarea::placeholder{color:#5f6672;font-weight:500}
.content-panel .byl-board-field input:focus,.content-panel .byl-board-field select:focus,.content-panel .byl-board-field textarea:focus,.byl-board-field input:focus,.byl-board-field select:focus,.byl-board-field textarea:focus{outline:none;border-color:var(--red);box-shadow:0 0 0 3px rgba(225,29,36,.16)}
.content-panel .byl-board-check,.byl-board-check{display:flex;gap:10px;align-items:flex-start;margin:4px 0 2px;color:#111217;font-weight:700;line-height:1.45}
.content-panel .byl-board-check input,.byl-board-check input{width:18px;min-width:18px;height:18px;margin-top:3px;accent-color:var(--red)}
.byl-board-hidden{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}
.byl-board-field-error{border-color:var(--red)!important;box-shadow:0 0 0 3px rgba(225,29,36,.18)!important}
.byl-board-form .btn{width:100%;justify-content:center;margin-top:auto}
.byl-board-status{min-height:20px;margin:0;color:#173d21;font-weight:900}
.byl-board-status.is-error{color:#a40016}
.byl-board-status.is-success{color:#125c2a}
@media(max-width:980px){.byl-board-steps,.byl-board-options,.byl-board-layout{grid-template-columns:1fr}.byl-board-form{grid-template-columns:1fr}.byl-board-field-wide,.byl-board-check,.byl-board-form .btn,.byl-board-status{grid-column:auto}}
@media(max-width:520px){.byl-board-panel,.byl-board-current{padding:16px;border-radius:12px}.byl-board-steps article,.byl-board-options article{padding:16px}.byl-board-form .btn{width:100%;justify-content:center}.byl-board-intro h2{font-size:clamp(28px,9vw,38px)}}
.home-faq{padding-top:0}
.home-faq-panel{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:26px;align-items:center;border:1px solid var(--line);border-left:4px solid var(--red);border-radius:14px;background:linear-gradient(135deg,rgba(225,29,36,.13),#15161b);padding:clamp(24px,4vw,42px)}
.home-faq-panel h2{margin:10px 0 12px;color:#fff;font-family:'Archivo',sans-serif;font-size:clamp(28px,4vw,46px);font-weight:900;line-height:1.05;text-transform:uppercase}
.home-faq-panel p{max-width:760px;margin:0;color:var(--ink-mute);font-size:18px;line-height:1.6}
.home-faq-actions{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:12px}
@media(max-width:900px){.home-faq-panel{grid-template-columns:1fr}.home-faq-actions{justify-content:flex-start}}
@media(max-width:620px){.home-faq-actions{display:grid}.home-faq-actions .btn{width:100%;justify-content:center}}
.cms-cta-panel{border:1px solid var(--line);border-left:4px solid var(--red);border-radius:14px;background:linear-gradient(135deg,rgba(225,29,36,.14),#15161b);padding:clamp(26px,4vw,42px);text-align:center}
.cms-cta-panel h2{margin:10px 0 12px;color:#fff;font-family:'Archivo',sans-serif;font-size:clamp(32px,5vw,58px);font-weight:900;line-height:1;text-transform:uppercase}
.cms-cta-panel p{max-width:760px;margin:0 auto 24px;color:#e6e7ec;font-size:18px;line-height:1.65}
.cms-cta-actions{display:flex;flex-wrap:wrap;justify-content:center;gap:12px}
@media(max-width:620px){.cms-cta-actions{display:grid}.cms-cta-actions .btn{width:100%;justify-content:center}}
.nl-form{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; max-width:520px; margin:0 auto; }
.nl-form input{
  flex:1; min-width:240px; background:var(--surface); border:1px solid var(--line-strong);
  color:#fff; padding:15px 18px; border-radius:9px; font-size:15px; font-family:inherit;
}
.nl-form input::placeholder{ color:var(--ink-dim); }
.nl-form input:focus{ outline:none; border-color:var(--red); }

footer{ background:#000; border-top:1px solid var(--line); padding:clamp(56px,7vw,80px) 0 0; }
.foot-grid{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:40px; padding-bottom:48px; }
.foot-brand .brand{ margin-bottom:20px; }
.foot-brand p{ color:var(--ink-mute); font-size:15px; max-width:34ch; }
.foot-col h4{ font-family:'Archivo',sans-serif; font-size:13px; letter-spacing:.16em; text-transform:uppercase; color:var(--ink-dim); margin-bottom:18px; }
.foot-col a, .foot-col p{ display:block; color:var(--ink-mute); font-size:15px; margin-bottom:11px; transition:color .2s; }
.foot-col a:hover{ color:var(--red); }
.foot-col strong{ color:#fff; }
.foot-bottom{ border-top:1px solid var(--line); padding:22px 0; display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; font-size:13.5px; color:var(--ink-dim); }
.foot-bottom .u-socials a{ color:var(--ink-mute); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:1080px){
  .menu{ display:none; }
  .burger{ display:block; }
  .feat-grid{ grid-template-columns:repeat(2,1fr); }
  .league-intro,.league-process{grid-template-columns:1fr}
  .offer-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .stats .wrap{ grid-template-columns:repeat(2,1fr); gap:36px 20px; }
  .stat:nth-child(2)::after{ display:none; }
}
@media(max-width:860px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-visual{ order:-1; max-width:480px; }
  .steps{ grid-template-columns:1fr; }
  .match-grid{ grid-template-columns:1fr; }
  .match-visual{ order:-1; }
  .news-grid{ grid-template-columns:1fr; }
  .foot-grid{ grid-template-columns:1fr 1fr; }
  .utility .u-left a span.hide-sm{ display:none; }
}
@media(max-width:560px){
  .feat-grid{ grid-template-columns:1fr; }
  .offer-grid,.league-process ul{grid-template-columns:1fr}
  .finder-panel{grid-template-columns:1fr}
  .finder-panel .btn{width:100%;justify-content:center}
  .stats .wrap{ grid-template-columns:1fr; }
  .stat::after{ display:none!important; }
  .foot-grid{ grid-template-columns:1fr; }
  .utility{ font-size:12px; }
  .enroll{ flex-direction:column; align-items:flex-start; }
}


/* ============================================================
   Relaunch CMS additions
   ============================================================ */
.mail-dot{width:9px;height:9px;border-radius:50%;background:var(--red);box-shadow:0 0 18px rgba(225,29,36,.8);display:inline-block}
.burger{width:44px;height:44px;border:1px solid var(--line-strong);border-radius:10px;align-items:center;justify-content:center;gap:5px;flex-direction:column}
.burger span{width:20px;height:2px;background:#fff;display:block;border-radius:2px}
.hero-visual img,.match-visual img{width:100%;height:100%;object-fit:cover;border-radius:var(--radius-lg);border:1px solid var(--line)}
.match-copy h2{font-weight:900;text-transform:uppercase;font-size:clamp(30px,4vw,54px);margin:18px 0 18px}
.feat{color:inherit;text-decoration:none}.feat .ic{font-family:'Archivo',sans-serif;color:var(--red);font-weight:900;font-size:24px}
.page-hero{padding:clamp(56px,8vw,96px) 0 clamp(22px,3.5vw,42px);background:radial-gradient(circle at 80% 0%, rgba(225,29,36,.16), transparent 38%), var(--bg);border-bottom:1px solid var(--line)}
.page-hero-grid{display:grid;grid-template-columns:minmax(0,1fr) 360px;gap:clamp(28px,5vw,70px);align-items:end}.page-hero h1{font-size:clamp(42px,6.4vw,86px);text-transform:uppercase;font-weight:900;margin:18px 0 20px}.page-hero p{color:var(--ink-mute);font-size:clamp(17px,2vw,21px);max-width:760px}.side-card{background:linear-gradient(180deg,var(--surface),#0f0f12);border:1px solid var(--line);border-left:4px solid var(--red);border-radius:var(--radius);padding:28px;box-shadow:0 24px 70px rgba(0,0,0,.25)}.side-card h3{font-size:23px;margin-bottom:12px}.side-card p{font-size:15.5px;margin:0 0 18px;color:var(--ink-mute)}.side-card .btn{width:100%;justify-content:center;margin-top:10px}.side-actions{display:grid;gap:10px}.content-section{background:var(--bg-2);padding-top:clamp(28px,4vw,52px)}.content-grid{display:block}.content-panel{background:var(--surface);border:1px solid var(--line);border-radius:var(--radius-lg);padding:clamp(24px,4vw,48px);box-shadow:0 24px 70px rgba(0,0,0,.2)}.content-panel :is(h1,h2,h3,.ueberschrift,.ueberschrift-klein-rot,.ueberschrift-grau){font-family:'Archivo',sans-serif;color:#fff}.content-panel .ueberschrift,.content-panel .ueberschrift-klein-rot{display:block;color:var(--red);font-size:clamp(24px,3vw,36px);font-weight:900;text-transform:uppercase;line-height:1.1}.content-panel .ueberschrift-grau{display:inline-block;color:#fff;font-size:18px;font-weight:800;margin:18px 0 6px}.content-panel p,.content-panel li{color:var(--ink-mute)}.content-panel a{color:#fff;text-decoration:underline;text-decoration-color:rgba(225,29,36,.7);text-underline-offset:3px}.content-panel .row{display:flex;flex-wrap:wrap;margin-left:-10px;margin-right:-10px}.content-panel [class*="col-"]{padding-left:10px;padding-right:10px;margin-bottom:18px}.content-panel .col-12{width:100%}.content-panel .col-md-2{width:16.666%}.content-panel .col-md-4{width:33.333%}.content-panel .col-md-6{width:50%}.content-panel .col-md-8{width:66.666%}.content-panel label{display:block;color:#fff;font-weight:600;margin-bottom:7px}.content-panel input,.content-panel select,.content-panel textarea,.form-control,.form-select{width:100%;background:#0d0d10;border:1px solid var(--line-strong);border-radius:9px;color:#fff;padding:13px 14px;font:inherit;min-height:48px}.content-panel input:focus,.content-panel select:focus,.content-panel textarea:focus{outline:none;border-color:var(--red);box-shadow:0 0 0 3px rgba(225,29,36,.16)}.content-panel .form-check{display:flex;gap:10px;align-items:flex-start;margin:9px 0;color:var(--ink-mute)}.content-panel .form-check-input{width:18px;min-width:18px;height:18px;min-height:18px;margin-top:4px;padding:0}.content-panel .form-check-inline{display:inline-flex;margin-right:18px}.content-panel table{width:100%;border-collapse:collapse;margin:12px 0 20px;background:#101014;border-radius:12px;overflow:hidden}.content-panel th,.content-panel td{border:1px solid var(--line-strong);padding:10px;color:var(--ink-mute);vertical-align:middle}.content-panel th{color:#fff;background:#18181d;font-family:'Archivo',sans-serif;text-align:left}.content-panel td:first-child{width:56px;text-align:center;color:#fff;font-weight:800}.content-panel .php-email-form{background:rgba(255,255,255,.025);border:1px solid var(--line);border-radius:var(--radius);padding:clamp(18px,3vw,30px)}.content-panel .kontaktform > .ueberschrift{margin-bottom:24px}.mt-20{margin-top:20px}.mb-4{margin-bottom:24px}.text-center{text-align:center}
@media(max-width:1080px){.menu{position:absolute;left:20px;right:20px;top:74px;display:none;flex-direction:column;background:#08080a;border:1px solid var(--line);border-radius:14px;padding:14px}.menu.is-open{display:flex}.menu a{width:100%}.burger{display:flex}.page-hero-grid{grid-template-columns:1fr}.side-card{max-width:560px}.content-panel .col-md-2,.content-panel .col-md-4,.content-panel .col-md-6,.content-panel .col-md-8{width:100%}}
@media(max-width:1080px){.menu-group{width:100%}.menu-group>.has{width:100%}.submenu{position:static;display:block;min-width:0;width:100%;margin:4px 0 8px;padding:6px 0 6px 12px;border:0;border-left:2px solid var(--red);border-radius:0;background:transparent;box-shadow:none}.submenu a{font-size:13.5px;padding:8px 10px;white-space:normal}}
@media(max-width:680px){.content-panel{padding:20px}.content-panel table{display:block;overflow-x:auto}.hero h1{font-size:clamp(40px,13vw,68px)}}

/* Hero background image rollout */
.hero{
  min-height:calc(100vh - 126px);
  padding:clamp(64px,8vw,118px) 0 clamp(56px,7vw,88px);
  background:
    linear-gradient(90deg, rgba(8,8,10,.88) 0%, rgba(8,8,10,.72) 42%, rgba(8,8,10,.34) 67%, rgba(8,8,10,.58) 100%),
    linear-gradient(180deg, rgba(8,8,10,.18) 0%, rgba(8,8,10,.50) 100%),
    url("https://www.babbelino-youthleague.com/bilder/1740049630/1740049630-1780046377-hero_bild.jpg") center right / cover no-repeat;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 82% 18%, rgba(225,29,36,.16), transparent 38%);
  pointer-events:none;
  z-index:0;
}
.hero-grid{
  grid-template-columns:minmax(0, 760px);
  min-height:clamp(430px,58vh,680px);
  align-items:center;
}
.hero-copy{
  max-width:780px;
}
.hero .lede{
  max-width:34ch;
  color:rgba(244,243,242,.88);
  text-shadow:0 2px 18px rgba(0,0,0,.55);
}
.hero .lede strong,
.hero h1{
  text-shadow:0 4px 28px rgba(0,0,0,.62);
}
.hero-visual{
  display:none;
}
@media(max-width:860px){
  .hero{
    min-height:auto;
    background:
      linear-gradient(180deg, rgba(8,8,10,.82) 0%, rgba(8,8,10,.58) 52%, rgba(8,8,10,.88) 100%),
      url("https://www.babbelino-youthleague.com/bilder/1740049630/1740049630-1780046377-hero_bild.jpg") center center / cover no-repeat;
  }
  .hero-grid{
    min-height:520px;
  }
}


/* BYL generated registration forms */
.byl-form .form-intro{margin-bottom:28px}
.byl-form .form-intro p{max-width:820px;color:var(--ink-mute)}
.byl-form .form-subtitle{display:block;color:var(--red);font-family:'Archivo',sans-serif;font-size:15px;text-transform:uppercase;letter-spacing:.06em;margin:8px 0 2px}
.byl-form .form-section-card{background:#fff;border:2px solid var(--red);border-radius:13px;padding:clamp(18px,3vw,30px);box-shadow:0 22px 48px rgba(0,0,0,.28)}
.byl-form .form-section-card + .form-section-card{margin-top:14px}
.byl-form .form-section-card label,.byl-form .form-section-card p,.byl-form .form-section-card li,.byl-form .form-section-card span{color:#16171b}
.byl-form .form-section-card a{color:#c90018;text-decoration-color:rgba(201,0,24,.55)}
.byl-form .form-section-card .form-subtitle{color:var(--red)}
.byl-form .form-section-card .check-line,.byl-form .form-section-card .option-row label,.byl-form .form-section-card .option-grid label,.byl-form .form-section-card .option-list label{color:#16171b}
.byl-form .form-section-title{display:flex!important;align-items:center;gap:14px;margin:0 0 12px;color:#111217!important;font-size:clamp(21px,2.4vw,34px)!important;font-style:italic;font-weight:900;letter-spacing:.02em;line-height:1.08;text-transform:uppercase}
.byl-form .form-section-no{display:inline-flex;align-items:center;justify-content:center;width:72px;min-width:72px;height:46px;padding:0 10px 2px 4px;background:url("https://www.babbelino-youthleague.com/bilder/1740049630/1740049630-1780919620-bg_form.png") center / contain no-repeat;color:#fff!important;font-family:'Archivo',sans-serif;font-style:italic;font-weight:900;line-height:1;text-shadow:0 2px 0 rgba(0,0,0,.25)}
.byl-form .option-row,.byl-form .option-grid,.byl-form .option-list{display:flex;flex-wrap:wrap;gap:7px 18px;margin:4px 0 6px}
.byl-form .option-grid{display:grid;grid-template-columns:repeat(2,minmax(220px,1fr));align-items:start}
.byl-form .option-list{display:grid;grid-template-columns:1fr;gap:10px}
.byl-form .option-row label,.byl-form .option-grid label,.byl-form .option-list label,.byl-form .check-line{display:flex;gap:10px;align-items:flex-start;color:var(--ink-mute);font-weight:500;line-height:1.45;margin:0}
.byl-form input[type="radio"],.byl-form input[type="checkbox"]{width:18px;min-width:18px;height:18px;min-height:18px;margin-top:3px;accent-color:var(--red)}
.byl-form .check-line{margin:6px 0}.byl-form .check-line.compact{margin-top:12px}
.byl-form .required-label::after{content:" *";color:var(--red);font-weight:900}
.byl-form .byl-validation-summary{margin:0 0 18px;padding:14px 16px;border:2px solid var(--red);border-left-width:6px;border-radius:12px;background:#fff7f7;color:#16171b;box-shadow:0 14px 34px rgba(0,0,0,.22)}
.byl-form .byl-validation-summary[hidden]{display:none}
.byl-form .byl-validation-summary strong{display:block;margin:0 0 8px;color:#111217;font-family:'Archivo',sans-serif;text-transform:uppercase;letter-spacing:.03em}
.byl-form .byl-validation-summary ul{margin:0;padding-left:20px}
.byl-form .byl-validation-summary li{margin:0 0 4px;color:#16171b}
.byl-form .byl-field-error:not([type="checkbox"]):not([type="radio"]){border-color:var(--red)!important;box-shadow:0 0 0 3px rgba(225,29,36,.18)!important;background:#fffafa!important}
.byl-form input[type="checkbox"].byl-field-error,.byl-form input[type="radio"].byl-field-error{outline:2px solid var(--red);outline-offset:2px}
.byl-form .byl-option-error,.byl-form .byl-group-error{border-radius:10px;background:rgba(225,29,36,.08)}
.byl-form .byl-group-error{padding:8px 10px;border:1px solid rgba(225,29,36,.28)}
.byl-form .notice{background:rgba(225,29,36,.13);border:1px solid rgba(225,29,36,.36);border-left:4px solid var(--red);border-radius:12px;padding:16px 18px;color:#fff;margin:14px 0}
.byl-form .form-section-card .notice{background:#fff7f7;color:#16171b}
.byl-form .form-section-card .notice strong{color:#111217}
.byl-form .responsive-table{width:100%;overflow-x:auto}.byl-form table input{min-width:120px}.byl-form table td:first-child input{min-width:0}
.byl-form .camera-capture{display:grid;gap:14px;margin-top:-4px}
.byl-form .camera-help{margin:0;color:#111217;font-weight:800}
.byl-form .camera-stage{display:grid;gap:14px}
.byl-form .camera-stage[hidden]{display:none}
.byl-form .camera-video{width:100%;max-width:520px;aspect-ratio:4/3;object-fit:cover;background:#050507;border:1px solid var(--line-strong);border-radius:12px}
.byl-form .camera-actions{display:flex;flex-wrap:wrap;gap:10px}
.byl-form .camera-status{margin:0;color:#e6e7ec;font-size:14px}
.byl-form .form-section-card .camera-status{color:#16171b}
.byl-form .form-section-card .btn-ghost{color:#111217;border-color:rgba(12,14,20,.32);background:#fff}
.byl-form .form-section-card .btn-ghost:hover{color:#fff;border-color:var(--red);background:#111217}
.byl-form .camera-preview{display:grid;gap:12px;max-width:520px}
.byl-form .camera-preview[hidden]{display:none}
.byl-form .camera-preview-title{margin:0;color:#111217;font-weight:900}
.byl-form .camera-preview-image{display:block;width:100%;aspect-ratio:4/3;object-fit:cover;border:1px solid rgba(12,14,20,.2);border-radius:12px;background:#050507}
.byl-form .privacy-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;margin:12px 0 18px}
.byl-form .privacy-card,.byl-form .privacy-rights{border:1px dashed rgba(255,255,255,.28);border-left:3px solid var(--red);border-radius:10px;padding:14px 16px;background:rgba(255,255,255,.025)}
.byl-form .form-section-card .privacy-card,.byl-form .form-section-card .privacy-rights{border-color:rgba(201,0,24,.32);background:#fff7f7}
.byl-form .privacy-card strong,.byl-form .privacy-rights strong{display:block;color:var(--red);font-family:'Archivo',sans-serif;font-size:14px;line-height:1.25;margin-bottom:8px}
.byl-form .privacy-card ul{margin:0;padding-left:18px;color:#e6e7ec}
.byl-form .privacy-card li{margin:0 0 7px;color:#e6e7ec}
.byl-form .form-section-card .privacy-card ul,.byl-form .form-section-card .privacy-card li{color:#16171b}
.byl-form .privacy-rights{margin:0 0 14px}
.byl-form .privacy-rights .option-grid{gap:8px 14px;margin-bottom:0}
.byl-form .privacy-rights span{color:#e6e7ec;font-weight:600}
.byl-form .form-section-card .privacy-rights span{color:#16171b}
.byl-form .newsletter-consent{position:relative;margin:4px 0 12px;padding:20px 22px 20px 26px;border:1px solid rgba(225,29,36,.42);border-left:5px solid var(--red);border-radius:12px;background:linear-gradient(135deg,rgba(225,29,36,.15),rgba(255,255,255,.035));box-shadow:0 18px 42px rgba(0,0,0,.22)}
.byl-form .newsletter-consent strong{display:block;color:#fff;font-family:'Archivo',sans-serif;font-size:20px;text-transform:uppercase;letter-spacing:.04em;margin-bottom:5px}
.byl-form .newsletter-consent p{margin:0 0 12px;color:#f4f4f4;font-weight:700}
.byl-form .form-section-card .newsletter-consent{background:#fff7f7;box-shadow:none}
.byl-form .form-section-card .newsletter-consent strong,.byl-form .form-section-card .newsletter-consent p{color:#16171b}
.byl-form .newsletter-consent .option-row{margin-bottom:0}
.contact-info-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin:0 0 22px}
.contact-info-card{display:grid;gap:7px;border:1px solid rgba(255,255,255,.14);border-left:4px solid var(--red);border-radius:12px;background:#15161b;padding:18px}
.contact-info-card span{color:var(--red);font-family:'Archivo',sans-serif;font-size:13px;font-weight:900;letter-spacing:.1em;text-transform:uppercase}
.contact-info-card strong{color:#fff;font-size:18px;line-height:1.25}
.contact-info-card p{margin:0;color:var(--ink-mute)}
.contact-info-card a{color:#fff;font-weight:900;text-decoration-color:var(--red);text-underline-offset:4px}
.contact-info-card a:hover{color:var(--red)}
@media(max-width:900px){.contact-info-grid{grid-template-columns:1fr}}
.byl-contact-form .php-email-form.row{display:grid;grid-template-columns:1fr;gap:14px;margin:0}
.byl-contact-form .form-section-card{width:100%;max-width:none}
.byl-contact-form .form-section-card .row{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px 18px}
.byl-contact-form .form-section-card [class*="col-"]{width:100%;max-width:none;margin:0}
.byl-contact-form .form-section-card .col-md-12{grid-column:1/-1}
.byl-contact-form textarea{min-height:180px;resize:vertical}
@media(max-width:760px){.byl-contact-form .form-section-card .row{grid-template-columns:1fr}}
.byl-form .player-list-toggle{border:1px solid rgba(12,14,20,.18);border-radius:10px;background:#fff;overflow:hidden}
.byl-form .player-list-toggle summary{cursor:pointer;padding:14px 18px;font-family:'Archivo',sans-serif;font-weight:900;text-transform:uppercase;color:#16171b;list-style-position:inside}
.byl-form .player-list-toggle .responsive-table{padding:0 16px 16px}
.byl-form .kit-player-table th:first-child,.byl-form .kit-player-table td:first-child{width:46px;min-width:46px;max-width:46px;padding-left:6px;padding-right:6px;text-align:center}
.byl-form .kit-player-table .form-select{font-size:15px;line-height:1.15;padding:10px 28px 10px 10px;min-height:42px}
.byl-form .kit-player-table .form-control{min-height:42px}
.kit-catalog-panel{display:flex;align-items:center;justify-content:space-between;gap:22px;margin:0 0 26px;padding:clamp(20px,3vw,32px);border:1px solid rgba(225,29,36,.55);border-radius:14px;background:linear-gradient(90deg,rgba(12,13,17,.92),rgba(12,13,17,.72)),url('/bilder/1740049630/1740049630-1780930717-bg_katalog.png') center/cover no-repeat;box-shadow:0 24px 70px rgba(0,0,0,.22)}
.kit-catalog-panel h2{margin:6px 0 8px;color:#fff;font-family:'Archivo',sans-serif;font-size:clamp(26px,3.4vw,44px);font-weight:900;text-transform:uppercase;line-height:1.02}
.kit-catalog-panel p{margin:0;color:#f0f1f5;font-weight:700}
.kit-catalog-panel .btn{min-width:150px;justify-content:center}
@media(max-width:760px){.kit-catalog-panel{align-items:flex-start;flex-direction:column}.kit-catalog-panel .btn{width:100%}}
.league-layout{display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:28px;align-items:start}
.league-sidebar{position:sticky;top:110px;border:1px solid var(--line);border-left:4px solid var(--red);border-radius:14px;background:linear-gradient(180deg,var(--surface),#101014);padding:24px;box-shadow:0 24px 70px rgba(0,0,0,.18)}
.league-sidebar h3{margin:0 0 16px;color:#fff;font-family:'Archivo',sans-serif;font-size:22px;font-weight:900;text-transform:uppercase;line-height:1.1}
.league-links{display:grid;gap:8px;margin-bottom:24px}
.league-links a{display:flex;align-items:center;justify-content:space-between;min-height:44px;padding:10px 12px;border:1px solid var(--line);border-radius:9px;color:#fff;font-family:'Archivo',sans-serif;font-size:14px;font-weight:800;text-decoration:none;text-transform:uppercase}
.league-links a:hover,.league-links a.active{border-color:rgba(225,29,36,.7);background:var(--red);color:#fff}
.league-info{border-top:1px solid var(--line);padding-top:18px}
.league-info h4{margin:0 0 10px;color:#fff;font-family:'Archivo',sans-serif;font-size:15px;font-weight:900;text-transform:uppercase;letter-spacing:.08em}
.league-info p{margin:0;color:var(--ink-mute);font-size:15px;line-height:1.55}
@media(max-width:1080px){.league-layout{grid-template-columns:1fr}.league-sidebar{position:static}.league-links{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:680px){.league-links{grid-template-columns:1fr}}
.page-hero .page-title-compact{font-size:60px;line-height:1.02;max-width:900px;overflow-wrap:anywhere}
@media(max-width:1080px){.page-hero .page-title-compact{font-size:48px;max-width:760px}}
@media(max-width:680px){.page-hero .page-title-compact{font-size:36px;line-height:1.08}}
.legal-content{display:grid;gap:18px}
.legal-content .legal-intro{margin-bottom:8px}
.legal-content .legal-intro p{max-width:860px}
.legal-content .legal-card,.legal-content .legal-contact,.legal-content .legal-confirmations{border:1px solid rgba(255,255,255,.12);border-left:4px solid var(--red);border-radius:12px;background:#15161b;padding:clamp(18px,2.6vw,26px)}
.legal-content h2{margin:0 0 16px;color:#e5002d;font-family:'Archivo',sans-serif;font-size:clamp(24px,3vw,34px);font-weight:900;line-height:1.12;text-transform:uppercase}
.legal-content h3{margin:0 0 10px;color:#fff;font-family:'Archivo',sans-serif;font-size:clamp(19px,2vw,24px);font-weight:900;text-transform:uppercase}
.legal-content h4{margin:16px 0 8px;color:#fff;font-size:18px;font-weight:900;line-height:1.35}
.legal-content p{margin:0 0 10px;color:#e6e7ec;line-height:1.65}
.legal-content p:last-child{margin-bottom:0}
.legal-content ul{margin:0 0 14px 20px;color:#e6e7ec;line-height:1.65}
.legal-content li{margin:0 0 8px}
.legal-content li::marker{color:var(--red)}
.legal-contact{background:linear-gradient(135deg,rgba(225,29,36,.14),#15161b)}
.legal-contact a{font-weight:900}
.legal-confirmations{background:#15161b;color:#fff}
.legal-confirmations h3,.legal-confirmations p{color:#fff}
.legal-checkbox{display:inline-block;width:18px;height:18px;margin-right:10px;border:2px solid #fff;border-radius:3px;vertical-align:-3px;background:#fff}
.faq-content{display:grid;gap:22px}
.faq-intro h2{margin:10px 0 12px;color:#fff;font-family:'Archivo',sans-serif;font-size:clamp(30px,4vw,48px);font-weight:900;line-height:1.05;text-transform:uppercase}
.faq-intro p{max-width:820px;margin:0;color:var(--ink-mute);font-size:18px;line-height:1.6}
.faq-list{display:grid;gap:12px}
.faq-item{border:1px solid var(--line);border-left:4px solid var(--red);border-radius:12px;background:#15161b;overflow:hidden}
.faq-item summary{position:relative;display:flex;align-items:center;min-height:60px;padding:18px 54px 18px 20px;color:#fff;font-family:'Archivo',sans-serif;font-size:clamp(18px,2vw,22px);font-weight:900;line-height:1.25;cursor:pointer;list-style:none}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:'+';position:absolute;right:20px;top:50%;transform:translateY(-50%);color:var(--red);font-size:30px;font-weight:900;line-height:1}
.faq-item[open] summary::after{content:'-'}
.faq-item div{padding:0 20px 20px}
.faq-item p{margin:0 0 10px;color:#e6e7ec;font-size:16px;line-height:1.65}
.faq-item p:last-child{margin-bottom:0}
.faq-item a{color:#fff;font-weight:900;text-decoration-color:var(--red);text-decoration-thickness:2px;text-underline-offset:4px}
.faq-item a:hover{color:var(--red)}
.org-content{display:grid;gap:24px}
.org-intro h2{margin:10px 0 12px;color:#fff;font-family:'Archivo',sans-serif;font-size:clamp(30px,4vw,48px);font-weight:900;line-height:1.05;text-transform:uppercase}
.org-intro p{max-width:880px;margin:0;color:var(--ink-mute);font-size:18px;line-height:1.6}
.org-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.org-card{border:1px solid var(--line);border-left:4px solid var(--red);border-radius:14px;background:#15161b;padding:clamp(20px,3vw,30px)}
.org-card-wide{background:linear-gradient(135deg,rgba(225,29,36,.12),#15161b)}
.org-card-label{display:block;margin-bottom:8px;color:var(--red);font-family:'Archivo',sans-serif;font-size:13px;font-weight:900;letter-spacing:.12em;text-transform:uppercase}
.org-card h3{margin:0 0 16px;color:#fff;font-family:'Archivo',sans-serif;font-size:clamp(22px,3vw,34px);font-weight:900;line-height:1.1;text-transform:uppercase}
.org-steps{display:grid;gap:12px;margin:0 0 20px;padding-left:22px;color:#e6e7ec}
.org-steps li{line-height:1.6}
.org-steps strong{color:#fff}
.org-steps a{color:#fff;font-weight:900;text-decoration-color:var(--red);text-decoration-thickness:2px;text-underline-offset:4px}
.org-steps a:hover{color:var(--red)}
.org-actions{display:flex;flex-wrap:wrap;gap:12px}
@media(max-width:900px){.org-grid{grid-template-columns:1fr}}
@media(max-width:620px){.org-actions{display:grid}.org-actions .btn{width:100%;justify-content:center}}
.helper-content{display:grid;gap:24px}
.helper-intro h2{margin:10px 0 12px;color:#fff;font-family:'Archivo',sans-serif;font-size:clamp(30px,4vw,48px);font-weight:900;line-height:1.05;text-transform:uppercase}
.helper-intro p{max-width:880px;margin:0;color:var(--ink-mute);font-size:18px;line-height:1.6}
.helper-image{overflow:hidden;margin:0;border:1px solid var(--line);border-left:4px solid var(--red);border-radius:14px;background:#15161b}
.helper-image img{display:block;width:100%;aspect-ratio:16/9;object-fit:cover}
.helper-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.helper-card{border:1px solid var(--line);border-left:4px solid var(--red);border-radius:14px;background:#15161b;padding:clamp(20px,3vw,30px)}
.helper-label{display:block;margin-bottom:8px;color:var(--red);font-family:'Archivo',sans-serif;font-size:13px;font-weight:900;letter-spacing:.12em;text-transform:uppercase}
.helper-card h3{margin:0 0 12px;color:#fff;font-family:'Archivo',sans-serif;font-size:clamp(22px,3vw,32px);font-weight:900;line-height:1.1;text-transform:uppercase}
.helper-card p{margin:0;color:#e6e7ec;line-height:1.65}
@media(max-width:980px){.helper-grid{grid-template-columns:1fr}}
.tip-content{display:grid;gap:24px}
.tip-layout{display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);gap:clamp(24px,4vw,44px);align-items:center}
.tip-image{overflow:hidden;margin:0;border:1px solid var(--line);border-left:4px solid var(--red);border-radius:14px;background:#15161b}
.tip-image img{display:block;width:100%;aspect-ratio:16/10;object-fit:cover}
.tip-copy{border:1px solid var(--line);border-left:4px solid var(--red);border-radius:14px;background:#15161b;padding:clamp(22px,3vw,34px)}
.tip-copy h2{margin:10px 0 14px;color:#fff;font-family:'Archivo',sans-serif;font-size:clamp(30px,4vw,48px);font-weight:900;line-height:1.05;text-transform:uppercase}
.tip-copy p{margin:0 0 14px;color:#e6e7ec;font-size:17px;line-height:1.65}
.tip-highlight{display:grid;gap:6px;margin-top:18px;border:1px solid rgba(225,29,36,.38);border-left:4px solid var(--red);border-radius:12px;background:rgba(225,29,36,.12);padding:16px 18px}
.tip-highlight strong{color:#fff;font-family:'Archivo',sans-serif;font-size:18px;font-weight:900;text-transform:uppercase}
.tip-highlight span{color:#e6e7ec;line-height:1.55}
@media(max-width:900px){.tip-layout{grid-template-columns:1fr}}
.byl-form .liability-list{display:grid;gap:10px;margin:4px 0 18px;padding-left:20px;color:#e6e7ec}
.byl-form .liability-list li{color:#e6e7ec;line-height:1.5}
.byl-form .form-section-card .liability-list,.byl-form .form-section-card .liability-list li{color:#16171b}
.byl-form .liability-list li::marker{color:var(--red)}
.content-panel .php-email-form input:not([type="checkbox"]):not([type="radio"]),
.content-panel .php-email-form select,
.content-panel .php-email-form textarea,
.content-panel .byl-form input:not([type="checkbox"]):not([type="radio"]),
.content-panel .byl-form select,
.content-panel .byl-form textarea{
  background:#f7f7f8;
  border:2px solid #b8bcc7;
  color:#111217;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.75),0 1px 0 rgba(0,0,0,.18);
}
.content-panel .php-email-form input::placeholder,
.content-panel .php-email-form textarea::placeholder,
.content-panel .byl-form input::placeholder,
.content-panel .byl-form textarea::placeholder{
  color:#626977;
}
.content-panel .php-email-form input:not([type="checkbox"]):not([type="radio"]):hover,
.content-panel .php-email-form select:hover,
.content-panel .php-email-form textarea:hover,
.content-panel .byl-form input:not([type="checkbox"]):not([type="radio"]):hover,
.content-panel .byl-form select:hover,
.content-panel .byl-form textarea:hover{
  border-color:#d7dbe3;
  background:#fff;
}
.content-panel .php-email-form input:not([type="checkbox"]):not([type="radio"]):focus,
.content-panel .php-email-form select:focus,
.content-panel .php-email-form textarea:focus,
.content-panel .byl-form input:not([type="checkbox"]):not([type="radio"]):focus,
.content-panel .byl-form select:focus,
.content-panel .byl-form textarea:focus{
  background:#fff;
  border-color:var(--red);
  color:#08080a;
  box-shadow:0 0 0 4px rgba(225,29,36,.22),0 10px 28px rgba(0,0,0,.26);
}
.content-panel .php-email-form input[type="checkbox"],
.content-panel .php-email-form input[type="radio"],
.content-panel .byl-form input[type="checkbox"],
.content-panel .byl-form input[type="radio"]{
  border:2px solid #d7dbe3;
  background:#fff;
  accent-color:var(--red);
}
.content-panel .php-email-form label,
.content-panel .byl-form label{
  color:#f8f8f8;
}
.content-panel .byl-form .option-row label,
.content-panel .byl-form .option-grid label,
.content-panel .byl-form .option-list label,
.content-panel .byl-form .check-line{
  color:#e6e7ec;
}
.content-panel .byl-form .form-section-card,
.content-panel .byl-form .form-section-card p,
.content-panel .byl-form .form-section-card li,
.content-panel .byl-form .form-section-card span,
.content-panel .byl-form .form-section-card label,
.content-panel .byl-form .form-section-card .check-line,
.content-panel .byl-form .form-section-card .option-row label,
.content-panel .byl-form .form-section-card .option-grid label,
.content-panel .byl-form .form-section-card .option-list label{
  color:#111217;
}
.content-panel .byl-form .form-section-card [class*="col-"]{
  margin-bottom:10px;
}
.content-panel .byl-form .form-section-card label{
  margin-bottom:4px;
}
.content-panel .byl-form .form-section-card .row{
  row-gap:6px;
}
.content-panel .byl-form .form-section-card input:not([type="checkbox"]):not([type="radio"]),
.content-panel .byl-form .form-section-card select,
.content-panel .byl-form .form-section-card textarea{
  min-height:42px;
  padding:10px 12px;
}
.content-panel .byl-form .form-section-card table{
  background:#111217;
  border:1px solid rgba(255,255,255,.18);
  border-radius:10px;
  overflow:hidden;
  margin:8px 0 12px;
}
.content-panel .byl-form .form-section-card th,
.content-panel .byl-form .form-section-card td{
  background:#111217;
  border-color:rgba(255,255,255,.18);
  color:#fff;
  padding:9px 10px;
  line-height:1.4;
}
.content-panel .byl-form .form-section-card th{
  background:#15161b;
  color:#fff;
  font-weight:900;
}
.content-panel .byl-form .form-section-card td:first-child{
  color:#fff;
  font-weight:900;
  width:150px;
}
.content-panel .byl-form .form-section-card td:last-child{
  width:120px;
  white-space:normal;
}
.content-panel .byl-form .form-section-card .camera-start{
  color:#fff;
  justify-self:start;
}
#buttons252,
.content-panel [id^="buttons"]{
  margin-top:26px;
  text-align:center;
}
#buttons252 .g-recaptcha,
.content-panel [id^="buttons"] .g-recaptcha,
#buttons252 button.normal.senden,
#buttons252 input.normal.senden,
.content-panel [id^="buttons"] button.normal.senden,
.content-panel [id^="buttons"] input.normal.senden,
[id^="buttons"] button.normal.senden,
[id^="buttons"] input.normal.senden{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:220px;
  min-height:54px;
  padding:16px 32px;
  border:0;
  border-radius:999px;
  background:linear-gradient(135deg,#f0182d 0%,#c90018 100%);
  color:#fff;
  font-family:'Archivo',sans-serif;
  font-size:15px;
  font-weight:900;
  line-height:1;
  letter-spacing:.08em;
  text-transform:uppercase;
  cursor:pointer;
  box-shadow:0 18px 38px rgba(225,29,36,.32),0 4px 0 rgba(92,0,10,.85);
  transition:transform .18s ease,box-shadow .18s ease,filter .18s ease;
}
#buttons252 .g-recaptcha:hover,
.content-panel [id^="buttons"] .g-recaptcha:hover,
#buttons252 button.normal.senden:hover,
#buttons252 input.normal.senden:hover,
.content-panel [id^="buttons"] button.normal.senden:hover,
.content-panel [id^="buttons"] input.normal.senden:hover,
[id^="buttons"] button.normal.senden:hover,
[id^="buttons"] input.normal.senden:hover{
  transform:translateY(-2px);
  filter:brightness(1.08);
  box-shadow:0 22px 46px rgba(225,29,36,.42),0 4px 0 rgba(92,0,10,.85);
}
#buttons252 .g-recaptcha:focus-visible,
.content-panel [id^="buttons"] .g-recaptcha:focus-visible,
#buttons252 button.normal.senden:focus-visible,
#buttons252 input.normal.senden:focus-visible,
.content-panel [id^="buttons"] button.normal.senden:focus-visible,
.content-panel [id^="buttons"] input.normal.senden:focus-visible,
[id^="buttons"] button.normal.senden:focus-visible,
[id^="buttons"] input.normal.senden:focus-visible{
  outline:3px solid rgba(255,255,255,.9);
  outline-offset:4px;
}
#buttons252 .g-recaptcha:active,
.content-panel [id^="buttons"] .g-recaptcha:active,
#buttons252 button.normal.senden:active,
#buttons252 input.normal.senden:active,
.content-panel [id^="buttons"] button.normal.senden:active,
.content-panel [id^="buttons"] input.normal.senden:active,
[id^="buttons"] button.normal.senden:active,
[id^="buttons"] input.normal.senden:active{
  transform:translateY(1px);
  box-shadow:0 12px 26px rgba(225,29,36,.28),0 2px 0 rgba(92,0,10,.85);
}
.byl-team-page{display:grid;gap:22px;margin-top:20px}
.team-page-section{border:1px solid var(--line);border-left:4px solid var(--red);border-radius:14px;background:#15161b;padding:clamp(20px,3vw,30px)}
.team-page-section h3{margin:0 0 18px;color:#fff;font-family:'Archivo',sans-serif;font-size:clamp(24px,3vw,34px);font-weight:900;text-transform:uppercase}
.team-contact-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
.team-contact-card{display:grid;gap:8px;border:1px solid rgba(255,255,255,.14);border-radius:12px;background:#111217;padding:18px}
.team-contact-card strong{color:#fff;font-size:20px}
.team-contact-card a,.team-contact-card span{color:var(--ink-mute)}
.team-contact-card a{font-weight:800}
.team-role{color:var(--red)!important;font-family:'Archivo',sans-serif;font-size:13px;font-weight:900;letter-spacing:.1em;text-transform:uppercase}
.matchday-box{background:linear-gradient(135deg,rgba(225,29,36,.16),#15161b)}
.matchday-head{display:flex;align-items:flex-end;justify-content:space-between;gap:18px;margin-bottom:18px}
.matchday-head span{color:var(--red);font-family:'Archivo',sans-serif;font-size:13px;font-weight:900;letter-spacing:.12em;text-transform:uppercase}
.matchday-head strong{color:#fff;font-size:22px}
.matchday-list{display:grid;gap:10px}
.matchday-list div{display:grid;grid-template-columns:1fr auto 1fr;gap:12px;align-items:center;border:1px solid rgba(255,255,255,.14);border-radius:10px;background:#111217;padding:12px 14px;color:#fff}
.matchday-list strong{color:var(--red);font-family:'Archivo',sans-serif;font-size:13px;letter-spacing:.12em;text-transform:uppercase}
.matchday-list span:last-child{text-align:right}
.matchday-free{margin:14px 0 0;color:var(--ink-mute);font-weight:800}
.tournament-mode{display:inline-flex;align-items:center;min-height:38px;margin:0 0 16px;padding:8px 14px;border-radius:999px;background:var(--red);color:#fff;font-family:'Archivo',sans-serif;font-size:13px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}
.tournament-teams{display:grid;gap:10px;border:1px solid rgba(255,255,255,.14);border-radius:10px;background:#111217;padding:14px;color:#fff}
.tournament-teams strong{font-family:'Archivo',sans-serif;font-size:15px;font-weight:900;text-transform:uppercase}
.tournament-teams ul{display:flex;flex-wrap:wrap;gap:8px;margin:0;padding:0;list-style:none}
.tournament-teams li{border:1px solid rgba(255,255,255,.18);border-radius:999px;padding:8px 12px;color:#fff;font-weight:800}
.team-photo-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.team-photo-card{overflow:hidden;border:1px solid rgba(255,255,255,.14);border-radius:12px;background:#111217}
.team-lightbox-link{display:block;color:inherit;text-decoration:none}
.team-lightbox-link:focus-visible{outline:3px solid var(--red);outline-offset:4px}
.team-photo-card img{display:block;width:100%;aspect-ratio:16/10;object-fit:cover}
.team-photo-card h4{margin:0;padding:14px 16px;color:#fff;font-family:'Archivo',sans-serif;font-size:17px;font-weight:900;text-transform:uppercase}
.byl-team-overview{display:grid;gap:24px}
.team-overview-intro h2{margin:10px 0 12px;color:#fff;font-family:'Archivo',sans-serif;font-size:clamp(30px,4vw,48px);font-weight:900;line-height:1.05;text-transform:uppercase}
.team-overview-intro p{max-width:820px;margin:0;color:var(--ink-mute);font-size:18px;line-height:1.6}
.team-class-nav{display:flex;flex-wrap:wrap;gap:10px}
.team-class-nav a{display:inline-flex;align-items:center;justify-content:center;min-height:42px;padding:9px 16px;border:1px solid var(--line);border-radius:999px;background:#15161b;color:#fff;font-family:'Archivo',sans-serif;font-weight:900;text-decoration:none}
.team-class-nav a:hover{border-color:var(--red);background:var(--red)}
.team-class-section{border:1px solid var(--line);border-left:4px solid var(--red);border-radius:14px;background:#15161b;padding:clamp(18px,3vw,28px)}
.team-class-head{display:flex;align-items:center;justify-content:space-between;gap:18px;margin-bottom:18px}
.team-class-head h3{margin:4px 0 0;color:#fff;font-family:'Archivo',sans-serif;font-size:clamp(25px,3vw,38px);font-weight:900;text-transform:uppercase}
.team-overview-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
.team-overview-card{overflow:hidden;display:grid;border:1px solid rgba(255,255,255,.14);border-radius:12px;background:#111217;color:#fff;text-decoration:none;transition:transform .2s ease,border-color .2s ease}
.team-overview-card:hover{transform:translateY(-3px);border-color:var(--red)}
.team-overview-card img{display:block;width:100%;aspect-ratio:16/10;object-fit:cover}
.team-overview-card span{padding:12px 14px;font-family:'Archivo',sans-serif;font-size:15px;font-weight:900;text-transform:uppercase}
@media(max-width:1080px){.team-overview-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:760px){.team-class-head{display:grid}.team-overview-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:520px){.team-overview-grid{grid-template-columns:1fr}.team-class-nav{display:grid;grid-template-columns:repeat(2,1fr)}}
.concept-content{display:grid;gap:22px;max-width:100%;min-width:0}
.concept-hero{border:1px solid var(--line);border-left:4px solid var(--red);border-radius:16px;background:linear-gradient(135deg,rgba(225,29,36,.13),#15161b);padding:clamp(22px,4vw,38px)}
.concept-hero h2{margin:14px 0 12px;color:#fff;font-family:'Archivo',sans-serif;font-size:clamp(32px,5vw,58px);font-weight:900;line-height:1.04;text-transform:uppercase}
.concept-hero h2 span{color:var(--red)}
.concept-hero p{max-width:920px;margin:0 0 12px;color:#e6e7ec;font-size:18px;line-height:1.65}
.concept-hero p:last-child{margin-bottom:0}
.concept-lead{color:#fff!important;font-family:'Archivo',sans-serif;font-size:clamp(21px,3vw,30px)!important;font-weight:900;text-transform:uppercase}
.concept-image{margin:24px 0 0;max-width:100%;overflow:hidden;border-radius:14px}
.concept-image img{display:block;width:100%;max-width:100%;height:auto!important;aspect-ratio:16/9;object-fit:cover;border-radius:14px;border:1px solid rgba(255,255,255,.14)}
.concept-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.concept-card{min-width:0;border:1px solid var(--line);border-left:4px solid var(--red);border-radius:14px;background:#15161b;padding:clamp(20px,3vw,30px);box-shadow:0 24px 70px rgba(0,0,0,.16)}
.concept-card-highlight{background:linear-gradient(180deg,#191a20,#111217)}
.concept-card h3{margin:0 0 12px;color:#fff;font-family:'Archivo',sans-serif;font-size:clamp(23px,3vw,34px);font-weight:900;line-height:1.08;text-transform:uppercase}
.concept-card p{margin:0 0 12px;color:#e6e7ec;line-height:1.65}
.concept-card p:last-child{margin-bottom:0}
.concept-benefits{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.concept-benefits article,.concept-benefits div{display:grid;gap:5px;border:1px solid rgba(255,255,255,.12);border-radius:10px;background:#111217;padding:14px}
.concept-benefits strong{color:#fff;font-family:'Archivo',sans-serif;font-size:15px;font-weight:900;text-transform:uppercase}
.concept-benefits span{color:var(--ink-mute);line-height:1.5}
.concept-player{background:linear-gradient(135deg,rgba(225,29,36,.15),#15161b)}
.concept-player .btn{margin-top:8px}
.concept-list{display:grid;gap:10px;margin:0;padding:0;list-style:none}
.concept-list li{position:relative;padding:13px 14px 13px 34px;border:1px solid rgba(255,255,255,.12);border-radius:10px;background:#111217;color:#e6e7ec;line-height:1.55}
.concept-list li::before{content:"";position:absolute;left:14px;top:22px;width:8px;height:8px;border-radius:50%;background:var(--red)}
.concept-list strong{color:#fff}
@media(max-width:820px){.concept-grid,.concept-benefits{grid-template-columns:1fr}.concept-hero p{font-size:16px}}
@media(max-width:760px){
  .concept-content{gap:16px}
  .concept-hero,.concept-card{padding:16px;border-radius:12px}
  .concept-hero h2{font-size:clamp(28px,9vw,38px);line-height:1.06;overflow-wrap:anywhere}
  .concept-card h3{font-size:clamp(21px,7vw,28px);line-height:1.12;overflow-wrap:anywhere}
  .concept-lead{font-size:clamp(17px,5vw,21px)!important;line-height:1.25}
  .concept-hero p,.concept-card p,.concept-list li{font-size:16px;line-height:1.55}
  .concept-image{margin-top:18px;border-radius:10px}
  .concept-image img{border-radius:10px}
  .concept-benefits article,.concept-benefits div{padding:12px}
  .concept-player .btn{width:100%;justify-content:center}
}
@media(max-width:420px){
  .concept-hero,.concept-card{padding:14px}
  .concept-hero h2{font-size:clamp(25px,8.8vw,32px)}
  .concept-list li{padding:12px 12px 12px 30px}
  .concept-list li::before{left:12px;top:20px}
}
.byl-lightbox{position:fixed;inset:0;z-index:9999;display:grid;place-items:center;padding:24px;background:rgba(0,0,0,.86)}
.byl-lightbox[hidden]{display:none}
.byl-lightbox__inner{position:relative;display:grid;gap:12px;max-width:min(1100px,94vw);max-height:92vh}
.byl-lightbox__image{display:block;max-width:100%;max-height:82vh;border:1px solid rgba(255,255,255,.18);border-radius:12px;object-fit:contain;background:#111217}
.byl-lightbox__caption{margin:0;color:#fff;font-weight:900;text-align:center}
.byl-lightbox__close{position:absolute;top:-18px;right:-18px;display:grid;place-items:center;width:44px;height:44px;border:0;border-radius:999px;background:var(--red);color:#fff;font-size:28px;line-height:1;cursor:pointer}
.byl-lightbox__close:focus-visible{outline:3px solid #fff;outline-offset:3px}
@media(max-width:900px){.team-contact-grid,.team-photo-grid{grid-template-columns:1fr 1fr}}
@media(max-width:620px){.team-contact-grid,.team-photo-grid{grid-template-columns:1fr}.matchday-head{display:grid}.matchday-list div{grid-template-columns:1fr}.matchday-list span:last-child{text-align:left}}
.scroll-top{position:fixed;right:22px;bottom:22px;z-index:950;display:grid;place-items:center;width:48px;height:48px;border:1px solid rgba(255,255,255,.2);border-radius:999px;background:var(--red);color:#fff;font-family:'Archivo',sans-serif;font-size:24px;font-weight:900;line-height:1;cursor:pointer;box-shadow:0 16px 36px rgba(0,0,0,.34);opacity:0;visibility:hidden;transform:translateY(12px);transition:opacity .2s ease,visibility .2s ease,transform .2s ease,background .2s ease}
.scroll-top.is-visible{opacity:1;visibility:visible;transform:translateY(0)}
.scroll-top:hover{background:var(--red-glow)}
.scroll-top:focus-visible{outline:3px solid #fff;outline-offset:3px}
@media(max-width:620px){.scroll-top{right:14px;bottom:14px;width:44px;height:44px;font-size:22px}}
@media(max-width:760px){.byl-form .form-section-title{align-items:flex-start;font-size:22px!important}.byl-form .form-section-no{width:58px;min-width:58px;height:38px}.byl-form .option-grid,.byl-form .privacy-grid{grid-template-columns:1fr}.byl-form .option-row{display:grid;grid-template-columns:1fr}.byl-form .check-line.compact{margin-top:10px}}

/* ============================================================
   Mobile polish pass
   ============================================================ */
@media(max-width:1080px){
  .nav{position:sticky}
  html.menu-open{overflow:hidden}
  .nav .wrap{height:72px;gap:12px}
  .menu{
    top:calc(100% + 8px);
    max-height:calc(100vh - 108px);
    overflow-y:auto;
    overscroll-behavior:contain;
    -webkit-overflow-scrolling:touch;
    box-shadow:0 24px 70px rgba(0,0,0,.48);
    gap:2px;
    padding:10px;
  }
  .menu-group{display:grid;gap:0}
  .menu a{min-height:38px;display:flex;align-items:center;white-space:normal;overflow-wrap:anywhere;padding:7px 11px}
  .menu-group>.has{min-height:38px}
  .submenu{margin:2px 0 6px;padding:3px 0 3px 10px}
  .submenu a{min-height:30px;padding:5px 9px;font-size:13px;line-height:1.25}
  .submenu{max-height:none}
}
@media(max-width:1080px){
  .menu .menu-group .submenu{
    display:none;
    margin:0 0 5px;
    padding:0 0 0 12px;
    border-left:2px solid var(--red);
  }
  .menu .menu-group.is-submenu-open .submenu{display:block}
  .menu .menu-group>.has{
    justify-content:space-between;
    border-radius:8px;
  }
  .menu .menu-group>.has::after{
    margin-left:auto;
    transition:transform .18s ease;
  }
  .menu .menu-group.is-submenu-open>.has{
    color:#fff;
    background:rgba(255,255,255,.05);
  }
  .menu .menu-group.is-submenu-open>.has::after{transform:rotate(180deg)}
}
@media(max-width:760px){
  html,body{max-width:100%;overflow-x:hidden}
  .wrap{padding-left:16px;padding-right:16px}
  .utility .wrap{justify-content:center}
  .utility .u-right{display:none}
  .brand{gap:10px;min-width:0}
  .brand img{width:46px;height:46px}
  .brand .b-text b{font-size:14px}
  .brand .b-text span{font-size:9px;letter-spacing:.22em}
  .burger{width:42px;height:42px;flex-shrink:0}
  .hero{
    min-height:auto;
    padding:42px 0 46px;
    background-position:center center;
  }
  .hero-grid{min-height:0}
  .hero-badge{margin-bottom:18px;max-width:100%;flex-wrap:wrap;border-radius:18px}
  .hero h1{
    font-size:clamp(35px,12vw,52px);
    line-height:.96;
    letter-spacing:0;
    overflow-wrap:anywhere;
  }
  .hero .lede{max-width:100%;margin-top:20px;font-size:17px;line-height:1.55}
  .hero-actions,.e-actions,.home-faq-actions,.studio-actions{display:grid;width:100%;grid-template-columns:1fr;gap:10px}
  .hero-actions .btn,.e-actions .btn,.home-faq-actions .btn,.studio-actions .btn{width:100%;justify-content:center}
  .features{margin-top:34px}
  .feat{padding:22px 18px}
  .section{padding:52px 0}
  .sec-head{margin-bottom:28px}
  .sec-head h2,.home-faq-panel h2,.cms-cta-panel h2,.team-overview-intro h2,.faq-intro h2{
    font-size:clamp(28px,9vw,38px);
    line-height:1.08;
    overflow-wrap:anywhere;
  }
  .sec-head p,.home-faq-panel p,.cms-cta-panel p,.team-overview-intro p,.faq-intro p{font-size:16px;line-height:1.58}
  .enroll{padding:24px 18px}
  .match-result .score{font-size:38px}
  .page-hero{padding:42px 0 28px}
  .page-hero h1,.page-hero .page-title-compact{
    font-size:clamp(32px,10vw,44px);
    line-height:1.08;
    letter-spacing:0;
    overflow-wrap:anywhere;
  }
  .page-hero p{font-size:16px;line-height:1.58}
  .side-card{padding:20px}
  .content-section{padding-top:20px}
  .content-grid,.content-panel,.content-panel .php-email-form,.byl-form,.byl-form .php-email-form{min-width:0;max-width:100%;overflow:hidden}
  .content-panel{padding:14px;border-radius:14px}
  .content-panel .php-email-form{padding:12px;border-radius:12px}
  .content-panel .row{margin-left:0;margin-right:0;display:grid;grid-template-columns:1fr;gap:12px}
  .content-panel [class*="col-"]{width:100%;padding-left:0;padding-right:0;margin-bottom:0}
  .content-panel input,.content-panel select,.content-panel textarea,.form-control,.form-select{
    min-width:0;
    max-width:100%;
    font-size:16px;
  }
  .content-panel .form-check-inline{display:flex;margin-right:0}
  .content-panel table{display:block;width:100%;max-width:100%;min-width:0;overflow-x:auto}
  .byl-form .responsive-table table{min-width:680px}
  .byl-form .responsive-table table:not(.kit-player-table) {
    display:table;
    min-width:0;
    border-collapse:separate;
    border-spacing:0 10px;
    background:transparent;
  }
  .byl-form .responsive-table table:not(.kit-player-table) thead{display:none}
  .byl-form .responsive-table table:not(.kit-player-table) tbody,
  .byl-form .responsive-table table:not(.kit-player-table) tr,
  .byl-form .responsive-table table:not(.kit-player-table) td{display:block;width:100%}
  .byl-form .responsive-table table:not(.kit-player-table) tr{
    border:1px solid rgba(12,14,20,.14);
    border-radius:12px;
    background:#111217;
    overflow:hidden;
  }
  .byl-form .responsive-table table:not(.kit-player-table) td{
    border:0;
    border-bottom:1px solid rgba(255,255,255,.08);
    padding:10px 12px;
    color:#fff;
    text-align:left;
    white-space:normal;
    overflow-wrap:anywhere;
  }
  .byl-form .responsive-table table:not(.kit-player-table) td:last-child{border-bottom:0}
  .byl-form .responsive-table table:not(.kit-player-table) td::before{
    content:attr(data-label);
    display:block;
    margin-bottom:4px;
    color:var(--red);
    font-family:'Archivo',sans-serif;
    font-size:12px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
  }
  .byl-team-registration .player-list-toggle table:not(.kit-player-table) td:nth-child(1)::before{content:"Nr"}
  .byl-team-registration .player-list-toggle table:not(.kit-player-table) td:nth-child(2)::before{content:"Vorname"}
  .byl-team-registration .player-list-toggle table:not(.kit-player-table) td:nth-child(3)::before{content:"Nachname"}
  .byl-team-registration .player-list-toggle table:not(.kit-player-table) td:nth-child(4)::before{content:"Geburtsdatum"}
  .byl-team-registration .player-list-toggle table:not(.kit-player-table) td:nth-child(5)::before{content:"Einzelanmeldung"}
  .content-panel .responsive-table,.byl-form .responsive-table{
    margin-left:-4px;
    margin-right:-4px;
    padding-bottom:6px;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
  }
  .byl-form .form-intro{margin-bottom:18px}
  .byl-form .form-section-card{width:100%;max-width:100%;min-width:0;padding:14px;border-radius:12px;overflow:hidden}
  .byl-form .form-section-card .row{width:100%;max-width:100%;min-width:0;margin-left:0;margin-right:0}
  .byl-form .form-section-card [class*="col-"]{max-width:100%;min-width:0}
  .byl-form .form-section-card + .form-section-card{margin-top:12px}
  .byl-form .form-section-title{
    gap:9px;
    margin-bottom:14px;
    font-size:clamp(20px,6.8vw,26px)!important;
    line-height:1.12;
    overflow-wrap:normal;
    word-break:normal;
  }
  .byl-form .form-section-title > span:last-child{min-width:0;hyphens:auto}
  .byl-form .form-section-no{width:54px;min-width:54px;height:36px}
  .byl-form .option-row,.byl-form .option-grid,.byl-form .option-list{gap:10px}
  .byl-form .option-row label,.byl-form .option-grid label,.byl-form .option-list label,.byl-form .check-line{line-height:1.4}
  .byl-form label,.byl-form p,.byl-form li,.byl-form span{overflow-wrap:anywhere}
  .byl-form input,.byl-form select,.byl-form textarea{width:100%;max-width:100%;min-width:0}
  .byl-form .privacy-card,.byl-form .privacy-rights,.byl-form .newsletter-consent{padding:14px}
  .byl-form .camera-actions{display:grid;grid-template-columns:1fr;width:100%}
  .byl-form .camera-actions .btn,.byl-form .camera-start{width:100%;justify-content:center}
  .byl-form .kit-player-table{min-width:760px}
  .byl-form .kit-player-table .form-select{font-size:14px;padding-right:24px}
  .byl-kit-order .player-list-toggle .responsive-table{overflow:visible;padding:0 10px 14px}
  .byl-kit-order .kit-player-table{display:block;width:100%;min-width:0;border:0;border-radius:0;background:transparent;overflow:visible;margin:0}
  .byl-kit-order .kit-player-table thead{display:none}
  .byl-kit-order .kit-player-table tbody,
  .byl-kit-order .kit-player-table tr,
  .byl-kit-order .kit-player-table td{display:block;width:100%}
  .byl-kit-order .kit-player-table tr{margin:0 0 12px;border:1px solid rgba(12,14,20,.14);border-radius:12px;background:#111217;overflow:hidden}
  .byl-kit-order .kit-player-table td,
  .byl-kit-order .kit-player-table td:first-child,
  .byl-kit-order .kit-player-table td:last-child{width:100%;min-width:0;max-width:none;border:0;border-bottom:1px solid rgba(255,255,255,.08);padding:10px 12px;text-align:left;color:#fff;white-space:normal}
  .byl-kit-order .kit-player-table td:last-child{border-bottom:0}
  .byl-kit-order .kit-player-table td::before{display:block;margin-bottom:5px;color:var(--red);font-family:'Archivo',sans-serif;font-size:12px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}
  .byl-kit-order .kit-goalie-table td:nth-child(1)::before{content:"Position"}
  .byl-kit-order .kit-goalie-table td:nth-child(2)::before{content:"Nummer"}
  .byl-kit-order .kit-goalie-table td:nth-child(3)::before{content:"Spieler/in"}
  .byl-kit-order .kit-goalie-table td:nth-child(4)::before{content:"Trikotgröße"}
  .byl-kit-order .kit-field-player-table td:nth-child(1)::before{content:"Nr."}
  .byl-kit-order .kit-field-player-table td:nth-child(2)::before{content:"Nummer"}
  .byl-kit-order .kit-field-player-table td:nth-child(3)::before{content:"Spieler/in"}
  .byl-kit-order .kit-field-player-table td:nth-child(4)::before{content:"Trikotgröße"}
  .byl-kit-order .kit-field-player-table td:nth-child(5)::before{content:"Shortgröße"}
  .byl-kit-order .kit-field-player-table td:nth-child(6)::before{content:"Sportstutzen"}
  .byl-kit-order .kit-player-table .form-control,
  .byl-kit-order .kit-player-table .form-select{width:100%;min-width:0;max-width:100%;font-size:16px}
  .kit-catalog-panel{padding:20px 16px;background-position:center}
  .kit-catalog-panel h2{font-size:clamp(25px,8vw,34px)}
  .studio-panel,.studio-controls{grid-template-columns:1fr}
  .studio-card,.studio-preview-card{padding:18px}
  .studio-swatches{grid-template-columns:1fr 1fr}
  .studio-logo-preview{min-height:320px}
  .studio-logo-preview svg{width:min(240px,100%)}
  .home-faq-panel,.cms-cta-panel,.team-class-section,.team-page-section,.legal-content .legal-card,.legal-content .legal-contact,.legal-content .legal-confirmations{padding:18px;border-radius:12px}
  .faq-item summary{padding:16px 46px 16px 16px;min-height:56px}
  .legal-content h2{font-size:clamp(23px,7vw,30px);overflow-wrap:anywhere}
  .legal-content h3{font-size:clamp(19px,6vw,23px)}
  .legal-content a,.content-panel a{overflow-wrap:anywhere}
  .team-class-nav{grid-template-columns:1fr}
  .team-class-head{gap:10px}
  .team-photo-card h4,.team-overview-card span{font-size:14px}
  .foot-grid{gap:24px}
  .foot-col a,.foot-col p,.foot-bottom span{overflow-wrap:anywhere}
  .foot-bottom{display:grid;gap:10px;text-align:left}
}
@media(max-width:420px){
  .wrap{padding-left:14px;padding-right:14px}
  .brand .b-text{max-width:156px}
  .page-hero{padding:34px 0 24px}
  .page-hero h1,.page-hero .page-title-compact{font-size:clamp(26px,8.4vw,34px);line-height:1.08;overflow-wrap:anywhere}
  .hero h1{font-size:clamp(32px,11.5vw,46px)}
  .hero-badge{font-size:12px}
  .hero-badge .pill{font-size:11px}
  .btn{min-height:48px;padding:13px 17px;font-size:13px;letter-spacing:.04em}
  .byl-form .form-section-title{font-size:20px!important}
  .byl-form .form-section-no{width:48px;min-width:48px;height:32px}
  #buttons252 .g-recaptcha,.content-panel [id^="buttons"] .g-recaptcha,#buttons252 button.normal.senden,#buttons252 input.normal.senden,.content-panel [id^="buttons"] button.normal.senden,.content-panel [id^="buttons"] input.normal.senden,[id^="buttons"] button.normal.senden,[id^="buttons"] input.normal.senden{width:100%;min-width:0}
  .studio-swatches{grid-template-columns:1fr}
}
