@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Saira+Condensed:ital,wght@0,700;0,800;0,900;1,800;1,900&display=swap');

:root {
  --black: #080808;
  --panel: #111112;
  --card: #171719;
  --line: #2a2a2e;
  --white: #fff;
  --soft: #b8b8bc;
  --muted: #85858b;
  --gold: #d0aa32;
  --red: #ec3e36;
  --display: "Saira Condensed", sans-serif;
  --body: "Inter", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--black); color: var(--white); font-family: var(--body); }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.skip { position: fixed; left: 12px; top: -60px; z-index: 100; background: var(--gold); color: #000; padding: 10px 14px; }
.skip:focus { top: 12px; }

.nav { position: sticky; top: 0; z-index: 20; background: rgba(8,8,8,.82); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); animation: nav-drop .7s cubic-bezier(.22,1,.36,1) both; }
.nav-inner { min-height: 76px; display: flex; align-items: center; gap: 36px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 900; letter-spacing: 1.6px; }
.brand img { width: 38px; height: 30px; object-fit: contain; }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a { position: relative; color: var(--soft); font-size: 13px; font-weight: 700; transition: color .25s ease; }
.nav-links a::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .3s cubic-bezier(.22,1,.36,1); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-links a:hover { color: var(--white); }

.language-switch { display: inline-flex; flex: 0 0 auto; overflow: hidden; border: 1px solid #3a3a3f; border-radius: 999px; background: #111113; }
.language-option { width: 34px; height: 32px; padding: 0; border: 0; background: transparent; color: var(--muted); cursor: pointer; font-size: 10px; font-weight: 800; letter-spacing: .5px; transition: color .2s, background .2s; }
.language-option.active { background: var(--gold); color: #080808; }
.language-option:focus-visible { outline: 2px solid var(--white); outline-offset: -2px; }
.mobile-language-switch { display: none; align-self: flex-start; margin-top: 12px; }

.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 0 23px; border: 1px solid var(--gold); background: var(--gold); color: #0a0a0a; border-radius: 9px; font-size: 12px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); background: #e2bd47; }
.button.small { min-height: 42px; padding-inline: 18px; }
.button.ghost { color: var(--white); background: transparent; border-color: #444448; }

/* Mobile navigation (hamburger + slide-down menu) */
.nav-toggle { display: none; margin-left: auto; flex-direction: column; align-items: center; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 0; background: none; border: 0; cursor: pointer; }
.nav-toggle span { width: 22px; height: 2px; border-radius: 2px; background: var(--white); transition: transform .3s cubic-bezier(.22,1,.36,1), opacity .2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: flex; flex-direction: column; width: min(100% - 40px, 1180px); margin: 0 auto; padding: 6px 0 16px; }
.mobile-menu[hidden] { display: none; }
.mobile-menu a { padding: 14px 4px; color: var(--soft); font-size: 15px; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.06); transition: color .2s; }
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu a:hover { color: var(--white); }
.button.ghost:hover { border-color: var(--gold); }

.hero { min-height: 690px; display: flex; align-items: center; position: relative; overflow: hidden; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 75% 35%, rgba(208,170,50,.15), transparent 28%), linear-gradient(135deg, #080808 35%, #11100c 100%); }
.stadium-lines { position: absolute; inset: -8% 0 0; opacity: .18; background: repeating-linear-gradient(90deg, transparent 0 8.2%, rgba(255,255,255,.06) 8.3% 8.4%); transform: translateY(calc(var(--scroll-y, 0px) * .08)) perspective(600px) rotateX(55deg) scale(1.4); transform-origin: bottom; will-change: transform; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 72px; padding-block: 90px; }
.eyebrow { margin: 0 0 12px; color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 20px; font-family: var(--display); font-size: clamp(64px, 7.5vw, 104px); line-height: .83; letter-spacing: -2px; text-transform: uppercase; font-style: italic; }
h1 span { color: var(--gold); }
.hero-copy > * { animation: hero-rise .85s cubic-bezier(.22,1,.36,1) both; }
.hero-copy > :nth-child(1) { animation-delay: .08s; }
.hero-copy > :nth-child(2) { animation-delay: .16s; }
.hero-copy > :nth-child(3) { animation-delay: .24s; }
.hero-copy > :nth-child(4) { animation-delay: .32s; }
.hero-copy > :nth-child(5) { animation-delay: .4s; }
.lede { max-width: 670px; color: var(--soft); font-size: 18px; line-height: 1.7; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 34px; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .6px; }
.trust-row b { color: var(--white); font-size: 16px; margin-right: 4px; }

.app-game-card { --tilt-x: 0deg; --tilt-y: 0deg; --glow-x: 50%; --glow-y: 50%; display: block; position: relative; color: var(--white); transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)); transform-style: preserve-3d; transition: transform .18s ease-out; animation: card-arrive 1s .35s cubic-bezier(.22,1,.36,1) both; }
.app-game-card::after { content: ""; position: absolute; z-index: 4; inset: 42px 0 48px; border-radius: 24px; pointer-events: none; background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255,255,255,.16), transparent 32%); opacity: 0; transition: opacity .25s ease; }
.app-game-card:hover::after { opacity: 1; }
.game-topbar { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-inline: 8px; }
.game-league { color: var(--soft); font-size: 9px; font-weight: 800; letter-spacing: .6px; }
.game-demo { margin-inline: auto; padding: 5px 9px; border: 1px solid rgba(208,170,50,.42); border-radius: 999px; background: rgba(208,170,50,.1); color: var(--gold); font-size: 8px; font-weight: 800; letter-spacing: .65px; white-space: nowrap; }
.game-status { display: inline-flex; align-items: center; gap: 5px; padding: 5px 9px; border-radius: 999px; background: var(--red); font-size: 9px; font-weight: 800; letter-spacing: .5px; }
.game-status i { width: 5px; height: 5px; border-radius: 50%; background: var(--white); animation: live-pulse 1.5s ease-out infinite; }
.game-matchup { height: 150px; display: grid; grid-template-columns: 1fr 1fr; position: relative; overflow: hidden; border-radius: 24px; box-shadow: 0 24px 55px rgba(0,0,0,.45); }
.game-team { min-width: 0; display: flex; align-items: center; gap: 8px; padding: 16px 34px 16px 12px; position: relative; overflow: hidden; background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 48%), #331861; }
.game-team::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.23); }
.game-team > * { position: relative; z-index: 1; }
.game-team.away { justify-content: flex-end; padding: 16px 12px 16px 34px; background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 48%), #00a9e8; }
.team-logo-wrap { width: 66px; height: 78px; flex: 0 0 66px; display: grid; place-items: center; overflow: hidden; }
.team-logo { display: block; width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 5px 7px rgba(0,0,0,.32)); transition: transform .45s cubic-bezier(.22,1,.36,1); }
.app-game-card:hover .home .team-logo { transform: translateX(2px) scale(1.06) rotate(-2deg); }
.app-game-card:hover .away .team-logo { transform: translateX(-2px) scale(1.06) rotate(2deg); }
.team-logo-vienna { width: 74px; height: 74px; }
.team-logo-panthers { width: 70px; height: 70px; }
.team-identity { min-width: 0; display: flex; flex: 1; flex-direction: column; }
.away .team-identity { align-items: flex-end; text-align: right; }
.team-identity strong { overflow: hidden; color: var(--white); font-family: var(--display); font-size: clamp(16px, 1.6vw, 22px); line-height: 1; letter-spacing: .4px; text-overflow: ellipsis; white-space: nowrap; }
.team-identity small { margin-top: 4px; color: rgba(255,255,255,.7); font-size: 9px; font-weight: 700; }
.team-score { color: var(--white); font-family: var(--display); font-size: 40px; font-weight: 900; line-height: 1; text-shadow: 0 2px 4px rgba(0,0,0,.3); }
.game-clock { width: 52px; height: 46px; display: grid; place-items: center; position: absolute; z-index: 3; left: 50%; top: 52px; margin-left: -26px; border-radius: 12px; background: var(--red); box-shadow: 0 8px 18px rgba(0,0,0,.35); font-size: 8px; font-weight: 800; line-height: 1.25; text-align: center; animation: clock-breathe 2.4s ease-in-out infinite; }
.game-footer { min-height: 48px; display: flex; align-items: center; gap: 12px; padding-inline: 8px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .4px; }
.game-situation { flex: 1; color: var(--soft); text-align: center; }
.game-action { color: var(--gold); }
.app-game-card:hover .game-matchup { box-shadow: 0 28px 70px rgba(0,0,0,.55), 0 0 0 1px rgba(208,170,50,.35); }

section { padding: 110px 0; }
.section-head { max-width: 720px; margin-bottom: 46px; }
.section-head h2, .gameday h2, .cta-card h2 { margin-bottom: 14px; font-family: var(--display); font-size: clamp(44px, 5vw, 68px); line-height: .94; text-transform: uppercase; }
.section-head > p:last-child, .league-head > p { color: var(--muted); line-height: 1.7; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.feature { min-height: 250px; padding: 26px; background: var(--card); border: 1px solid var(--line); border-radius: 16px; transition: border-color .3s, transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s; }
.feature:hover { transform: translateY(-7px); border-color: #62562f; box-shadow: 0 20px 45px rgba(0,0,0,.28); }
.feature-no { display: block; color: var(--gold); font-family: var(--display); font-size: 34px; font-weight: 900; }
.feature h3 { margin: 58px 0 8px; font-family: var(--display); font-size: 25px; text-transform: uppercase; }
.feature p { color: var(--muted); font-size: 13px; line-height: 1.6; }

.live-views-section { background: #0d0d0e; border-bottom: 1px solid var(--line); }
.live-head { max-width: none; display: grid; grid-template-columns: 1fr 430px; align-items: end; gap: 60px; }
.live-head h2 { margin-bottom: 0; }
.live-head > p { margin-bottom: 0; color: var(--muted); line-height: 1.7; }
.view-tabs { display: flex; gap: 7px; margin-bottom: 28px; overflow-x: auto; }
.view-tab { min-height: 42px; padding: 0 18px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--soft); cursor: pointer; font-size: 11px; font-weight: 800; text-transform: uppercase; transition: color .25s, border-color .25s, background .25s, transform .25s; }
.view-tab:hover { transform: translateY(-2px); border-color: #5a5140; }
.view-tab.active { border-color: var(--gold); background: var(--gold); color: #080808; box-shadow: 0 8px 24px rgba(208,170,50,.2); }
.live-view-layout { display: grid; grid-template-columns: minmax(320px, 580px) 1fr; align-items: center; gap: clamp(50px, 8vw, 120px); }
.device-stage { min-height: 660px; display: grid; place-items: center; position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: radial-gradient(circle at center, rgba(208,170,50,.12), transparent 58%), #09090a; }
.device-stage::before { content: ""; position: absolute; width: 520px; height: 520px; border: 1px solid rgba(208,170,50,.16); border-radius: 50%; animation: orbit 16s linear infinite; }
.device-shell { width: 300px; height: 620px; position: relative; z-index: 1; padding: 16px 10px 18px; border: 2px solid #48484c; border-radius: 42px; background: #050505; box-shadow: 0 35px 80px rgba(0,0,0,.55), inset 0 0 0 2px #171719; transition: opacity .18s ease, transform .18s ease; animation: device-float 5s ease-in-out infinite; }
.device-shell.is-switching { opacity: .35; transform: translateY(7px) scale(.985); }
.device-speaker { width: 78px; height: 5px; margin: 2px auto 10px; border-radius: 999px; background: #28282b; }
.device-screen { height: 554px; position: relative; overflow: hidden; border-radius: 27px; background: #0a0a0a; }
.device-screen iframe { width: 430px; height: 850px; position: absolute; left: 50%; top: 0; border: 0; transform: translateX(-50%) scale(.65); transform-origin: top center; pointer-events: none; background: #0a0a0a; }
.view-shield { position: absolute; inset: 0; z-index: 2; cursor: default; }
.device-home { width: 90px; height: 4px; margin: 11px auto 0; border-radius: 999px; background: #55555a; }
.live-preview-label { display: inline-flex; align-items: center; gap: 8px; color: var(--red); font-size: 10px; font-weight: 800; letter-spacing: 1px; }
.live-preview-label i { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px rgba(236,62,54,.1); }
.view-kicker { margin: 30px 0 7px; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: 1.5px; }
.view-copy { transition: opacity .18s ease, transform .18s ease; }
.view-copy.is-switching { opacity: 0; transform: translateY(10px); }
.view-copy h3 { margin-bottom: 15px; font-family: var(--display); font-size: clamp(38px, 4vw, 58px); line-height: .95; text-transform: uppercase; }
.view-copy > p:not(.view-kicker):not(.view-note) { color: var(--soft); line-height: 1.7; }
.view-copy ul { display: grid; gap: 10px; padding: 0; margin: 26px 0; list-style: none; }
.view-copy li { position: relative; padding-left: 22px; color: var(--soft); font-size: 13px; line-height: 1.5; }
.view-copy li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 900; }
.view-note { color: var(--muted); font-size: 10px; }

.league-section { background: #0d0d0e; border-block: 1px solid var(--line); }
.league-head { max-width: none; display: grid; grid-template-columns: 1fr 420px; align-items: end; gap: 60px; }
.league-head h2 { margin-bottom: 0; }
.league-tools { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.search { width: min(420px, 100%); min-height: 48px; display: flex; align-items: center; gap: 10px; padding: 0 15px; border: 1px solid var(--line); border-radius: 10px; background: var(--card); color: var(--gold); }
.search input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--white); }
.filters { display: flex; gap: 6px; }
.filter { min-height: 40px; padding: 0 15px; border: 1px solid var(--line); border-radius: 999px; color: var(--soft); background: transparent; cursor: pointer; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.filter.active { color: #090909; background: var(--gold); border-color: var(--gold); }
.league-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.league-card { min-height: 132px; display: flex; flex-direction: column; justify-content: space-between; padding: 18px; border: 1px solid var(--line); border-radius: 13px; background: var(--card); transition: transform .3s cubic-bezier(.22,1,.36,1), border-color .3s, box-shadow .3s; }
.league-card:hover { transform: translateY(-5px); border-color: #62562f; box-shadow: 0 16px 35px rgba(0,0,0,.25); }
.league-card-enter { opacity: 0; transform: translateY(12px) scale(.98); }
.league-card-enter.is-visible { opacity: 1; transform: none; transition-delay: var(--card-delay, 0ms); }
.league-card .top { display: flex; justify-content: space-between; gap: 10px; }
.league-badge { color: var(--gold); font-family: var(--display); font-size: 22px; font-weight: 900; }
/* Liga-Logo aus Backfield: helle Platte, damit auch dunkle Wappen lesbar bleiben. */
.league-badge img { width: 40px; height: 40px; object-fit: contain; border-radius: 9px; padding: 4px; background: rgba(255,255,255,.1); }
.league-kind { color: #68686d; font-size: 8px; font-weight: 800; letter-spacing: .7px; text-transform: uppercase; }
.league-card h3 { margin: 20px 0 4px; font-family: var(--display); font-size: 18px; line-height: 1.05; text-transform: uppercase; }
.league-card p { margin: 0; color: var(--muted); font-size: 10px; text-transform: uppercase; }
.no-results { color: var(--muted); text-align: center; padding: 30px; }

.page-guide { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.page-guide article { min-height: 230px; display: grid; grid-template-columns: 55px 1fr; gap: 18px; padding: 25px; border: 1px solid var(--line); border-radius: 16px; background: var(--card); transition: transform .35s cubic-bezier(.22,1,.36,1), border-color .3s; }
.page-guide article:hover { transform: translateY(-4px); border-color: #514723; }
.page-guide article > span { color: var(--gold); font-family: var(--display); font-size: 30px; font-weight: 900; }
.page-guide article div > p:first-child { margin-bottom: 22px; color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: 1.3px; }
.page-guide h3 { margin-bottom: 10px; font-family: var(--display); font-size: 25px; line-height: 1.05; text-transform: uppercase; }
.page-guide article div > p:last-child { margin-bottom: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.gameday { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.steps { display: grid; gap: 10px; }
.steps > div { display: grid; grid-template-columns: 48px 1fr; align-items: center; gap: 16px; min-height: 92px; padding: 16px; border: 1px solid var(--line); border-radius: 13px; background: var(--card); }
.steps span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--gold); color: #000; font-weight: 900; }
.steps p { margin: 0; color: var(--muted); line-height: 1.5; }
.steps b { color: var(--white); }

.updates-section { border-top: 1px solid var(--line); }
.updates-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 12px; }
.update-card { display: flex; flex-direction: column; gap: 13px; padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: var(--card); transition: transform .35s cubic-bezier(.22,1,.36,1), border-color .3s; }
.update-card:hover { transform: translateY(-4px); border-color: #514723; }
.update-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.update-area { padding: 5px 11px; border: 1px solid rgba(208,170,50,.42); border-radius: 999px; background: rgba(208,170,50,.1); color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; white-space: nowrap; }
.update-date { color: var(--muted); font-size: 12px; }
.update-card h3 { margin: 0; font-family: var(--display); font-size: 23px; line-height: 1.08; text-transform: uppercase; }
.update-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.news-section { border-top: 1px solid var(--line); }
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 12px; }
.news-card { display: flex; flex-direction: column; gap: 13px; padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: var(--card); transition: transform .35s cubic-bezier(.22,1,.36,1), border-color .3s; overflow: hidden; }
.news-card:hover { transform: translateY(-4px); border-color: #514723; }
.news-card-media { margin: -24px -24px 2px; height: 168px; background: #0d0d0f; }
.news-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-card h3 { margin: 0; font-family: var(--display); font-size: 23px; line-height: 1.08; text-transform: uppercase; }
.news-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.news-card { cursor: pointer; }
.news-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.news-read { margin-top: 2px; color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .3px; }

/* Article reader modal */
.news-modal { position: fixed; inset: 0; z-index: 60; display: flex; align-items: center; justify-content: center; padding: 20px; }
.news-modal[hidden] { display: none; }
.news-modal-backdrop { position: absolute; inset: 0; background: rgba(5,5,6,.8); backdrop-filter: blur(4px); }
.news-modal-panel { position: relative; z-index: 1; width: min(720px, 100%); max-height: 88vh; overflow: auto; border: 1px solid var(--line); border-radius: 20px; background: #0f0f10; box-shadow: 0 40px 120px rgba(0,0,0,.6); animation: news-modal-in .3s cubic-bezier(.22,1,.36,1) both; }
@keyframes news-modal-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.news-modal-close { position: absolute; top: 12px; right: 12px; z-index: 2; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 999px; background: rgba(0,0,0,.55); color: var(--white); font-size: 22px; line-height: 1; cursor: pointer; }
.news-modal-close:hover { border-color: var(--gold); color: var(--gold); }
.news-modal-media { height: 300px; background: #0d0d0f; }
.news-modal-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-modal-body { padding: 26px 30px 34px; }
.news-modal-title { margin: 12px 0 0; font-family: var(--display); font-size: clamp(28px, 4vw, 40px); line-height: 1.05; text-transform: uppercase; }
.news-modal-text { margin-top: 18px; display: flex; flex-direction: column; gap: 15px; }
.news-modal-text p { margin: 0; color: var(--soft); font-size: 15px; line-height: 1.75; }

.feedback-section { position: relative; overflow: hidden; border-top: 1px solid var(--line); background: radial-gradient(circle at 18% 50%, rgba(208,170,50,.1), transparent 34%), #09090a; }
.feedback-section::before { content: "?"; position: absolute; right: -30px; top: -120px; color: rgba(255,255,255,.025); font-family: var(--display); font-size: 520px; font-weight: 900; line-height: 1; pointer-events: none; }
.feedback-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: start; gap: clamp(50px, 8vw, 110px); position: relative; }
.feedback-copy h2 { margin-bottom: 18px; font-family: var(--display); font-size: clamp(48px, 5.5vw, 74px); line-height: .9; text-transform: uppercase; }
.feedback-copy > p:not(.eyebrow) { max-width: 520px; color: var(--soft); line-height: 1.75; }
.feedback-promises { display: grid; gap: 10px; margin-top: 34px; }
.feedback-promises span { display: flex; align-items: center; gap: 14px; color: var(--soft); font-size: 12px; font-weight: 700; }
.feedback-promises b { width: 34px; color: var(--gold); font-family: var(--display); font-size: 22px; }
.tester-overview { max-width: 570px; }
.tester-overview h3 { margin: 28px 0 12px; font-family: var(--display); font-size: clamp(25px, 2.6vw, 34px); line-height: 1.02; text-transform: uppercase; }
.tester-overview > p { color: var(--soft); line-height: 1.72; }
.tester-overview .tester-benefits-label { margin: 28px 0 12px; color: var(--white); font-size: 12px; font-weight: 800; letter-spacing: .7px; text-transform: uppercase; }
.tester-benefits { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.tester-benefits li { display: grid; grid-template-columns: 30px 1fr; align-items: center; gap: 12px; min-height: 58px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.09); border-radius: 12px; background: rgba(255,255,255,.025); color: var(--soft); font-size: 12px; font-weight: 650; line-height: 1.5; }
.tester-benefit-icon { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid rgba(208,170,50,.38); border-radius: 9px; background: rgba(208,170,50,.08); color: var(--gold); font-size: 14px; font-weight: 900; }
.tester-overview .tester-highlight { margin: 18px 0 0; padding: 16px 18px; border-left: 2px solid var(--gold); border-radius: 0 10px 10px 0; background: rgba(208,170,50,.07); color: var(--white); font-weight: 800; line-height: 1.55; }
.feedback-form { display: grid; gap: 16px; padding: 28px; border: 1px solid #3a3525; border-radius: 20px; background: rgba(23,23,25,.94); box-shadow: 0 30px 70px rgba(0,0,0,.32); }
.feedback-form label { display: grid; gap: 8px; color: var(--soft); font-size: 10px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; }
.feedback-form input, .feedback-form select, .feedback-form textarea { width: 100%; border: 1px solid #343438; border-radius: 10px; outline: none; background: #0d0d0f; color: var(--white); padding: 13px; text-transform: none; transition: border-color .2s, box-shadow .2s; }
.feedback-form input:focus, .feedback-form select:focus, .feedback-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(208,170,50,.1); }
.feedback-form textarea { resize: vertical; }
.feedback-form .button { cursor: pointer; }
.feedback-form .button:disabled { cursor: wait; opacity: .6; }
.tester-limited { display: flex; align-items: flex-start; gap: 9px; margin: 1px 0 -2px; color: var(--soft); font-size: 10px; font-weight: 700; line-height: 1.55; }
.tester-limited > span { flex: 0 0 auto; width: 7px; height: 7px; margin-top: 4px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(208,170,50,.09); }
.optional { color: var(--muted); font-size: 8px; font-weight: 600; }
.feedback-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.feedback-status { margin: -3px 0 0; color: var(--muted); font-size: 10px; line-height: 1.5; }
.feedback-status.success { color: #62d28b; }
.feedback-status.error { color: #ff7770; }

.partner-section { border-top: 1px solid var(--line); background: #0d0d0e; }
.current-partners { margin-bottom: clamp(75px, 9vw, 115px); }
.current-partners-head { display: grid; grid-template-columns: 1fr .8fr; align-items: end; gap: clamp(30px, 7vw, 100px); margin-bottom: 38px; }
.current-partners-head h2 { margin: 0; font-family: var(--display); font-size: clamp(48px, 6vw, 76px); line-height: .92; text-transform: uppercase; }
.current-partners-head > p { max-width: 520px; margin: 0 0 5px; color: var(--muted); line-height: 1.7; }
.current-partners-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.current-partner-card { position: relative; display: grid; grid-template-rows: 112px auto; min-width: 0; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: #111113; transition: background .25s ease, border-color .25s ease, transform .25s ease; }
.current-partner-card:hover { transform: translateY(-3px); border-color: #55491f; background: #171719; }
.current-partner-logo { display: grid; place-items: center; width: 100px; height: 100px; margin-inline: auto; overflow: hidden; border: 2px solid #2f2f33; border-radius: 50%; background: #171719; color: var(--soft); font-family: var(--display); font-size: 28px; }
.current-partner-logo img { width: 100%; height: 100%; border-radius: inherit; object-fit: cover; }
.current-partner-copy { padding-top: 20px; }
.current-partner-copy span { color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; }
.current-partner-copy h3 { margin: 8px 0 0; font-family: var(--display); font-size: clamp(22px, 2.4vw, 30px); line-height: 1; text-transform: uppercase; }
.partner-source-note { display: flex; align-items: center; gap: 9px; margin: 15px 0 0; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .7px; text-transform: uppercase; }
.partner-source-note span { width: 7px; height: 7px; border-radius: 50%; background: #62d28b; box-shadow: 0 0 0 5px rgba(98,210,139,.09); }
.partner-loading { grid-column: 1 / -1; padding: 42px; border: 1px solid var(--line); border-radius: 16px; color: var(--muted); text-align: center; }
.partner-loading.error { color: #ff7770; }
.partner-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: start; gap: clamp(50px, 8vw, 110px); }
.partner-grid h2 { margin-bottom: 18px; font-family: var(--display); font-size: clamp(44px, 5vw, 66px); line-height: .94; text-transform: uppercase; }
.partner-grid > div > p:not(.eyebrow) { color: var(--muted); line-height: 1.7; }
.partner-options { display: grid; gap: 9px; margin-top: 30px; }
.partner-options span { padding: 13px 15px; border-left: 2px solid var(--gold); background: var(--card); color: var(--soft); font-size: 12px; }
.partner-form { display: grid; gap: 15px; padding: 25px; border: 1px solid var(--line); border-radius: 18px; background: var(--card); }
.partner-form label { display: grid; gap: 7px; color: var(--soft); font-size: 10px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.partner-form input, .partner-form select, .partner-form textarea { width: 100%; border: 1px solid #343438; border-radius: 9px; outline: none; background: #0d0d0f; color: var(--white); padding: 12px; text-transform: none; }
.partner-form input:focus, .partner-form select:focus, .partner-form textarea:focus { border-color: var(--gold); }
.partner-form textarea { resize: vertical; }
.partner-form .button { cursor: pointer; }
.consent-check { grid-template-columns: 20px 1fr !important; align-items: start; gap: 10px !important; color: var(--muted) !important; font-size: 10px !important; font-weight: 600 !important; line-height: 1.5; letter-spacing: 0 !important; text-transform: none !important; }
.consent-check input { width: 17px; height: 17px; margin: 0; accent-color: var(--gold); }
.form-note { margin: -4px 0 0; color: var(--muted); font-size: 9px; line-height: 1.5; }

.final-cta { padding-top: 20px; }
.cta-card { padding: 75px; border: 1px solid #514723; border-radius: 24px; text-align: center; background: radial-gradient(circle at center top, rgba(208,170,50,.18), transparent 52%), var(--card); }
.cta-card p:not(.eyebrow) { color: var(--muted); margin-bottom: 26px; }

footer { border-top: 1px solid var(--line); padding: 34px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 11px; }
.footer-inner p { margin: 0; }

.motion-ready .reveal { opacity: 0; transform: translateY(30px); transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1); transition-delay: var(--reveal-delay, 0ms); }
.motion-ready .reveal.is-visible { opacity: 1; transform: none; }

@keyframes nav-drop { from { opacity: 0; transform: translateY(-18px); } }
@keyframes hero-rise { from { opacity: 0; transform: translateY(28px); } }
@keyframes card-arrive { from { opacity: 0; transform: perspective(900px) translateY(35px) rotateY(-5deg); } }
@keyframes live-pulse { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,.55); } 70%, 100% { box-shadow: 0 0 0 7px rgba(255,255,255,0); } }
@keyframes clock-breathe { 50% { box-shadow: 0 10px 25px rgba(236,62,54,.45); transform: translateY(-1px); } }
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes device-float { 50% { transform: translateY(-8px); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .motion-ready .reveal { opacity: 1; transform: none; }
  .stadium-lines { transform: perspective(600px) rotateX(55deg) scale(1.4); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner > .language-switch { display: none; }
  .mobile-language-switch { display: inline-flex; }
  .hero-grid, .gameday, .league-head, .live-head, .live-view-layout, .feedback-grid, .partner-grid, .current-partners-head { grid-template-columns: 1fr; }
  .current-partners-grid { grid-template-columns: 1fr; }
  .current-partner-card { grid-template-columns: 170px 1fr; grid-template-rows: auto; align-items: center; gap: 22px; }
  .current-partner-copy { padding-top: 0; }
  .hero { min-height: auto; }
  .hero-grid { gap: 50px; padding-block: 70px; }
  .app-game-card { max-width: 650px; }
  .feature-grid, .league-grid { grid-template-columns: repeat(2, 1fr); }
  .league-head { gap: 10px; }
  .live-head { gap: 10px; }
  .view-copy { max-width: 640px; }
}

@media (max-width: 600px) {
  .wrap { width: min(100% - 28px, 1180px); }
  .current-partner-card { grid-template-columns: 105px 1fr; gap: 15px; padding: 15px; }
  .current-partner-logo { width: 82px; height: 82px; margin-inline: 0; }
  .nav-inner { min-height: 66px; }
  .brand span { display: none; }
  .button.small { padding-inline: 13px; }
  .tester-overview h3 { margin-top: 22px; }
  .tester-benefits li { grid-template-columns: 28px 1fr; gap: 10px; padding: 11px 12px; }
  .tester-benefit-icon { width: 28px; height: 28px; }
  .feedback-form { padding: 21px 17px; }
  h1 { font-size: 58px; }
  .lede { font-size: 15px; }
  .trust-row { gap: 15px; }
  .game-topbar { gap: 6px; padding-inline: 2px; }
  .game-demo { padding-inline: 7px; font-size: 6px; letter-spacing: .35px; }
  .game-status { padding-inline: 7px; font-size: 7px; }
  .game-matchup { height: 132px; }
  .game-team { padding-inline: 8px 30px; }
  .game-team.away { padding-inline: 30px 8px; }
  .team-logo-wrap { width: 44px; height: 58px; flex-basis: 44px; }
  .team-logo-vienna { width: 52px; height: 52px; }
  .team-logo-panthers { width: 48px; height: 48px; }
  .team-identity strong { font-size: 13px; }
  .team-identity small { font-size: 7px; }
  .team-score { font-size: 30px; }
  .game-clock { top: 44px; }
  .game-situation { display: none; }
  section { padding: 78px 0; }
  .feature-grid, .league-grid { grid-template-columns: 1fr; }
  .page-guide { grid-template-columns: 1fr; }
  .page-guide article { grid-template-columns: 42px 1fr; padding: 20px; }
  .device-stage { min-height: 600px; }
  .device-shell { transform: scale(.9); }
  .feature { min-height: 200px; }
  .feature h3 { margin-top: 34px; }
  .league-tools { align-items: stretch; flex-direction: column; }
  .filters { overflow-x: auto; }
  .field-row { grid-template-columns: 1fr; }
  .cta-card { padding: 50px 20px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
