:root {
  --bg: #141417;
  --bg-2: #1a1a1f;
  --panel: #1f1f25;
  --panel-2: #26262d;
  --line: #33333c;
  --line-soft: #2a2a31;
  --ink: #f4f3f1;
  --muted: #a6a6b0;
  --muted-2: #76767f;
  --orange: #e8461e;
  --orange-2: #ff5a2b;
  --orange-deep: #b8330f;
  --gold: #f2b233;
  --teal: #36b6a6;
  --shadow: 0 24px 60px -28px rgba(0,0,0,.85);
  --radius: 14px;
  --maxw: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 70px; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Barlow", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--orange); color: #fff; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 {
  font-family: "Barlow Condensed", "Barlow", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.eyebrow {
  font-family: "Barlow Semi Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  font-weight: 700;
  font-size: 13px;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--orange); display: inline-block; }

/* ---------- NAV ---------- */
header.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s;
  border-bottom: 1px solid transparent;
}
header.nav.scrolled {
  background: rgba(18,18,21,.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  box-shadow: 0 10px 30px -20px rgba(0,0,0,.9);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 13px; font-family: "Barlow Condensed"; text-transform: uppercase; }
.brand img { height: 46px; width: auto; filter: drop-shadow(0 4px 10px rgba(0,0,0,.5)); }
.brand .bt { line-height: .92; }
.brand .bt b { display: block; font-weight: 700; font-size: 21px; letter-spacing: .5px; }
.brand .bt span { display: block; font-family: "Barlow Semi Condensed"; font-size: 10.5px; letter-spacing: 3px; color: var(--gold); font-weight: 700; }

nav.links { display: flex; align-items: center; gap: 4px; }
nav.links a {
  font-family: "Barlow Semi Condensed", sans-serif;
  text-transform: uppercase; font-weight: 600; font-size: 14.5px; letter-spacing: 1px;
  color: var(--muted); padding: 9px 14px; border-radius: 8px; position: relative; transition: color .2s;
}
nav.links a:hover { color: var(--ink); }
nav.links a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
nav.links a:hover::after, nav.links a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 10px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: "Barlow Semi Condensed", sans-serif; text-transform: uppercase; font-weight: 700;
  letter-spacing: 1.2px; font-size: 14.5px;
  padding: 12px 22px; border-radius: 9px; cursor: pointer; border: none;
  transition: transform .15s ease, box-shadow .2s, background .2s, color .2s;
}
.btn i { font-size: 18px; line-height: 1; }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 12px 26px -12px rgba(232,70,30,.8); }
.btn-primary:hover { background: var(--orange-2); transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(232,70,30,.9); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .3s; }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); z-index: 55;
  background: var(--bg-2); border-left: 1px solid var(--line);
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  padding: 96px 28px 32px; display: flex; flex-direction: column; gap: 6px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: "Barlow Condensed"; text-transform: uppercase; font-size: 23px; font-weight: 700;
  color: var(--muted); padding: 13px 4px; border-bottom: 1px solid var(--line-soft); letter-spacing: .5px;
}
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu .btn { margin-top: 18px; }
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 54; opacity: 0; pointer-events: none; transition: opacity .3s; }
.overlay.open { opacity: 1; pointer-events: auto; }

/* ---------- HERO ---------- */
.hero { position: relative; padding: 118px 0 84px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: #0c0608 url('../assets/wallpaper.png') no-repeat;
  background-position: 72% center;
  background-size: cover;
}
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 2%, rgba(18,18,21,.96) 40%, rgba(18,18,21,.62) 72%, rgba(18,18,21,.4) 100%),
    linear-gradient(180deg, rgba(18,18,21,.25) 0%, rgba(18,18,21,0) 30%, var(--bg) 97%);
}
.hero-bg::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 220px 40px rgba(0,0,0,.6); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(52px,8vw,104px); font-style: italic; letter-spacing: 0; margin: 18px 0 6px; line-height: .86; }
.hero h1 .l1 { display: block; color: var(--ink); }
.hero h1 .l2 { display: block; color: transparent; -webkit-text-stroke: 2px var(--orange); text-stroke: 2px var(--orange); }
.hero .sub { font-family: "Barlow Semi Condensed"; text-transform: uppercase; letter-spacing: 3px; color: var(--gold); font-weight: 700; font-size: 15px; margin-bottom: 22px; }
.hero p.lead { color: var(--muted); font-size: 19px; max-width: 520px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 30px; margin-top: 40px; flex-wrap: wrap; }
.hero-stats .st { text-align: center; }
.hero-stats .st b { font-family: "Barlow Condensed"; font-size: 40px; color: var(--ink); display: block; line-height: 1; }
.hero-stats .st b em { color: var(--orange); font-style: normal; }
.hero-stats .st span { font-family: "Barlow Semi Condensed"; text-transform: uppercase; letter-spacing: 1.5px; font-size: 12px; color: var(--muted-2); font-weight: 600; }

/* ---------- NEXT GAME CARD ---------- */
.next-card {
  background: linear-gradient(160deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.next-card::before { content: ""; position: absolute; top: 0; left: 0; width: 5px; height: 100%; background: linear-gradient(var(--orange), var(--gold)); }
.next-card .nc-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 22px; }
.next-card .nc-title { display: flex; flex-direction: column; gap: 6px; }
.next-card .nc-head .lbl { font-family: "Barlow Semi Condensed"; text-transform: uppercase; letter-spacing: 2px; font-size: 12px; color: var(--orange); font-weight: 700; }
.nc-team { display: flex; align-items: center; gap: 10px; font-family: "Barlow Condensed"; text-transform: uppercase; font-weight: 700; font-size: 19px; letter-spacing: .4px; color: var(--ink); }
.np { font-family: "Barlow Semi Condensed"; text-transform: uppercase; letter-spacing: 1px; font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 100px; }
.np.home { background: rgba(232,70,30,.16); color: var(--orange-2); }
.np.away { background: rgba(242,178,51,.16); color: var(--gold); }
.nc-timer { flex: none; width: 36px; height: 36px; padding: 0; border: none; background: none; cursor: pointer; position: relative; }
.nc-timer svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.nc-timer circle { fill: none; stroke-width: 3; }
.nc-timer .track { stroke: var(--line); }
.nc-timer .fill { stroke: var(--orange); stroke-linecap: round; stroke-dasharray: 94.25; stroke-dashoffset: 94.25; animation: ringFill 6s linear infinite; }
@keyframes ringFill { from { stroke-dashoffset: 94.25; } to { stroke-dashoffset: 0; } }
.pill { font-family: "Barlow Semi Condensed"; text-transform: uppercase; letter-spacing: 1px; font-size: 11px; font-weight: 700; padding: 5px 11px; border-radius: 100px; }
.pill.home { background: rgba(232,70,30,.16); color: var(--orange-2); }
.pill.away { background: rgba(242,178,51,.16); color: var(--gold); }
.matchup { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.matchup .tm { display: flex; flex-direction: column; align-items: center; gap: 12px; flex: 1; text-align: center; }
.matchup .tm .crest { width: 100%; height: 114px; display: grid; place-items: center; }
.matchup .tm .crest .ini { width: 64px; height: 64px; border-radius: 14px; display: grid; place-items: center; background: var(--panel-2); border: 1px solid var(--line); font-family: "Barlow Condensed"; font-size: 27px; font-weight: 700; color: var(--muted); }
.matchup .tm.us .crest img { width: 114px; height: 114px; object-fit: contain; filter: drop-shadow(0 7px 18px rgba(0,0,0,.55)); }
.matchup .tm .nm { font-family: "Barlow Condensed"; text-transform: uppercase; font-size: 15px; font-weight: 700; letter-spacing: .5px; }
.matchup .vs { font-family: "Barlow Condensed"; font-style: italic; font-size: 26px; color: var(--muted-2); align-self: center; margin-top: 34px; }
.next-card .nc-foot { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; font-family: "Barlow Semi Condensed"; font-size: 14px; color: var(--muted); }
.next-card .nc-foot b { color: var(--ink); }
.next-card .nc-foot span { display: inline-flex; align-items: center; gap: 8px; }
.next-card .nc-foot i { color: var(--orange); font-size: 17px; }
.nc-dots { display: flex; justify-content: center; gap: 9px; margin-top: 18px; }
.nc-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; padding: 0; background: var(--line); cursor: pointer; transition: .25s; }
.nc-dots button:hover { background: var(--muted-2); }
.nc-dots button.active { background: var(--orange); width: 24px; border-radius: 100px; }

/* ---------- SECTION SHELL ---------- */
section.block { padding: 68px 0 92px; position: relative; }
section.block.alt { background: var(--bg-2); }
.sec-head { margin-bottom: 48px; max-width: 720px; }
.sec-head h2 { font-size: clamp(34px,5vw,58px); font-style: italic; margin: 14px 0 0; }
.sec-head h2 em { font-style: italic; color: var(--orange); }
.sec-head p { color: var(--muted); margin-top: 14px; font-size: 18px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- TEAM ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.team-group { margin-bottom: 46px; }
.team-group:last-child { margin-bottom: 0; }
.team-group-head { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.team-group-head h3 { font-family: "Barlow Condensed"; font-style: italic; text-transform: uppercase; font-size: 30px; letter-spacing: .5px; }
.team-group-head .day-pill { font-family: "Barlow Semi Condensed"; text-transform: uppercase; letter-spacing: 2px; font-size: 12px; font-weight: 700; color: var(--gold); background: rgba(242,178,51,.12); padding: 6px 14px; border-radius: 100px; }
.team-group-head::after { content: ""; flex: 1; height: 1px; background: var(--line-soft); }
.player { background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; position: relative; transition: transform .25s ease, border-color .25s, box-shadow .25s; }
.player:hover { transform: translateY(-6px); border-color: var(--orange); box-shadow: var(--shadow); }
.player .ph {
  aspect-ratio: 1/1.05; position: relative; display: grid; place-items: center;
  background: radial-gradient(120% 90% at 50% 0%, #2a2a31, #16161a 70%);
  overflow: hidden;
}
.player .ph .mono { font-family: "Barlow Condensed"; font-style: italic; font-size: 86px; font-weight: 800; color: rgba(255,255,255,.06); }
.player .ph svg { position: absolute; bottom: -6px; width: 78%; height: auto; opacity: .92; }
.player .badge { position: absolute; top: 12px; left: 12px; z-index: 3; }
.player .num { position: absolute; top: 12px; right: 14px; font-family: "Barlow Condensed"; font-style: italic; font-size: 30px; font-weight: 800; color: rgba(255,255,255,.12); z-index: 3; }
.player .info { padding: 16px 18px 18px; }
.player .info .role { font-family: "Barlow Semi Condensed"; text-transform: uppercase; letter-spacing: 2px; font-size: 11px; font-weight: 700; color: var(--orange); }
.player .info h3 { font-size: 24px; margin: 4px 0 0; letter-spacing: .3px; }
.player .stats { display: flex; gap: 16px; margin-top: 13px; padding-top: 13px; border-top: 1px solid var(--line-soft); }
.player .stats div { line-height: 1; }
.player .stats b { font-family: "Barlow Condensed"; font-size: 21px; display: block; color: var(--ink); }
.player .stats span { font-family: "Barlow Semi Condensed"; text-transform: uppercase; font-size: 10px; letter-spacing: 1px; color: var(--muted-2); font-weight: 600; }

/* ---------- TABELLE & SPIELE ---------- */
.team-switch { display: flex; gap: 12px; margin-bottom: 22px; flex-wrap: wrap; }
.team-switch button { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; background: var(--panel); border: 1px solid var(--line-soft); border-radius: 12px; padding: 13px 24px; cursor: pointer; transition: .2s; text-align: left; }
.team-switch button b { font-family: "Barlow Condensed"; font-style: italic; text-transform: uppercase; font-size: 21px; font-weight: 700; letter-spacing: .5px; line-height: 1; color: var(--ink); }
.team-switch button span { font-family: "Barlow Semi Condensed"; text-transform: uppercase; letter-spacing: 1.5px; font-size: 11px; color: var(--muted-2); font-weight: 700; }
.team-switch button:hover { border-color: var(--line); }
.team-switch button.active { border-color: var(--orange); background: linear-gradient(160deg, rgba(232,70,30,.16), var(--panel)); }
.team-switch button.active b { color: var(--orange); }
.team-switch button.active span { color: var(--orange-2); }
.tabs { display: inline-flex; gap: 6px; background: var(--panel); border: 1px solid var(--line-soft); border-radius: 11px; padding: 6px; margin-bottom: 30px; flex-wrap: wrap; }
.tabs button { font-family: "Barlow Semi Condensed"; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; font-size: 14px; color: var(--muted); background: none; border: none; padding: 11px 22px; border-radius: 8px; cursor: pointer; transition: .2s; }
.tabs button:hover { color: var(--ink); }
.tabs button.active { background: var(--orange); color: #fff; }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fade .4s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.table-card { background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
table.league { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
table.league thead th { font-family: "Barlow Semi Condensed"; text-transform: uppercase; letter-spacing: 1.5px; font-size: 12px; font-weight: 700; color: var(--muted-2); text-align: center; padding: 16px 10px; background: var(--bg-2); border-bottom: 1px solid var(--line); }
table.league thead th.l, table.league td.l { text-align: left; }
table.league tbody td { padding: 15px 10px; text-align: center; border-bottom: 1px solid var(--line-soft); font-size: 16px; color: var(--muted); }
table.league tbody tr:last-child td { border-bottom: none; }
table.league .team-cell { display: flex; align-items: center; gap: 12px; text-align: left; }
table.league .team-cell .mini { width: 30px; height: 30px; border-radius: 7px; background: var(--panel-2); display: grid; place-items: center; font-family: "Barlow Condensed"; font-weight: 700; font-size: 14px; color: var(--muted-2); flex: none; }
table.league .pos { font-family: "Barlow Condensed"; font-weight: 700; font-size: 18px; color: var(--ink); }
table.league .pts { font-family: "Barlow Condensed"; font-weight: 700; font-size: 19px; color: var(--ink); }
table.league tr.us { background: linear-gradient(90deg, rgba(232,70,30,.12), transparent); }
table.league tr.us td { color: var(--ink); }
table.league tr.us .mini { background: #16161a; border: 1px solid var(--orange); padding: 3px; color: var(--orange); }
table.league tr.us .team-cell b { color: var(--orange); }
table.league tr.us .pos { color: var(--orange); }
table.league tr:hover td { background: rgba(255,255,255,.02); }
.team-cell b { font-family: "Barlow Condensed"; font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; color: var(--ink); }
.form-dots { display: inline-flex; gap: 4px; }
.form-dots i { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.form-dots i.w { background: var(--orange); }
.form-dots i.l { background: var(--line); }

/* ---------- FIXTURES ---------- */
.fixtures { display: grid; gap: 12px; }
.fixture { background: var(--panel); border: 1px solid var(--line-soft); border-radius: 12px; padding: 18px 22px; display: grid; grid-template-columns: 120px 1fr auto; align-items: center; gap: 20px; transition: border-color .2s, transform .2s; }
.fixture:hover { border-color: var(--line); transform: translateX(4px); }
.fixture .date { font-family: "Barlow Condensed"; line-height: 1; }
.fixture .date b { font-size: 24px; display: block; color: var(--ink); }
.fixture .date span { font-family: "Barlow Semi Condensed"; font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted-2); font-weight: 600; }
.fixture .teams { display: flex; align-items: center; gap: 14px; font-family: "Barlow Condensed"; text-transform: uppercase; font-size: 19px; font-weight: 700; flex-wrap: wrap; }
.fixture .teams .vs { color: var(--muted-2); font-style: italic; font-size: 15px; }
.fixture .teams .hl { color: var(--orange); }
.fixture .res { font-family: "Barlow Condensed"; font-size: 26px; font-weight: 800; letter-spacing: 1px; }
.fixture .res.win { color: var(--orange); }
.fixture .res.loss { color: var(--muted-2); }
.fixture .meta { font-family: "Barlow Semi Condensed"; font-size: 13px; color: var(--muted); text-align: right; line-height: 1.3; }
.fixture .meta b { display: block; color: var(--ink); font-size: 15px; }

/* ---------- SPIELSTÄTTE ---------- */
.venue-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.venue-info { display: flex; flex-direction: column; gap: 22px; }
.info-row { display: flex; gap: 16px; align-items: flex-start; }
.info-row .ic { width: 46px; height: 46px; border-radius: 11px; background: var(--panel); border: 1px solid var(--line); display: grid; place-items: center; flex: none; color: var(--orange); }
.info-row .ic svg { width: 22px; height: 22px; }
.info-row h4 { font-family: "Barlow Condensed"; text-transform: uppercase; font-size: 18px; letter-spacing: .5px; margin-bottom: 2px; }
.info-row p { color: var(--muted); font-size: 16px; }
.info-row p b { color: var(--ink); font-weight: 600; }
.venue-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); position: relative; min-height: 380px; background: var(--bg-2); box-shadow: var(--shadow); display: grid; place-items: center; }
.venue-map .map-grid { position: absolute; inset: 0; background-image: linear-gradient(var(--line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--line-soft) 1px, transparent 1px); background-size: 42px 42px; opacity: .5; }
.venue-map .road { position: absolute; background: var(--panel-2); }
.venue-map .r1 { top: 38%; left: -5%; width: 110%; height: 18px; transform: rotate(-7deg); }
.venue-map .r2 { top: -5%; left: 58%; width: 16px; height: 110%; transform: rotate(6deg); }
.venue-map .pin { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.venue-map .pin .dot { width: 58px; height: 58px; border-radius: 50% 50% 50% 0; background: var(--orange); transform: rotate(-45deg); display: grid; place-items: center; box-shadow: 0 14px 30px -8px rgba(232,70,30,.7); }
.venue-map .pin .dot img { width: 38px; transform: rotate(45deg); }
.venue-map .pin .lab { background: var(--panel); border: 1px solid var(--line); border-radius: 8px; padding: 8px 14px; font-family: "Barlow Condensed"; text-transform: uppercase; font-weight: 700; letter-spacing: .5px; font-size: 15px; }
.venue-map .maplink { position: absolute; bottom: 16px; right: 16px; z-index: 3; }

/* ---------- SPONSOREN ---------- */
.sponsor-lead { background: linear-gradient(150deg, var(--panel), var(--bg-2)); border: 1px solid var(--line); border-radius: var(--radius); padding: 38px; display: grid; grid-template-columns: auto 1fr; gap: 30px; align-items: center; margin-bottom: 26px; box-shadow: var(--shadow); }
.sponsor-lead .big { width: 170px; height: 110px; border: 1.5px dashed var(--line); border-radius: 12px; display: grid; place-items: center; background: var(--bg); text-align: center; font-family: "Barlow Semi Condensed"; text-transform: uppercase; letter-spacing: 1.5px; font-size: 12px; color: var(--muted-2); font-weight: 700; }
.sponsor-lead.single { max-width: none; margin: 0; }
.sp-tag { display: inline-block; font-family: "Barlow Semi Condensed"; text-transform: uppercase; letter-spacing: 2px; font-size: 11px; font-weight: 700; color: var(--orange); background: rgba(232,70,30,.14); padding: 5px 12px; border-radius: 100px; margin-bottom: 10px; }
.sponsor-lead h3 { font-size: 26px; font-style: italic; }
.sponsor-lead p { color: var(--muted); margin-top: 8px; max-width: 540px; }

/* ---------- KONTAKT ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.c-card { display: flex; gap: 16px; align-items: center; background: var(--panel); border: 1px solid var(--line-soft); border-radius: 12px; padding: 18px 20px; transition: .2s; }
.c-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.c-card .ic { width: 46px; height: 46px; border-radius: 11px; background: var(--bg-2); display: grid; place-items: center; color: var(--orange); flex: none; }
.c-card .ic svg { width: 22px; height: 22px; }
.c-card .t span { font-family: "Barlow Semi Condensed"; text-transform: uppercase; letter-spacing: 1.5px; font-size: 11px; color: var(--muted-2); font-weight: 700; }
.c-card .t b { display: block; font-size: 18px; font-family: "Barlow Condensed"; letter-spacing: .4px; }

form.contact { background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: "Barlow Semi Condensed"; text-transform: uppercase; letter-spacing: 1.5px; font-size: 12px; font-weight: 700; color: var(--muted); margin-bottom: 8px; }
.field input, .field textarea, .field select { width: 100%; background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px; padding: 13px 15px; color: var(--ink); font-family: "Barlow", sans-serif; font-size: 16px; transition: .2s; }
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,70,30,.16); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
form.contact .btn { width: 100%; margin-top: 6px; }
.form-note { margin-top: 14px; text-align: center; font-size: 13px; color: var(--muted-2); }
.form-ok { display: none; background: rgba(232,70,30,.12); border: 1px solid var(--orange); color: var(--orange-2); padding: 14px; border-radius: 10px; text-align: center; font-weight: 600; margin-top: 14px; }
.form-ok i { vertical-align: -3px; font-size: 19px; }
.form-ok.show { display: block; }

/* ---------- FOOTER ---------- */
footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 56px 0 28px; }
.foot-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line-soft); align-items: start; }
.foot-brand { display: flex; align-items: center; gap: 24px; }
.foot-brand img { height: 90px; flex: none; }
.foot-brand p { color: var(--muted); max-width: 380px; font-size: 15px; margin: 0; }
.foot-col h5 { font-family: "Barlow Condensed"; text-transform: uppercase; letter-spacing: 1px; font-size: 16px; margin-bottom: 16px; color: var(--gold); }
.foot-col a { display: block; color: var(--muted); padding: 6px 0; font-size: 15px; transition: color .2s; }
.foot-col a:hover { color: var(--orange); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; flex-wrap: wrap; gap: 12px; }
.foot-bottom p { color: var(--muted-2); font-size: 14px; }
.foot-bottom .fl { display: flex; gap: 20px; }
.foot-bottom .fl a { color: var(--muted-2); font-size: 14px; }
.foot-bottom .fl a:hover { color: var(--orange); }

/* ---------- KALENDER ---------- */
.cal-top { display: flex; align-items: center; justify-content: space-between; gap: 20px 24px; flex-wrap: wrap; margin-bottom: 26px; }
.cal-nav { display: flex; align-items: center; gap: 14px; }
.cal-nav button { width: 42px; height: 42px; border-radius: 11px; background: var(--panel); border: 1px solid var(--line-soft); color: var(--ink); cursor: pointer; display: grid; place-items: center; transition: .2s; }
.cal-nav button:hover { border-color: var(--orange); color: var(--orange); }
.cal-nav button svg { width: 18px; height: 18px; }
.cal-month { font-family: "Barlow Condensed"; font-style: italic; text-transform: uppercase; font-size: 30px; font-weight: 700; letter-spacing: .5px; min-width: 210px; text-align: center; }
.cal-month span { color: var(--orange); }
.cal-today-btn { font-family: "Barlow Semi Condensed"; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; font-size: 13px; color: var(--muted); background: var(--panel); border: 1px solid var(--line-soft); border-radius: 9px; padding: 11px 16px; cursor: pointer; transition: .2s; }
.cal-today-btn:hover { border-color: var(--orange); color: var(--orange); }
.cal-legend { display: flex; gap: 20px; flex-wrap: wrap; }
.cal-legend .lg { display: flex; align-items: center; gap: 9px; font-family: "Barlow Semi Condensed"; text-transform: uppercase; letter-spacing: 1px; font-size: 12.5px; font-weight: 700; color: var(--muted); }
.cal-legend .lg i { width: 13px; height: 13px; border-radius: 4px; flex: none; }
.lg-n1 i { background: var(--orange); }
.lg-n2 i { background: var(--gold); }
.lg-tr i { background: var(--teal); }
.cal-card { background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 14px; box-shadow: var(--shadow); }
.cal-dow { display: grid; grid-template-columns: repeat(7,1fr); gap: 8px; margin-bottom: 8px; }
.cal-dow span { font-family: "Barlow Semi Condensed"; text-transform: uppercase; letter-spacing: 1.5px; font-size: 12px; font-weight: 700; color: var(--muted-2); text-align: center; padding: 6px 0; }
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 8px; }
.cal-cell { min-height: 118px; background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: 10px; padding: 9px 9px 10px; display: flex; flex-direction: column; gap: 6px; position: relative; transition: border-color .2s; }
.cal-cell.out { opacity: .4; }
.cal-cell.today { border-color: var(--orange); box-shadow: inset 0 0 0 1px var(--orange); }
.cal-cell .dn { font-family: "Barlow Condensed"; font-weight: 700; font-size: 18px; color: var(--ink); line-height: 1; }
.cal-cell.out .dn { color: var(--muted-2); }
.cal-cell.today .dn { color: var(--orange); }
.cal-evs { display: flex; flex-direction: column; gap: 5px; }
.cal-ev { font-family: "Barlow Semi Condensed"; text-transform: uppercase; letter-spacing: .4px; font-weight: 700; font-size: 11px; padding: 4px 7px; border-radius: 6px; line-height: 1.18; border-left: 3px solid; cursor: default; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cal-ev .t { font-weight: 600; opacity: .85; }
.cal-ev.n1 { background: rgba(232,70,30,.14); border-color: var(--orange); color: var(--orange-2); }
.cal-ev.n2 { background: rgba(242,178,51,.13); border-color: var(--gold); color: var(--gold); }
.cal-ev.training { background: rgba(54,182,166,.13); border-color: var(--teal); color: var(--teal); }
.cal-ev.done { opacity: .6; }
.cal-agenda { margin-top: 24px; display: none; flex-direction: column; gap: 10px; }
.cal-agenda .ag-head { font-family: "Barlow Semi Condensed"; text-transform: uppercase; letter-spacing: 2px; font-size: 12px; font-weight: 700; color: var(--muted-2); margin-bottom: 4px; }
.cal-agenda .ag { background: var(--panel); border: 1px solid var(--line-soft); border-radius: 12px; padding: 13px 15px; display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 14px; border-left: 4px solid var(--line); }
.cal-agenda .ag.n1 { border-left-color: var(--orange); }
.cal-agenda .ag.n2 { border-left-color: var(--gold); }
.cal-agenda .ag.training { border-left-color: var(--teal); }
.cal-agenda .ag .d { font-family: "Barlow Condensed"; line-height: 1; text-align: center; }
.cal-agenda .ag .d b { font-size: 23px; display: block; color: var(--ink); }
.cal-agenda .ag .d span { font-family: "Barlow Semi Condensed"; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted-2); font-weight: 700; }
.cal-agenda .ag .info b { font-family: "Barlow Condensed"; text-transform: uppercase; font-size: 17px; letter-spacing: .4px; display: block; }
.cal-agenda .ag .info span { font-family: "Barlow Semi Condensed"; font-size: 12.5px; color: var(--muted); letter-spacing: .3px; }
.cal-agenda .ag .tg { font-family: "Barlow Semi Condensed"; text-transform: uppercase; letter-spacing: 1px; font-size: 11px; font-weight: 700; padding: 5px 11px; border-radius: 100px; white-space: nowrap; }
.cal-agenda .ag.n1 .tg { background: rgba(232,70,30,.14); color: var(--orange-2); }
.cal-agenda .ag.n2 .tg { background: rgba(242,178,51,.14); color: var(--gold); }
.cal-agenda .ag.training .tg { background: rgba(54,182,166,.14); color: var(--teal); }

/* ---------- SKELETON ---------- */
@keyframes skel-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.skel {
  background: linear-gradient(90deg, var(--panel) 25%, var(--panel-2) 50%, var(--panel) 75%) !important;
  background-size: 200% 100% !important;
  animation: skel-shimmer 1.4s ease-in-out infinite;
  color: transparent !important;
  border-color: transparent !important;
  border-radius: 4px; pointer-events: none; min-height: 1em; display: inline-block;
}
.skel * { visibility: hidden; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-bg { background-position: 75% 18%; }
  .hero-bg::before { background: linear-gradient(180deg, rgba(18,18,21,.78) 0%, rgba(18,18,21,.6) 45%, var(--bg) 96%); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .venue-grid, .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .sponsor-grid { grid-template-columns: repeat(3,1fr); }
  nav.links, .nav-cta { display: none; }
  .burger { display: flex; }
  .cal-cell { min-height: 96px; }
  .cal-ev { font-size: 10px; padding: 3px 6px; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .wrap { padding: 0 18px; }
  section.block { padding: 48px 0 64px; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .sponsor-lead { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 28px; }
  .fixture { grid-template-columns: 1fr; gap: 12px; text-align: left; }
  .fixture .meta { text-align: left; }
  .field-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .foot-brand { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-stats { gap: 22px; }
  table.league thead th.hide-sm, table.league td.hide-sm { display: none; }
  .player .stats { gap: 10px; }
  .cal-card { display: none; }
  .cal-agenda { display: flex; }
  .cal-month { min-width: 0; font-size: 26px; }
}
@media (max-width: 400px) {
  .team-grid { grid-template-columns: 1fr; }
}
