/* Base */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: #0b2447;
  background: #f8fafc;
  line-height: 1.6;
}

.container { width: min(1120px, 92%); margin: 0 auto; }

/* Animated background */
.bg-animated {
  position: fixed; inset: 0; z-index: -1;
  background: radial-gradient(1200px 600px at 10% 10%, rgba(142, 227, 245, 0.25), transparent 60%),
              radial-gradient(900px 500px at 90% 20%, rgba(70, 195, 219, 0.18), transparent 60%),
              radial-gradient(800px 500px at 30% 80%, rgba(159, 236, 255, 0.22), transparent 60%),
              linear-gradient(180deg, #ffffff, #eef7fb);
  overflow: hidden;
}

/* Header */
.site-header { position: sticky; top: 0; background: rgba(255,255,255,0.9); backdrop-filter: saturate(180%) blur(10px); border-bottom: 1px solid #e7eef5; z-index: 20; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.logo { text-decoration: none; color: #0b2447; font-weight: 800; letter-spacing: 0.2px; font-size: 20px; }
.logo-accent { color: #46c3db; }

.nav { position: relative; }
.menu { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; }
.menu a { text-decoration: none; color: #0b2447; padding: 10px 12px; border-radius: 10px; transition: background 200ms ease; }
.menu a:hover { background: rgba(70,195,219,0.12); }

.burger { display: none; width: 46px; height: 46px; border: 1px solid #dae6f1; background: #ffffff; border-radius: 12px; align-items: center; justify-content: center; gap: 6px; cursor: pointer; transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
.burger:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(11,36,71,0.08); border-color: #cfe0ee; }
.burger-line { display: block; width: 22px; height: 2.5px; background: #0b2447; border-radius: 2px; position: relative; transition: transform 200ms ease, opacity 200ms ease, background 200ms ease; transform-origin: center; }
.burger.is-active .burger-line { background: #e63946; }
.burger.is-active .burger-line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-active .burger-line:nth-child(2) { opacity: 0; }
.burger.is-active .burger-line:nth-child(3) {     transform: translateY(-9px) rotate(-45deg); }

/* Hero */
.hero { padding: 48px 0 24px; }
.hero-inner { display: grid; grid-template-columns: 1.2fr 1fr; align-items: center; gap: 24px; }
.hero-text h1 { margin: 0 0 10px; letter-spacing: -0.4px; font-size: clamp(28px, 3.2vw, 40px); }
.hero-text p { margin: 0 0 18px; color: #1f335a; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-art img { width: 100%; height: auto; border-radius: 16px; box-shadow: 0 10px 30px rgba(11,36,71,0.15); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 16px; border-radius: 12px; font-weight: 700; text-decoration: none; transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: #0b2447; color: #fff; box-shadow: 0 8px 20px rgba(11,36,71,0.25); }
.btn-primary:hover { background: #0e2c57; box-shadow: 0 12px 26px rgba(11,36,71,0.28); }
.btn-outline { background: #ffffff; color: #0b2447; border: 1px solid #cfe7ef; }
.btn-outline:hover { background: #f2fbfe; border-color: #46c3db; }
.btn-secondary { background: #46c3db; color: #063548; box-shadow: 0 8px 20px rgba(70,195,219,0.25); }
.btn-secondary:hover { background: #3cb1c7; }

/* Sections */
.section { padding: 28px 0; }
.section-sports { padding-top: 12px; }
.section-sub { margin: 6px 0 18px; color: #315075; }

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ticket-card { background: #ffffff; border: 1px solid #e6eef5; border-radius: 16px; padding: 18px; display: grid; grid-template-rows: auto auto 1fr auto; gap: 10px; position: relative; overflow: hidden; }
.ticket-card::after { content: ""; position: absolute; inset: -40% -20% auto auto; width: 260px; height: 260px; background: radial-gradient(closest-side, rgba(70,195,219,0.18), transparent); transform: translate(40px, -40px); pointer-events: none; }
.ticket-card:hover { border-color: #cfe7ef; box-shadow: 0 8px 28px rgba(11,36,71,0.08); }
.card-media { display: flex; align-items: center; justify-content: center; height: 96px; }
.card-title { margin: 0; font-size: 18px; }
.card-text { margin: 0; color: #315075; }
.card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 8px; }

/* Why */
.why-list { display: grid; grid-template-columns: 1fr; gap: 8px; padding-left: 16px; }
.why-list li { background: #ffffff; border: 1px solid #e6eef5; border-radius: 12px; padding: 12px 14px; }

/* Footer */
.site-footer { border-top: 1px solid #e7eef5; background: #ffffff; margin-top: 24px; }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 18px; padding: 18px 0; align-items: center; }
.footer-col .brand { font-weight: 800; margin: 0 0 6px; }
.footer-col .disclaimer { margin: 0; color: #315075; max-width: 56ch; }
.footer-nav { display: flex; gap: 14px; }
.footer-nav a { color: #0b2447; text-decoration: none; padding: 8px 10px; border-radius: 10px; }
.footer-nav a:hover { background: rgba(70,195,219,0.12); }

/* Mobile menu */
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .menu { position: fixed; inset: 64px 12px auto 12px; background: #ffffff; border: 1px solid #e6eef5; border-radius: 14px; box-shadow: 0 18px 40px rgba(11,36,71,0.12); flex-direction: column; gap: 10px; padding: 12px; transform: translateY(-16px); opacity: 0; pointer-events: none; transition: opacity 220ms ease, transform 220ms ease; z-index: 40; }
  .menu li { border: 0; }
  .menu a { display: block; padding: 14px 14px; border-radius: 10px; font-weight: 700; background: #f7fbfe; border: 1px solid #e6eef5; color: #0b2447; }
  .menu a:hover { background: #eef7fb; border-color: #cfe7ef; }
  .menu.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .burger { display: flex; flex-direction: column;}
  .card-grid { grid-template-columns: 1fr; }
  body.no-scroll { overflow: hidden; }
}

/* Motion preferences */
@media (prefers-reduced-motion: reduce) {
  .btn, .burger, .menu { transition: none; }
}

/* Responsive footer */
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-col .disclaimer { margin-left: auto; margin-right: auto; }
  .footer-nav { justify-content: center; flex-wrap: wrap; }
}

/* Popup */
.popup-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(11, 36, 71, 0.75); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 280ms ease;
  padding: 16px;
}
.popup-overlay.is-visible { opacity: 1; pointer-events: auto; }
.popup-content {
  background: #ffffff; border-radius: 18px; box-shadow: 0 20px 50px rgba(11,36,71,0.3);
  max-width: 480px; width: 100%; transform: scale(0.92); transition: transform 280ms ease;
  overflow: hidden;
}
.popup-overlay.is-visible .popup-content { transform: scale(1); }
.popup-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px; border-bottom: 1px solid #e6eef5;
}
.popup-header h2 { margin: 0; font-size: 22px; color: #0b2447; }
.popup-close {
  width: 36px; height: 36px; border: 0; background: #f7fbfe;
  border-radius: 8px; font-size: 24px; line-height: 1; color: #0b2447;
  cursor: pointer; transition: background 160ms ease, transform 160ms ease;
  display: flex; align-items: center; justify-content: center;
}
.popup-close:hover { background: #eef7fb; transform: rotate(90deg); }
.popup-body { padding: 20px 22px; color: #315075; }
.popup-body p { margin: 0; }
.popup-actions {
  display: flex; gap: 12px; padding: 18px 22px; border-top: 1px solid #e6eef5;
}
.popup-actions .btn { flex: 1; }
@media (max-width: 480px) {
  .popup-actions { flex-direction: column; }
  .popup-actions .btn { width: 100%; }
}


