:root {
  --c-primary: #E63946;
  --c-primary-dark: #C1121F;
  --c-primary-light: #FF6B6B;
  --c-secondary: #0B0E17;
  --c-accent: #FF6B35;
  --c-accent-dark: #E55A25;
  --c-success: #00E676;
  --c-bg: #F7F7F8;
  --c-bg-alt: #EEEEF0;
  --c-bg-dark: #0B0E17;
  --c-card: #FFFFFF;
  --c-text: #1A1A2E;
  --c-text-muted: #6B7280;
  --c-text-light: #FFFFFF;
  --c-border: #E5E7EB;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  --s-xs: 4px;
  --s-sm: 8px;
  --s-md: 16px;
  --s-lg: 24px;
  --s-xl: 32px;
  --s-2xl: 48px;
  --s-3xl: 64px;
  --s-4xl: 96px;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --max-w: 1200px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-glow: 0 0 40px rgba(230,57,70,0.25);
  --shadow-gold: 0 0 30px rgba(255,215,0,0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); background: var(--c-bg); color: var(--c-text); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--s-md); }

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute; top: -100px; left: 0;
  background: var(--c-primary); color: white;
  padding: 8px 16px; z-index: 10000;
  font-size: 0.875rem; font-weight: 600; transition: top 0.2s;
}

/* ===== TOP BAR ===== */
.topbar {
  background: var(--c-secondary);
  color: rgba(255,255,255,0.7);
  font-size: 0.8125rem;
  padding: var(--s-sm) 0;
  text-align: center;
  letter-spacing: 0.02em;
}
.topbar strong { color: var(--c-accent); font-weight: 600; }
.topbar a { color: var(--c-accent); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; margin-left: var(--s-sm); }
.topbar-badge {
  display: inline-block;
  background: rgba(230,57,70,0.2);
  color: var(--c-primary);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 1px 8px;
  border-radius: 100px;
  margin-right: var(--s-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: pulseBadge 2s infinite;
}
.topbar-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--c-primary);
  border-radius: 50%;
  margin-right: var(--s-xs);
  vertical-align: middle;
  animation: pulseDot 1.5s infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
@keyframes pulseBadge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230,57,70,0.3); }
  50% { box-shadow: 0 0 0 6px rgba(230,57,70,0); }
}

/* ===== HEADER ===== */
.header {
  background: var(--c-card);
  border-bottom: 1px solid var(--c-border);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s-md) 0; gap: var(--s-md);
}
.logo {
  display: flex; align-items: center; gap: var(--s-sm);
  font-size: 1.375rem; font-weight: 800;
  color: var(--c-primary); letter-spacing: -0.02em; white-space: nowrap;
}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--c-secondary); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-primary); font-size: 1rem; font-weight: 900;
}
.nav { display: flex; align-items: center; gap: var(--s-xs); }
.nav a {
  padding: var(--s-sm) var(--s-md); font-size: 0.875rem; font-weight: 500;
  color: var(--c-text-muted); border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s; white-space: nowrap;
}
.nav a:hover { color: var(--c-text); background: var(--c-bg-alt); }
.header-cta { display: flex; align-items: center; gap: var(--s-sm); }
.btn-ghost {
  padding: var(--s-sm) var(--s-md); font-size: 0.875rem; font-weight: 500;
  color: var(--c-text-muted); border-radius: var(--r-md); transition: color 0.2s;
}
.btn-ghost:hover { color: var(--c-text); }
.btn-primary {
  padding: var(--s-sm) var(--s-lg); font-size: 0.875rem; font-weight: 600;
  color: white; background: var(--c-primary); border-radius: var(--r-md);
  transition: background 0.2s, transform 0.1s; white-space: nowrap;
}
.btn-primary:hover { background: var(--c-primary-dark); }
.btn-primary:active { transform: scale(0.97); }
.mobile-menu-btn { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; font-size: 1.5rem; }

/* ===== BREADCRUMB ===== */
.breadcrumb-nav { font-size: 0.75rem; color: var(--c-text-muted); padding: var(--s-sm) 0; }
.breadcrumb-nav a { color: var(--c-text-muted); }
.breadcrumb-nav a:hover { color: var(--c-primary); }
.breadcrumb-nav span { margin: 0 var(--s-xs); }
.breadcrumb-nav .current { color: var(--c-text); }

/* ===== HERO ===== */
.hero {
  text-align: center;
  padding: var(--s-4xl) var(--s-md) var(--s-3xl);
  background: var(--c-secondary);
  color: white;
  position: relative;
  overflow: hidden;
}
.hero-bg-effects { position: absolute; inset: 0; pointer-events: none; }
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4;
}
.orb1 { width: 400px; height: 400px; background: var(--c-primary); top: -100px; left: -100px; }
.orb2 { width: 300px; height: 300px; background: var(--c-accent); bottom: -80px; right: -80px; opacity: 0.2; }
.orb3 { width: 200px; height: 200px; background: var(--c-primary-light); top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: 0.15; }
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: var(--s-xs);
  background: rgba(255,107,53,0.1); color: var(--c-accent);
  font-size: 0.8125rem; font-weight: 600;
  padding: var(--s-xs) var(--s-md); border-radius: 100px;
  margin-bottom: var(--s-lg); border: 1px solid rgba(255,215,0,0.2);
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.03em; margin-bottom: var(--s-md);
}
.hero h1 span { color: var(--c-accent); }
.hero-content > p {
  font-size: 1.125rem; color: rgba(255,255,255,0.7);
  max-width: 620px; margin: 0 auto var(--s-xl); line-height: 1.7;
}
.hero-note {
  font-size: 0.8125rem; color: rgba(255,255,255,0.4); margin-top: var(--s-md);
}

/* ===== COUNTDOWN ===== */
.countdown {
  display: inline-flex; align-items: center; gap: var(--s-sm);
  margin-bottom: var(--s-xl);
}
.cd-block { text-align: center; }
.cd-num {
  display: block; width: 72px; height: 72px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  font-size: 2rem; font-weight: 800; color: white;
  line-height: 72px; font-variant-numeric: tabular-nums;
}
.cd-num-sm { width: 56px; height: 56px; font-size: 1.5rem; line-height: 56px; }
.cd-label { display: block; font-size: 0.6875rem; color: rgba(255,255,255,0.4); margin-top: var(--s-xs); text-transform: uppercase; letter-spacing: 0.05em; }
.cd-sep { font-size: 1.5rem; font-weight: 300; color: rgba(255,255,255,0.25); padding-top: 0; }
.cd-live { font-size: 1.25rem; font-weight: 700; color: var(--c-accent); animation: pulseBadge 2s infinite; padding: var(--s-md); }
.countdown-sm { margin-bottom: var(--s-lg); }
.countdown-sm .cd-label { color: rgba(255,255,255,0.35); }

/* ===== HERO BUTTONS ===== */
.hero-actions { display: flex; gap: var(--s-md); justify-content: center; flex-wrap: wrap; }
.btn-register {
  padding: var(--s-md) var(--s-2xl); font-size: 1rem; font-weight: 700;
  color: white; background: var(--c-primary); border-radius: var(--r-md);
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-glow);
}
.btn-register:hover { transform: translateY(-2px); box-shadow: var(--shadow-xl), var(--shadow-glow); }
.btn-register:active { transform: scale(0.97); }
.btn-register-lg { padding: var(--s-lg) var(--s-3xl); font-size: 1.125rem; }
.btn-vip {
  padding: var(--s-md) var(--s-xl); font-size: 1rem; font-weight: 700;
  color: var(--c-secondary); background: var(--c-accent); border-radius: var(--r-md);
  transition: transform 0.2s, filter 0.2s;
}
.btn-vip:hover { transform: translateY(-2px); filter: brightness(1.1); }

/* ===== EVENT INFO BAR ===== */
.event-info {
  padding: var(--s-xl) var(--s-md);
  background: var(--c-card);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.info-grid {
  display: flex; align-items: center; justify-content: center;
  gap: var(--s-xl); flex-wrap: wrap;
}
.info-item { text-align: center; }
.info-icon { display: block; font-size: 1.25rem; margin-bottom: var(--s-xs); }
.info-label { display: block; font-size: 0.6875rem; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.info-value { display: block; font-size: 1.125rem; font-weight: 800; color: var(--c-text); }
.info-divider { width: 1px; height: 40px; background: var(--c-border); }

/* ===== ABOUT ===== */
.about { padding: var(--s-4xl) var(--s-md); }
.about h2 { text-align: center; font-size: 1.75rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: var(--s-xs); }
.subtitle { text-align: center; color: var(--c-text-muted); font-size: 1rem; margin-bottom: var(--s-xl); }
.about-grid {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: var(--s-xl);
  max-width: 960px; margin: 0 auto;
}
.about-text p { font-size: 0.9375rem; color: var(--c-text); line-height: 1.7; margin-bottom: var(--s-md); }
.about-text h3 { font-size: 1rem; font-weight: 700; margin-bottom: var(--s-sm); margin-top: var(--s-lg); }
.game-tags { display: flex; gap: var(--s-sm); flex-wrap: wrap; margin-bottom: var(--s-md); }
.game-tag {
  background: rgba(230,57,70,0.08); color: var(--c-primary);
  padding: var(--s-xs) var(--s-md); border-radius: 100px;
  font-size: 0.8125rem; font-weight: 600; border: 1px solid rgba(230,57,70,0.15);
}
.rules-list { display: flex; flex-direction: column; gap: var(--s-sm); }
.rules-list li {
  font-size: 0.875rem; color: var(--c-text-muted); padding-left: var(--s-lg);
  position: relative; line-height: 1.6;
}
.rules-list li::before { content: "→"; position: absolute; left: 0; color: var(--c-primary); font-weight: 600; }
.about-card {
  background: var(--c-card); border: 1px solid var(--c-border);
  border-radius: var(--r-xl); padding: 0; overflow: hidden;
  align-self: start;
}
.about-card-header {
  background: var(--c-secondary); color: white;
  padding: var(--s-md) var(--s-lg); font-weight: 700; font-size: 0.9375rem;
}
.about-card-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--s-md) var(--s-lg); border-bottom: 1px solid var(--c-border);
  font-size: 0.875rem;
}
.about-card-row:last-of-type { border-bottom: none; }
.about-card-val { font-weight: 700; }
.about-card-val.accent { color: var(--c-primary); }
.about-card-btn {
  display: block; text-align: center;
  padding: var(--s-md); background: var(--c-primary); color: white;
  font-weight: 700; font-size: 0.9375rem; transition: background 0.2s;
}
.about-card-btn:hover { background: var(--c-primary-dark); }

/* ===== PRIZE POOL ===== */
.prizes { padding: var(--s-4xl) var(--s-md); background: var(--c-bg-alt); }
.prizes h2 { text-align: center; font-size: 1.75rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: var(--s-xs); }
.podium {
  display: flex; align-items: flex-end; justify-content: center;
  gap: var(--s-md); margin: var(--s-xl) auto; max-width: 500px;
}
.podium-place { text-align: center; flex: 1; }
.podium-crown { font-size: 1.5rem; margin-bottom: var(--s-xs); }
.podium-avatar {
  width: 48px; height: 48px; margin: 0 auto var(--s-sm);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 800; color: white;
  background: var(--c-text-muted);
}
.podium-avatar.gold { background: var(--c-accent); color: var(--c-secondary); box-shadow: var(--shadow-gold); }
.podium-prize { font-size: 1.125rem; font-weight: 800; margin-bottom: var(--s-xs); }
.gold-text { color: var(--c-accent); }
.podium-label { font-size: 0.75rem; color: var(--c-text-muted); margin-bottom: var(--s-sm); }
.podium-bar { border-radius: var(--r-sm) var(--r-sm) 0 0; }
.bar1 { height: 120px; background: linear-gradient(180deg, var(--c-accent) 0%, var(--c-accent-dark) 100%); }
.bar2 { height: 90px; background: linear-gradient(180deg, #C0C0C0 0%, #A0A0A0 100%); }
.bar3 { height: 70px; background: linear-gradient(180deg, #CD7F32 0%, #A0652F 100%); }

.prize-table-wrap {
  max-width: 600px; margin: var(--s-xl) auto 0;
  border: 1px solid var(--c-border); border-radius: var(--r-lg);
  background: var(--c-card); overflow: hidden;
}
.prize-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.prize-table thead th {
  padding: var(--s-md) var(--s-lg); text-align: left; font-weight: 700;
  border-bottom: 2px solid var(--c-border); background: var(--c-bg);
  font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--c-text-muted);
}
.prize-table tbody td { padding: var(--s-md) var(--s-lg); border-bottom: 1px solid var(--c-border); }
.prize-table tbody tr:last-child td { border-bottom: none; }
.prize-table tfoot td { padding: var(--s-md) var(--s-lg); border-top: 2px solid var(--c-border); background: var(--c-bg); }
.ptr-gold td { background: rgba(255,215,0,0.06); }
.ptr-silver td { background: rgba(192,192,192,0.06); }
.ptr-bronze td { background: rgba(205,127,50,0.06); }

/* ===== SCHEDULE / TIMELINE ===== */
.schedule { padding: var(--s-4xl) var(--s-md); }
.schedule h2 { text-align: center; font-size: 1.75rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: var(--s-xs); }
.timeline { max-width: 600px; margin: var(--s-xl) auto 0; position: relative; padding-left: 40px; }
.timeline::before {
  content: ""; position: absolute; left: 15px; top: 8px; bottom: 8px;
  width: 2px; background: var(--c-border);
}
.tl-item { position: relative; margin-bottom: var(--s-xl); }
.tl-item:last-child { margin-bottom: 0; }
.tl-dot {
  position: absolute; left: -33px; top: 8px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--c-card); border: 3px solid var(--c-border); z-index: 1;
}
.tl-dot.active { border-color: var(--c-primary); background: var(--c-primary); box-shadow: 0 0 0 4px rgba(230,57,70,0.2); }
.tl-date { font-size: 0.75rem; font-weight: 600; color: var(--c-text-muted); margin-bottom: var(--s-xs); text-transform: uppercase; letter-spacing: 0.04em; }
.tl-card {
  background: var(--c-card); border: 1px solid var(--c-border);
  border-radius: var(--r-md); padding: var(--s-md) var(--s-lg);
  position: relative;
}
.tl-badge {
  display: inline-block; font-size: 0.625rem; font-weight: 700;
  padding: 1px 8px; border-radius: 100px;
  background: rgba(230,57,70,0.08); color: var(--c-primary);
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: var(--s-sm);
}
.tl-badge.open { background: rgba(0,230,118,0.1); color: var(--c-success); }
.tl-badge.final { background: rgba(255,107,53,0.15); color: var(--c-accent-dark); }
.tl-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: var(--s-xs); }
.tl-card p { font-size: 0.8125rem; color: var(--c-text-muted); line-height: 1.6; }

/* ===== LEADERBOARD ===== */
.leaderboard { padding: var(--s-4xl) var(--s-md); background: var(--c-bg-alt); }
.leaderboard h2 { text-align: center; font-size: 1.75rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: var(--s-xs); }
.lb-table-wrap {
  max-width: 700px; margin: var(--s-xl) auto 0;
  border: 1px solid var(--c-border); border-radius: var(--r-lg);
  background: var(--c-card); overflow-x: auto;
}
.lb-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; min-width: 500px; }
.lb-table thead th {
  padding: var(--s-md) var(--s-lg); text-align: left; font-weight: 700;
  border-bottom: 2px solid var(--c-border); background: var(--c-bg);
  font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--c-text-muted);
}
.lb-table tbody td { padding: var(--s-sm) var(--s-lg); border-bottom: 1px solid var(--c-border); vertical-align: middle; }
.lb-table tbody tr:last-child td { border-bottom: none; }
.lb-rank { font-weight: 800; width: 40px; font-size: 0.9375rem; }
.lb-player { display: flex; align-items: center; gap: var(--s-sm); font-weight: 500; }
.lb-av {
  width: 30px; height: 30px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.625rem; font-weight: 700; color: white; flex-shrink: 0;
}
.av1 { background: var(--c-accent); color: var(--c-secondary); }
.av2 { background: #A0A0A0; }
.av3 { background: #CD7F32; }
.av4 { background: #6C5CE7; }
.av5 { background: #00B894; }
.av6 { background: #E17055; }
.av7 { background: #0984E3; }
.av8 { background: #636E72; }
.av9 { background: #D63031; }
.av10 { background: #6D214F; }
.lb-pts { font-weight: 700; font-variant-numeric: tabular-nums; }
.lb-prize { font-weight: 700; color: var(--c-primary); }
.lb-gold td { background: rgba(255,215,0,0.05); }
.lb-gold .lb-rank { color: var(--c-accent-dark); }
.lb-silver td { background: rgba(192,192,192,0.05); }
.lb-bronze td { background: rgba(205,127,50,0.05); }
.lb-note { text-align: center; font-size: 0.75rem; color: var(--c-text-muted); margin-top: var(--s-md); }

/* ===== HOSTS ===== */
.hosts { padding: var(--s-4xl) var(--s-md); }
.hosts h2 { text-align: center; font-size: 1.75rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: var(--s-xs); }
.hosts-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--s-lg); max-width: 900px; margin: var(--s-xl) auto 0;
}
.host-card {
  background: var(--c-card); border: 1px solid var(--c-border);
  border-radius: var(--r-lg); padding: var(--s-lg); text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.host-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.host-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 700; color: white;
  margin: 0 auto var(--s-md);
}
.ha1 { background: var(--c-primary); }
.ha2 { background: #6C5CE7; }
.ha3 { background: #00B894; }
.host-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: var(--s-xs); }
.host-title { font-size: 0.75rem; color: var(--c-primary); font-weight: 600; margin-bottom: var(--s-sm); text-transform: uppercase; letter-spacing: 0.03em; }
.host-bio { font-size: 0.8125rem; color: var(--c-text-muted); line-height: 1.6; }

/* ===== HOW TO JOIN ===== */
.join { padding: var(--s-4xl) var(--s-md); background: var(--c-bg-alt); }
.join h2 { text-align: center; font-size: 1.75rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: var(--s-xs); }
.join-steps {
  display: flex; align-items: flex-start; justify-content: center;
  gap: var(--s-lg); max-width: 900px; margin: var(--s-xl) auto 0;
}
.join-step { flex: 1; max-width: 260px; text-align: center; position: relative; }
.join-num {
  position: absolute; top: -10px; right: -10px;
  width: 28px; height: 28px; background: var(--c-primary); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800; z-index: 1;
}
.join-icon {
  width: 64px; height: 64px; background: var(--c-card); border: 2px solid var(--c-border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; margin: 0 auto var(--s-md);
}
.join-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: var(--s-xs); }
.join-step p { font-size: 0.8125rem; color: var(--c-text-muted); line-height: 1.6; }
.join-arrow { font-size: 1.5rem; color: var(--c-border); padding-top: 24px; flex-shrink: 0; }
.join-cta { text-align: center; margin-top: var(--s-xl); }

/* ===== SECURITY ===== */
.security { padding: var(--s-2xl) var(--s-md); }
.security-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: var(--s-xl); flex-wrap: wrap;
}
.sec-badge {
  display: flex; align-items: center; gap: var(--s-sm);
  padding: var(--s-sm) var(--s-md); border: 1px solid var(--c-border);
  border-radius: var(--r-md); background: var(--c-card);
}
.sec-badge-icon {
  width: 32px; height: 32px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.sec-badge-icon.ssl { background: rgba(0,230,118,0.1); }
.sec-badge-icon.kvkk { background: rgba(37,99,235,0.1); }
.sec-badge-icon.license { background: rgba(230,57,70,0.1); }
.sec-badge-icon.fair { background: rgba(255,215,0,0.1); }
.sec-badge-text { font-size: 0.75rem; font-weight: 600; color: var(--c-text); line-height: 1.3; }
.sec-badge-sub { font-size: 0.625rem; color: var(--c-text-muted); }

/* ===== FAQ ===== */
.faq { padding: var(--s-4xl) var(--s-md); }
.faq h2 { text-align: center; font-size: 1.75rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: var(--s-xs); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--s-sm); }
.faq-item {
  background: var(--c-card); border: 1px solid var(--c-border);
  border-radius: var(--r-md); overflow: hidden; transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--c-primary); }
.faq-item summary {
  padding: var(--s-md) var(--s-lg); font-weight: 600; font-size: 0.9375rem;
  cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-md); list-style: none; min-height: 52px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.25rem; font-weight: 300;
  color: var(--c-text-muted); flex-shrink: 0; transition: transform 0.2s;
}
.faq-item[open] summary::after { content: "\2212"; color: var(--c-primary); }
.faq-answer { padding: 0 var(--s-lg) var(--s-lg); font-size: 0.875rem; color: var(--c-text-muted); line-height: 1.7; }

/* ===== FINAL CTA ===== */
.final-cta {
  padding: var(--s-4xl) var(--s-md); text-align: center;
  background: var(--c-secondary); color: white;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 120%, rgba(230,57,70,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 50%, rgba(230,57,70,0.1) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 90% 50%, rgba(255,215,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta .wrap { position: relative; }
.final-cta h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: var(--s-md); }
.final-cta > .wrap > p { font-size: 1.0625rem; color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto var(--s-xl); }
.final-cta-btns { display: flex; gap: var(--s-md); justify-content: center; flex-wrap: wrap; }
.cta-legal { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: var(--s-xl); }
.cta-legal a { color: rgba(255,255,255,0.5); text-decoration: underline; }

/* ===== FOOTER ===== */
.footer {
  background: var(--c-bg-dark); color: rgba(255,255,255,0.6);
  padding: var(--s-3xl) var(--s-md) var(--s-2xl);
}
.footer-top {
  display: grid; grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--s-xl); max-width: var(--max-w); margin: 0 auto var(--s-2xl);
}
.footer-brand .logo { color: var(--c-primary); margin-bottom: var(--s-md); }
.footer-brand p { font-size: 0.8125rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  color: white; font-size: 0.8125rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: var(--s-md);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--s-sm); }
.footer-col a { font-size: 0.8125rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--c-primary-light); }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: var(--s-xl);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s-md);
}
.footer-bottom p { font-size: 0.75rem; }
.footer-payments { display: flex; gap: var(--s-sm); align-items: center; }
.pay-badge {
  background: rgba(255,255,255,0.1); padding: var(--s-xs) var(--s-sm);
  border-radius: var(--r-sm); font-size: 0.625rem; font-weight: 700; color: rgba(255,255,255,0.7);
}
.version-badge {
  display: inline-flex; align-items: center; gap: var(--s-xs);
  background: rgba(255,255,255,0.06); padding: 2px var(--s-sm); border-radius: 100px;
  font-size: 0.625rem; color: rgba(255,255,255,0.4);
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
}
.version-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--c-success); }

/* ===== COOKIE CONSENT ===== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--c-secondary); color: rgba(255,255,255,0.8);
  padding: var(--s-md) var(--s-lg); display: flex; align-items: center;
  justify-content: center; gap: var(--s-lg); font-size: 0.8125rem;
  z-index: 9999; box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  transform: translateY(0); transition: transform 0.4s; flex-wrap: wrap;
}
.cookie-banner.hidden { transform: translateY(100%); pointer-events: none; }
.cookie-banner p { max-width: 600px; line-height: 1.5; }
.cookie-banner a { color: var(--c-primary-light); text-decoration: underline; }
.cookie-btns { display: flex; gap: var(--s-sm); flex-shrink: 0; }
.cookie-btn { padding: var(--s-sm) var(--s-lg); font-size: 0.8125rem; font-weight: 600; border-radius: var(--r-md); transition: all 0.2s; }
.cookie-btn.accept { background: var(--c-primary); color: white; }
.cookie-btn.accept:hover { background: var(--c-primary-dark); }
.cookie-btn.settings { background: rgba(255,255,255,0.1); color: white; }
.cookie-btn.settings:hover { background: rgba(255,255,255,0.15); }

/* ===== CHAT WIDGET ===== */
.chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 9998; }
.cookie-banner:not(.hidden) ~ .chat-widget { bottom: 90px; }
.chat-bubble {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--c-primary); display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.5rem;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transition: transform 0.2s, box-shadow 0.2s; cursor: pointer;
}
.chat-bubble:hover { transform: scale(1.08); box-shadow: var(--shadow-xl), var(--shadow-glow); }
.chat-bubble:active { transform: scale(0.95); }
.chat-tooltip {
  position: absolute; bottom: calc(100% + 8px); right: 0;
  background: var(--c-card); color: var(--c-text);
  padding: var(--s-sm) var(--s-md); border-radius: var(--r-md);
  font-size: 0.75rem; font-weight: 500; white-space: nowrap;
  box-shadow: var(--shadow-md); border: 1px solid var(--c-border);
  opacity: 0; transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s; pointer-events: none;
}
.chat-widget:hover .chat-tooltip { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .hosts-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
  .join-steps { flex-direction: column; align-items: center; }
  .join-arrow { transform: rotate(90deg); padding: 0; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .btn-ghost { display: none; }
  .mobile-menu-btn { display: flex; }
  .info-grid { gap: var(--s-md); }
  .info-divider { display: none; }
  .podium { gap: var(--s-sm); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .cd-num { width: 56px; height: 56px; font-size: 1.5rem; line-height: 56px; }
  .cd-num-sm { width: 44px; height: 44px; font-size: 1.125rem; line-height: 44px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .security-inner { gap: var(--s-md); }
  .info-grid { flex-direction: column; gap: var(--s-sm); }
}
@media (max-width: 480px) {
  .hero { padding: var(--s-3xl) var(--s-md) var(--s-2xl); }
  .hero h1 { font-size: 1.75rem; }
  .countdown { gap: var(--s-xs); }
  .cd-num { width: 48px; height: 48px; font-size: 1.25rem; line-height: 48px; }
  .cd-num-sm { width: 40px; height: 40px; font-size: 1rem; line-height: 40px; }
  .bar1 { height: 80px; }
  .bar2 { height: 60px; }
  .bar3 { height: 45px; }
  .cookie-banner { flex-direction: column; text-align: center; padding: var(--s-md); }
  .chat-widget { bottom: 16px; right: 16px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .ticket-card { flex-direction: column; }
  .past-events-grid { grid-template-columns: 1fr; }
}

/* ===== ADD TO CALENDAR ===== */
.add-calendar { padding: var(--s-3xl) var(--s-md); background: var(--c-bg); text-align: center; }
.add-calendar h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: var(--s-xs); }
.add-calendar .subtitle { color: var(--c-text-muted); margin-bottom: var(--s-xl); }
.calendar-btns {
  display: flex;
  gap: var(--s-md);
  justify-content: center;
  flex-wrap: wrap;
}
.cal-btn {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
  padding: var(--s-md) var(--s-lg);
  border: 2px solid var(--c-border);
  border-radius: var(--r-md);
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--c-card);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cal-btn:hover { border-color: var(--c-primary); box-shadow: var(--shadow-sm); }
.cal-icon { font-size: 1.25rem; }

/* ===== EVENT TICKET ===== */
.ticket-section { padding: var(--s-3xl) var(--s-md); background: var(--c-bg-alt); }
.ticket-section h2 { text-align: center; font-size: 1.5rem; font-weight: 700; margin-bottom: var(--s-xs); }
.ticket-section .subtitle { text-align: center; color: var(--c-text-muted); margin-bottom: var(--s-xl); }
.ticket-card {
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  background: var(--c-card);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px dashed var(--c-primary);
  position: relative;
}
.ticket-left {
  flex: 1;
  padding: var(--s-xl);
  display: flex;
  flex-direction: column;
  gap: var(--s-sm);
}
.ticket-event-name { font-size: 1.125rem; font-weight: 700; color: var(--c-primary); }
.ticket-detail { display: flex; align-items: center; gap: var(--s-sm); font-size: 0.8125rem; color: var(--c-text-muted); }
.ticket-detail-icon { font-size: 1rem; }
.ticket-type {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--r-sm);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: var(--s-sm);
}
.ticket-type.standard { background: #DBEAFE; color: #2563EB; }
.ticket-type.vip { background: rgba(255,107,53,0.15); color: var(--c-accent); }
.ticket-right {
  width: 120px;
  background: var(--c-secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-sm);
  padding: var(--s-lg);
  position: relative;
}
.ticket-right::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--c-bg-alt);
}
.ticket-barcode {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
}
.ticket-barcode-line {
  width: 60px;
  height: 3px;
  background: white;
  border-radius: 1px;
}
.ticket-barcode-line:nth-child(even) { width: 40px; opacity: 0.6; }
.ticket-barcode-line:nth-child(3n) { width: 50px; opacity: 0.8; }
.ticket-id { font-size: 0.625rem; color: rgba(255,255,255,0.5); font-family: monospace; }

/* ===== PAST EVENTS ===== */
.past-events { padding: var(--s-3xl) var(--s-md); background: var(--c-bg); }
.past-events h2 { text-align: center; font-size: 1.5rem; font-weight: 700; margin-bottom: var(--s-xs); }
.past-events .subtitle { text-align: center; color: var(--c-text-muted); margin-bottom: var(--s-xl); }
.past-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-md);
  max-width: 900px;
  margin: 0 auto;
}
.pe-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--s-lg);
  transition: box-shadow 0.2s;
}
.pe-card:hover { box-shadow: var(--shadow-md); }
.pe-date { font-size: 0.75rem; color: var(--c-text-muted); margin-bottom: var(--s-xs); }
.pe-name { font-size: 0.9375rem; font-weight: 700; margin-bottom: var(--s-sm); }
.pe-winner {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
  font-size: 0.8125rem;
  margin-bottom: var(--s-xs);
}
.pe-trophy { font-size: 1rem; }
.pe-prize { font-size: 0.875rem; font-weight: 700; color: var(--c-primary); }
.pe-participants { font-size: 0.6875rem; color: var(--c-text-muted); }

/* ===== LIVE STREAM ===== */
.live-stream { padding: var(--s-3xl) var(--s-md); background: var(--c-bg-alt); }
.live-stream h2 { text-align: center; font-size: 1.5rem; font-weight: 700; margin-bottom: var(--s-xs); }
.live-stream .subtitle { text-align: center; color: var(--c-text-muted); margin-bottom: var(--s-xl); }
.ls-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--c-secondary);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ls-player {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0B0E17, #1A1D2E);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ls-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  backdrop-filter: blur(4px);
  border: 2px solid rgba(255,255,255,0.2);
}
.ls-live-badge {
  position: absolute;
  top: var(--s-md);
  left: var(--s-md);
  background: var(--c-primary);
  color: white;
  padding: 4px 12px;
  border-radius: var(--r-sm);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: var(--s-xs);
  animation: pulseBadge 2s infinite;
}
.ls-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}
.ls-viewers {
  position: absolute;
  top: var(--s-md);
  right: var(--s-md);
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 4px 10px;
  border-radius: var(--r-sm);
  font-size: 0.75rem;
}
.ls-info {
  padding: var(--s-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-sm);
}
.ls-platform { font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.ls-remind-btn {
  padding: var(--s-sm) var(--s-lg);
  background: var(--c-accent);
  color: var(--c-secondary);
  border-radius: var(--r-md);
  font-size: 0.8125rem;
  font-weight: 700;
  transition: background 0.2s;
}
.ls-remind-btn:hover { background: var(--c-accent-dark); }
