@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;900&display=swap');

:root {
  --bg: #0a0a1a;
  --bg2: #0d1525;
  --accent: #0088FF;
  --accent-light: #00D4FF;
  --gold: #FFD700;
  --green: #4CAF50;
  --text: #e0e0e0;
  --muted: #667788;
  --card: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: var(--accent); text-decoration: none; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 16px; }

/* ===== NAV (mobile-first) ===== */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(10,10,26,0.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
nav .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 20px; font-weight: 900; color: #fff; }
.logo span { color: var(--accent); }
nav a.cta-nav {
  background: var(--accent); color: #fff;
  padding: 12px 16px; border-radius: 8px;
  font-weight: 700; font-size: 14px;
  min-height: 48px; display: inline-flex; align-items: center;
  transition: 0.2s;
}
nav a.cta-nav:hover { background: var(--accent-light); }

/* ===== HERO (mobile-first) ===== */
.hero {
  padding: 100px 0 50px; text-align: center;
  background: radial-gradient(ellipse at center top, rgba(0,136,255,0.08) 0%, transparent 60%);
}
.hero h1 { font-size: 32px; font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 16px; }
.hero h1 .highlight { color: var(--accent); }
.hero p { font-size: 16px; color: var(--muted); max-width: 600px; margin: 0 auto 24px; padding: 0 8px; }
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), #0066CC);
  color: #fff; font-size: 18px; font-weight: 800;
  padding: 16px 32px; border-radius: 12px;
  border: none; cursor: pointer; transition: 0.3s;
  text-transform: uppercase; letter-spacing: 1px;
  min-height: 48px;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,136,255,0.3); }
.hero-price { margin-top: 12px; font-size: 15px; color: var(--muted); }
.hero-price strong { color: var(--gold); font-size: 22px; }

/* ===== SPORTS (mobile-first) ===== */
.sports { padding: 40px 0; text-align: center; }
.sport-pills {
  display: flex; gap: 10px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  padding: 4px 0 12px;
  scrollbar-width: none;
}
.sport-pills::-webkit-scrollbar { display: none; }
.sport-pill {
  padding: 12px 20px; border-radius: 30px;
  font-weight: 600; font-size: 14px;
  border: 1px solid var(--border); color: var(--muted);
  cursor: default; transition: 0.2s;
  white-space: nowrap; flex-shrink: 0;
  min-height: 48px; display: inline-flex; align-items: center;
}
.sport-pill.active { background: var(--accent); color: #000; border-color: var(--accent); }
.sport-pill.soon { opacity: 0.5; }
.sport-pill.soon::after { content: ' — Soon'; font-size: 11px; }

/* ===== HOW IT WORKS (mobile-first) ===== */
.how { padding: 50px 0; }
.section-title { text-align: center; font-size: 26px; font-weight: 900; color: #fff; margin-bottom: 32px; }
.steps { display: grid; grid-template-columns: 1fr; gap: 20px; }
.step {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 20px; text-align: center;
}
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #0066CC);
  color: #fff; font-weight: 900; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step h3 { font-size: 18px; color: #fff; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14px; }

/* ===== SAMPLE (mobile-first) ===== */
.sample { padding: 50px 0; }
.sample-frame {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  max-width: 800px; margin: 0 auto;
}
.sample-frame iframe {
  width: 100%; height: 480px; border: none;
  pointer-events: none;
}
.sample-scroll-hint {
  text-align: center; padding: 12px;
  font-size: 13px; color: var(--muted);
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
}
.sample-frame-interactive {
  overflow: auto; -webkit-overflow-scrolling: touch;
  max-height: 70vh; position: relative;
}
.sample-frame-interactive iframe {
  pointer-events: auto;
  min-height: 600px;
}
.sample-link {
  text-align: center; margin-top: 16px;
}
.sample-link a {
  display: inline-flex; align-items: center;
  min-height: 48px; padding: 12px 24px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 10px; font-weight: 600; font-size: 15px;
  transition: 0.2s;
}
.sample-link a:hover { border-color: var(--accent); }

/* ===== FEATURES (mobile-first) ===== */
.features { padding: 50px 0; }
.feature-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.feature {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px;
}
.feature .icon { font-size: 28px; margin-bottom: 10px; }
.feature h3 { font-size: 16px; color: #fff; margin-bottom: 6px; }
.feature p { font-size: 14px; color: var(--muted); }

/* ===== ORDER FORM (mobile-first) ===== */
.order { padding: 50px 0; }
.order-card {
  max-width: 560px; margin: 0 auto;
  background: linear-gradient(135deg, rgba(0,136,255,0.06) 0%, rgba(0,212,255,0.03) 100%);
  border: 1px solid rgba(0,136,255,0.2);
  border-radius: 20px; padding: 24px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--accent); text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 6px;
}
.form-group input, .form-group select {
  width: 100%; padding: 14px 16px; border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05); color: #fff;
  font-size: 16px; font-family: inherit;
  outline: none; transition: 0.2s;
  min-height: 48px;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,136,255,0.15);
}
.form-group select option { background: #1a1a2e; }
.player-preview {
  background: rgba(0,136,255,0.08);
  border: 1px solid rgba(0,136,255,0.2);
  border-radius: 10px; padding: 16px;
  margin-bottom: 16px; display: none;
}
.player-preview.show { display: block; }
.player-preview h4 { color: var(--accent); margin-bottom: 4px; }
.player-preview p { color: var(--muted); font-size: 14px; }

/* Multiple player selection UI */
.player-selection-list { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.player-option {
  display: flex; flex-direction: column; gap: 2px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 12px; cursor: pointer;
  transition: 0.2s;
}
.player-option:hover { border-color: var(--accent); background: rgba(0,136,255,0.1); }
.player-option.selected { border-color: var(--accent); background: rgba(0,136,255,0.15); }
.player-option-name { font-weight: 700; color: #fff; font-size: 15px; }
.player-option-team { font-size: 13px; color: var(--muted); }
.player-option-stats { font-size: 12px; color: var(--accent); font-weight: 600; }
.price-line {
  text-align: center; font-size: 28px;
  font-weight: 900; color: var(--gold); margin-bottom: 16px;
}
.submit-btn {
  width: 100%; padding: 16px; border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, var(--accent), #0066CC);
  color: #fff; font-size: 18px; font-weight: 800;
  cursor: pointer; transition: 0.3s;
  text-transform: uppercase; letter-spacing: 1px;
  min-height: 56px;
}
.submit-btn:hover { box-shadow: 0 8px 30px rgba(0,136,255,0.3); }
.submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ===== FOOTER ===== */
footer {
  padding: 32px 0; border-top: 1px solid var(--border); text-align: center;
}
footer .logo { margin-bottom: 12px; display: block; }
footer p { color: var(--muted); font-size: 13px; max-width: 500px; margin: 0 auto; }

/* ==============================
   TABLET (768px+)
   ============================== */
@media (min-width: 768px) {
  .container { padding: 0 24px; }
  .hero { padding: 140px 0 80px; }
  .hero h1 { font-size: 48px; }
  .hero p { font-size: 18px; }
  .section-title { font-size: 32px; margin-bottom: 40px; }

  .sport-pills { justify-content: center; flex-wrap: wrap; overflow-x: visible; }

  .steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .sample-frame iframe { height: 600px; }

  .how, .sample, .features, .order { padding: 70px 0; }
  .order-card { padding: 36px; }
}

/* ==============================
   DESKTOP (1024px+)
   ============================== */
@media (min-width: 1024px) {
  .container { padding: 0 32px; }
  .hero { padding: 160px 0 100px; }
  .hero h1 { font-size: clamp(48px, 5vw, 64px); }
  .hero p { font-size: 20px; }
  .section-title { font-size: 36px; margin-bottom: 50px; }

  .feature-grid { grid-template-columns: repeat(3, 1fr); }

  .sample-frame iframe { height: 700px; }

  .how, .sample, .features, .order { padding: 80px 0; }
  .order-card { padding: 40px; }

  nav { padding: 16px 0; }
  .logo { font-size: 22px; }
  nav a.cta-nav { padding: 10px 24px; }

  .step { padding: 35px; }
  .feature { padding: 24px; }
}
