/**
 * DartVinci Landing Pages - Shared Styles
 * Genutzt von: landing.html (Chooser), landing-veranstalter.html,
 * landing-spieler.html, landing-dkv.html
 */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --color-primary: #e94560;
  --color-on-primary: #ffffff;
  --color-accent: #e94560;
  --color-accent-hover: #c83650;
  --color-success: #00b894;
  --color-warning: #fdcb6e;
  --color-canvas: #1a1a2e;
  --color-inverse-canvas: #0a0f1d;
  --color-surface-soft: #162447;
  --color-hairline: #2a2a4a;
  --color-hairline-soft: #222244;
  --color-block-lime: rgba(0, 184, 148, 0.12);
  --color-block-lilac: rgba(233, 69, 96, 0.10);
  --color-block-cream: rgba(253, 203, 110, 0.08);
  --color-block-mint: rgba(0, 184, 148, 0.08);
  --color-block-pink: rgba(233, 69, 96, 0.08);
  --color-block-coral: rgba(255, 145, 0, 0.08);
  --color-block-navy: #0a0f1d;
  --color-ink: #f5f5f5;
  --color-inverse-ink: #f5f5f5;
  --color-scrim: rgba(0,0,0,0.70);
  --color-bg: #0f3460;
  --color-bg-light: #162447;
  --color-text-muted: #a0a0b8;
  --color-border: #2a2a4a;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, helvetica, sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', 'Cascadia Code', menlo, monospace;
  --space-hair: 1px; --space-xxs: 4px; --space-xs: 8px; --space-sm: 12px;
  --space-md: 16px; --space-lg: 24px; --space-xl: 32px; --space-xxl: 48px;
  --space-section: 96px;
  --radius-xs: 2px; --radius-sm: 6px; --radius-md: 8px; --radius-lg: 24px;
  --radius-xl: 32px; --radius-pill: 50px; --radius-full: 9999px;
  --shadow-soft: 0 4px 16px rgba(0,0,0,0.3);
  --shadow-modal: 0 8px 32px rgba(0,0,0,0.4);
}

html { scroll-behavior: smooth; font-feature-settings: 'kern'; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-sans);
  font-weight: 320; font-size: 18px; line-height: 1.45; letter-spacing: -0.26px;
  color: var(--color-ink);
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 50%, #16213e 100%);
  background-attachment: fixed;
}

/* Typography */
.display-xl { font-size: clamp(42px, 6vw, 86px); font-weight: 340; line-height: 1.00; letter-spacing: -1.72px; }
.display-lg { font-size: clamp(32px, 4.5vw, 64px); font-weight: 340; line-height: 1.10; letter-spacing: -0.96px; }
.headline { font-size: clamp(22px, 2vw, 26px); font-weight: 540; line-height: 1.35; letter-spacing: -0.26px; }
.subhead { font-size: clamp(20px, 2vw, 26px); font-weight: 340; line-height: 1.35; letter-spacing: -0.26px; }
.body-lg { font-size: 20px; font-weight: 330; line-height: 1.40; letter-spacing: -0.14px; }
.body-sm { font-size: 16px; font-weight: 330; line-height: 1.45; letter-spacing: -0.14px; }
.eyebrow { font-family: var(--font-mono); font-size: 14px; font-weight: 400; line-height: 1.30; letter-spacing: 1.5px; text-transform: uppercase; }
.caption { font-family: var(--font-mono); font-size: 12px; font-weight: 400; line-height: 1.00; letter-spacing: 0.60px; text-transform: uppercase; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-sans); font-size: 20px; font-weight: 480; line-height: 1.40; letter-spacing: -0.10px; border: none; cursor: pointer; text-decoration: none; transition: transform 0.2s ease, opacity 0.2s ease; white-space: nowrap; }
.btn:hover { transform: translateY(-1px); opacity: 0.9; }
.btn:active { transform: translateY(0); }
.btn-primary { background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover)); color: var(--color-on-primary); padding: 10px 24px; border-radius: var(--radius-pill); box-shadow: 0 0 20px rgba(233, 69, 96, 0.3); }
.btn-primary:hover { box-shadow: 0 0 30px rgba(233, 69, 96, 0.5); }
.btn-secondary { background: transparent; color: var(--color-ink); padding: 8px 22px 10px; border-radius: var(--radius-pill); border: 1px solid var(--color-hairline); }
.btn-secondary:hover { border-color: var(--color-accent); color: var(--color-accent); }
.btn-accent { background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover)); color: var(--color-on-primary); padding: 12px 28px; border-radius: var(--radius-pill); font-size: 18px; box-shadow: 0 0 24px rgba(233, 69, 96, 0.35); }
.btn-accent:hover { box-shadow: 0 0 36px rgba(233, 69, 96, 0.55); opacity: 1; }
.btn-text { background: transparent; color: var(--color-ink); padding: 8px 12px; border-radius: var(--radius-pill); }
.btn-text:hover { background: var(--color-surface-soft); }

/* Layout */
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .container { padding: 0 24px; } }
.section { padding: var(--space-section) 0; }

/* Nav */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(26, 26, 46, 0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--color-hairline); height: 56px; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 56px; }
.nav-logo { font-size: 22px; font-weight: 700; letter-spacing: -0.5px; text-decoration: none; color: var(--color-ink); display: flex; align-items: center; gap: 10px; }
.nav-logo-img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links a { font-size: 16px; font-weight: 450; color: var(--color-ink); text-decoration: none; padding: 6px 14px; border-radius: var(--radius-pill); transition: background 0.15s ease, color 0.15s ease; }
.nav-links a:hover { background: var(--color-surface-soft); color: var(--color-accent); }
.nav-cta { font-size: 15px !important; font-weight: 480 !important; background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover)) !important; color: var(--color-on-primary) !important; padding: 7px 18px !important; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; width: 40px; height: 40px; border-radius: var(--radius-full); align-items: center; justify-content: center; }
.nav-hamburger:hover { background: var(--color-surface-soft); }
.nav-hamburger svg { width: 22px; height: 22px; }
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 56px; left: 0; right: 0; background: rgba(26, 26, 46, 0.98); padding: 16px 24px; border-bottom: 1px solid var(--color-hairline); box-shadow: var(--shadow-soft); }
  .nav-links.open a { padding: 12px 14px; font-size: 18px; width: 100%; }
}

/* Marquee */
.marquee-strip { background: var(--color-inverse-canvas); border-top: 1px solid rgba(233, 69, 96, 0.2); border-bottom: 1px solid rgba(233, 69, 96, 0.2); color: var(--color-inverse-ink); height: 40px; overflow: hidden; display: flex; align-items: center; margin-top: 56px; }
.marquee-track { display: flex; gap: 48px; animation: marquee 30s linear infinite; white-space: nowrap; }
.marquee-track span { font-family: var(--font-mono); font-size: 13px; font-weight: 400; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.7; }
.marquee-track span::before { content: '◆'; margin-right: 12px; opacity: 0.4; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Hero */
.hero { padding: 80px 0 60px; text-align: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--color-surface-soft); padding: 6px 16px; border-radius: var(--radius-pill); margin-bottom: 32px; }
.hero-badge-dot { width: 8px; height: 8px; border-radius: var(--radius-full); background: var(--color-success); animation: pulse 2s ease infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 { margin-bottom: 24px; }
.hero h1 em { font-style: normal; position: relative; }
.hero h1 em::after { content: ''; position: absolute; bottom: 2px; left: 0; right: 0; height: 8px; background: var(--color-accent); border-radius: 4px; z-index: -1; opacity: 0.6; }
.hero .subhead { max-width: 640px; margin: 0 auto 40px; color: var(--color-ink); }
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.hero-visual { margin-top: 64px; border-radius: var(--radius-xl); overflow: hidden; background: rgba(233, 69, 96, 0.08); border: 1px solid rgba(233, 69, 96, 0.15); padding: 40px 40px 0; position: relative; }
@media (max-width: 768px) { .hero { padding: 48px 0 40px; } .hero-visual { padding: 24px 24px 0; } }

/* Color Blocks */
.color-block { border-radius: var(--radius-lg); padding: var(--space-xxl); margin: 0 auto; max-width: 1280px; }
@media (max-width: 768px) { .color-block { border-radius: 0; margin: 0 -24px; padding: 48px 24px; max-width: none; } }
.block-lime { background: var(--color-block-lime); color: var(--color-ink); border: 1px solid rgba(0, 184, 148, 0.15); }
.block-lilac { background: var(--color-block-lilac); color: var(--color-ink); border: 1px solid rgba(233, 69, 96, 0.15); }
.block-cream { background: var(--color-block-cream); color: var(--color-ink); border: 1px solid rgba(253, 203, 110, 0.12); }
.block-mint { background: var(--color-block-mint); color: var(--color-ink); border: 1px solid rgba(0, 184, 148, 0.12); }
.block-pink { background: var(--color-block-pink); color: var(--color-ink); border: 1px solid rgba(233, 69, 96, 0.12); }
.block-coral { background: var(--color-block-coral); color: var(--color-ink); border: 1px solid rgba(255, 145, 0, 0.12); }
.block-navy { background: var(--color-block-navy); color: var(--color-inverse-ink); border: 1px solid rgba(233, 69, 96, 0.12); }

/* Feature Grid */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 960px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card { background: var(--color-surface-soft); border: 1px solid var(--color-hairline); border-radius: var(--radius-lg); padding: var(--space-lg); transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.feature-card:hover { transform: translateY(-2px); box-shadow: 0 4px 24px rgba(233, 69, 96, 0.15); border-color: rgba(233, 69, 96, 0.3); }
.feature-icon { width: 48px; height: 48px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 24px; }
.feature-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.feature-card p { font-size: 16px; font-weight: 330; line-height: 1.5; color: var(--color-text-muted); }

/* Formats */
.formats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
@media (max-width: 960px) { .formats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .formats-grid { grid-template-columns: 1fr; } }
.format-tile { background: rgba(22, 36, 71, 0.6); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-md); padding: 20px; transition: transform 0.2s ease, border-color 0.2s ease; }
.format-tile:hover { border-color: rgba(0, 184, 148, 0.3); transform: translateY(-2px); }
.format-tile-icon { font-size: 28px; margin-bottom: 12px; }
.format-tile h4 { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.format-tile p { font-size: 14px; font-weight: 340; color: var(--color-text-muted); }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 768px) { .split { grid-template-columns: 1fr; gap: 32px; } }
.split-visual { background: var(--color-surface-soft); border-radius: var(--radius-lg); padding: 32px; min-height: 360px; display: flex; align-items: center; justify-content: center; }
.split-content .eyebrow { margin-bottom: 12px; }
.split-content .display-lg { margin-bottom: 16px; }
.split-content .body-lg { margin-bottom: 24px; opacity: 0.8; }

/* Stats */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
@media (max-width: 768px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
.stat-card { text-align: center; padding: 24px; }
.stat-number { font-size: clamp(36px, 4vw, 56px); font-weight: 700; line-height: 1; letter-spacing: -1px; margin-bottom: 8px; }
.stat-label { font-family: var(--font-mono); font-size: 13px; font-weight: 400; letter-spacing: 1px; text-transform: uppercase; color: var(--color-text-muted); }

/* Jackpot */
.jackpot-visual { position: relative; width: 100%; }
.jackpot-pool { background: rgba(255,255,255,0.08); border-radius: 16px; padding: 32px; text-align: center; }
.jackpot-amount { font-family: var(--font-mono); font-size: clamp(48px, 6vw, 72px); font-weight: 700; color: var(--color-block-lime); letter-spacing: -2px; }
.jackpot-label { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 2px; opacity: 0.5; margin-top: 8px; }
.jackpot-seasons { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.jackpot-season { background: rgba(255,255,255,0.05); border-radius: 10px; padding: 16px; text-align: center; }
.jackpot-season-name { font-size: 12px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.5; margin-bottom: 6px; }
.jackpot-season-amount { font-family: var(--font-mono); font-size: 24px; font-weight: 700; }

/* Checklist */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 18px; font-weight: 340; line-height: 1.5; }
.checklist li::before { content: '✓'; flex-shrink: 0; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: var(--color-success); background: rgba(0, 184, 148, 0.15); border-radius: var(--radius-full); }

/* CTA */
.cta-section { text-align: center; padding: 96px 0; }
.cta-section .display-lg { margin-bottom: 16px; }
.cta-section .subhead { max-width: 560px; margin: 0 auto 32px; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* Footer */
.footer { background: #0a0f1d; color: var(--color-inverse-ink); padding: 64px 0 32px; border-top: 1px solid var(--color-hairline); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { margin-bottom: 12px; }
.footer-logo-img { height: 48px; width: auto; }
.footer-tagline { font-size: 15px; opacity: 0.5; font-weight: 340; }
.footer h4 { font-family: var(--font-mono); font-size: 12px; font-weight: 400; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.4; margin-bottom: 16px; }
.footer a { display: block; color: var(--color-inverse-ink); text-decoration: none; font-size: 15px; font-weight: 340; padding: 4px 0; opacity: 0.7; transition: opacity 0.15s; }
.footer a:hover { opacity: 1; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; font-size: 14px; opacity: 0.4; }
@media (max-width: 560px) { .footer-bottom { flex-direction: column; gap: 8px; } }

/* Screenshots */
.hero-screenshot-frame { width: 100%; max-width: 960px; margin: 0 auto; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-modal); }
.hero-screenshot { width: 100%; height: auto; display: block; }
.app-screenshot { width: 100%; height: auto; display: block; box-shadow: var(--shadow-modal); }
.app-screenshot.rounded { border-radius: 12px; }
.phone-frame { width: 260px; border-radius: 28px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.4); border: 3px solid rgba(255,255,255,0.1); }
.phone-screenshot { width: 100%; height: auto; display: block; }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Misc */
.text-center { text-align: center; }
.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-xxl { margin-top: var(--space-xxl); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-xxl { margin-bottom: var(--space-xxl); }
.max-w-640 { max-width: 640px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .eyebrow { margin-bottom: 12px; color: inherit; opacity: 0.5; }
.section-header .display-lg { margin-bottom: 16px; }
.section-header .subhead { max-width: 640px; margin: 0 auto; opacity: 0.8; }
.block-navy .eyebrow { opacity: 0.4; }
.block-navy .subhead { opacity: 0.6; }

/* ───────────────────────────────────────────
   CHOOSER (landing.html) - 3 Persona Cards
   ─────────────────────────────────────────── */
.persona-chooser { padding: 80px 0 40px; text-align: center; }
.persona-prompt { font-size: clamp(18px, 1.6vw, 22px); color: var(--color-text-muted); margin-bottom: 40px; font-weight: 340; }
.persona-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
@media (max-width: 960px) { .persona-grid { grid-template-columns: 1fr; } }
.persona-card {
  background: var(--color-surface-soft);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-decoration: none;
  color: var(--color-ink);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.persona-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--persona-color, var(--color-accent)) 0%, transparent 60%);
  opacity: 0.07;
  pointer-events: none;
  transition: opacity 0.25s;
}
.persona-card:hover { transform: translateY(-4px); border-color: var(--persona-color, var(--color-accent)); box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 0 1px var(--persona-color, var(--color-accent)); }
.persona-card:hover::before { opacity: 0.15; }
.persona-icon { font-size: 48px; line-height: 1; }
.persona-title { font-size: 26px; font-weight: 600; letter-spacing: -0.5px; color: var(--color-ink); }
.persona-sub { font-size: 16px; color: var(--color-text-muted); line-height: 1.5; flex: 1; }
.persona-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.persona-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: rgba(255,255,255,0.06);
  color: var(--color-text-muted);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-hairline);
}
.persona-cta { margin-top: 12px; font-size: 16px; font-weight: 500; color: var(--persona-color, var(--color-accent)); display: flex; align-items: center; gap: 6px; }
.persona-card[data-persona="director"] { --persona-color: #fdcb6e; }
.persona-card[data-persona="player"]   { --persona-color: #00b894; }
.persona-card[data-persona="dkv"]      { --persona-color: #e94560; }

/* Live games on chooser */
.lp-live-banner { max-width: 720px; margin: 60px auto 0; }
.lp-live-header {
  font-size: 13px; color: var(--color-warning); font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.lp-live-dot { width: 10px; height: 10px; background: var(--color-primary); border-radius: 50%; display: inline-block; box-shadow: 0 0 12px var(--color-primary); animation: pulse 1.5s infinite; }
.lp-game-card { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: rgba(233, 69, 96, 0.08); border: 1px solid rgba(233, 69, 96, 0.25); border-radius: 12px; text-decoration: none; color: inherit; transition: all 0.2s; }
.lp-game-card:hover { background: rgba(233, 69, 96, 0.15); border-color: rgba(233, 69, 96, 0.45); transform: translateY(-1px); }
.lp-game-teams { flex:1; min-width:0 }
.lp-game-vs { color: var(--color-text-muted); font-weight: 400; margin: 0 6px }
.lp-game-score { font-size: 18px; font-weight: 700; color: var(--color-warning); font-family: var(--font-mono); }
.lp-game-class { font-size: 12px; color: var(--color-text-muted); margin-top: 2px }
