/* ============================================
   TicketRush — Style v2
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:    #1a73e8;
  --blue-d:  #1558b0;
  --red:     #e53935;
  --green:   #2e7d32;
  --yellow:  #f9a825;
  --bg:      #0a0a0f;
  --card:    #13131f;
  --card2:   #1c1c2e;
  --border:  #2a2a3e;
  --text:    #eeeeff;
  --muted:   #7070a0;
  --vip:     #ffd700;
  --mid:     #4fc3f7;
  --upper:   #a5d6a7;
  --taken:   #2a2a2a;
  --radius:  16px;
  --th-blue: #003580;
  --th-bg:   #f5f7fa;
}

html, body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}

/* ---- Screens ---- */
.screen { display: none; flex-direction: column; align-items: center; min-height: 100vh; padding: 24px 16px 48px; }
.screen.active { display: flex; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.screen.active { animation: fadeIn 0.2s ease; }

/* ============================================
   SHARED
   ============================================ */
.logo {
  font-size: 2.4rem; font-weight: 900; letter-spacing: -1px;
  margin-bottom: 4px; text-align: center;
  background: linear-gradient(135deg, #6eb4ff, #a78bfa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.subtitle { color: var(--muted); margin-bottom: 28px; font-size: 0.95rem; text-align: center; }

.btn-primary {
  background: linear-gradient(135deg, #1a73e8, #6c63ff);
  color: #fff; border: none; border-radius: 12px;
  padding: 15px 32px; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: opacity 0.15s; width: 100%; max-width: 340px;
  margin-top: 16px;
}
.btn-primary:hover { opacity: 0.88; }
.btn-primary:disabled { opacity: 0.4; cursor: default; }

.btn-secondary {
  background: var(--card); color: var(--text); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 32px; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: background 0.15s; width: 100%; max-width: 340px; margin-top: 8px;
}
.btn-secondary:hover { background: #222; }

.budget-pill {
  background: #1a2a1a; border: 1px solid #2e5a2e; border-radius: 20px;
  padding: 4px 12px; font-size: 0.82rem; color: #a5d6a7;
}

/* ============================================
   SCREEN 0: Budget
   ============================================ */
.budget-wrap { display: flex; flex-direction: column; align-items: center; width: 100%; max-width: 480px; }
.budget-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 24px; width: 100%; text-align: center;
}
.budget-card h2 { font-size: 1.5rem; margin-bottom: 8px; }
.budget-hint { color: var(--muted); font-size: 0.88rem; margin-bottom: 20px; }
.budget-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.budget-btn {
  background: var(--card2); border: 1px solid var(--border); color: var(--text);
  border-radius: 10px; padding: 12px 8px; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: all 0.15s;
}
.budget-btn:hover, .budget-btn.selected { background: #1a2a4a; border-color: var(--blue); color: #6eb4ff; }
.budget-btn.unlimited.selected { background: #1a2a1a; border-color: #4caf50; color: #a5d6a7; }
.budget-display { font-size: 1.3rem; font-weight: 800; color: #6eb4ff; margin-bottom: 8px; }

/* ============================================
   SCREEN 0b: Network
   ============================================ */
.network-wrap { display: flex; flex-direction: column; align-items: center; width: 100%; max-width: 600px; }
.network-wrap h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 4px; }
.network-options { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; width: 100%; margin-bottom: 24px; }
.network-card {
  background: var(--card); border: 2px solid var(--border); border-radius: var(--radius);
  padding: 20px 14px; cursor: pointer; text-align: center; position: relative;
  transition: all 0.15s;
}
.network-card:hover { border-color: #555; }
.network-card.selected { border-color: var(--blue); background: #0d1a2e; }
.net-icon { font-size: 2rem; margin-bottom: 6px; }
.net-name { font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.net-speed { font-size: 0.8rem; color: #6eb4ff; font-weight: 600; margin-bottom: 4px; }
.net-desc { font-size: 0.75rem; color: var(--muted); }
.net-badge {
  position: absolute; top: 8px; right: 8px;
  background: var(--blue); color: #fff;
  font-size: 0.6rem; font-weight: 700; padding: 2px 6px; border-radius: 6px;
  letter-spacing: 0.5px;
}
.net-badge.sketchy { background: #5a2a00; color: #ffaa44; }

/* ============================================
   SCREEN 1: Concert Select
   ============================================ */
.budget-bar { font-size: 0.9rem; color: var(--muted); margin-bottom: 16px; }
.budget-bar strong { color: #6eb4ff; }
.concert-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 14px; width: 100%; max-width: 740px;
}
.concert-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; cursor: pointer; transition: transform 0.15s, border-color 0.15s;
  position: relative; overflow: hidden;
}
.concert-card:hover { transform: scale(1.02); border-color: #6eb4ff; }
.concert-card .badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--red); color: #fff; font-size: 0.65rem; font-weight: 700;
  padding: 3px 8px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px;
}
.concert-card .badge.hot { background: var(--yellow); color: #000; }
.concert-card .badge.impossible { background: #1a0030; color: #cc88ff; }
.concert-emoji { font-size: 2.2rem; margin-bottom: 8px; }
.concert-artist { font-size: 1.1rem; font-weight: 700; }
.concert-tour { font-size: 0.82rem; color: var(--muted); margin-bottom: 10px; }
.concert-meta { display: flex; gap: 10px; font-size: 0.78rem; color: var(--muted); flex-wrap: wrap; }
.concert-prices { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.price-tag {
  font-size: 0.72rem; padding: 2px 8px; border-radius: 6px; font-weight: 600;
}
.price-tag.vip { background: #2a2200; color: var(--vip); }
.price-tag.mid { background: #0a2030; color: var(--mid); }
.price-tag.upper { background: #0a200a; color: var(--upper); }
.over-budget { opacity: 0.45; }
.over-budget::after {
  content: 'Over budget'; position: absolute; bottom: 12px; right: 12px;
  font-size: 0.7rem; color: #ff6b6b; font-weight: 700;
}

/* ============================================
   SCREEN 2: Queue
   ============================================ */
.queue-header {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.queue-logo { font-size: 1.3rem; font-weight: 900; }
.queue-right { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.net-indicator { font-size: 0.78rem; color: var(--muted); }
.concert-title-small { font-size: 0.85rem; color: var(--muted); margin-bottom: 20px; text-align: center; }

.queue-box {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 20px; text-align: center; width: 100%; max-width: 420px; margin-bottom: 24px;
}
.queue-label { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.queue-position { font-size: 4rem; font-weight: 900; color: #6eb4ff; line-height: 1; }
.queue-sub { font-size: 0.85rem; color: var(--muted); margin-top: 4px; margin-bottom: 18px; }

.progress-bar-wrap { background: #1a1a2e; border-radius: 8px; height: 10px; overflow: hidden; margin-bottom: 10px; }
.progress-bar { height: 100%; background: linear-gradient(90deg, #1a73e8, #a78bfa); width: 0%; border-radius: 8px; transition: width 0.4s ease; }
.queue-timer { font-size: 0.8rem; color: var(--muted); }

.tab-section { width: 100%; max-width: 420px; text-align: center; }
.tab-hint { font-size: 0.88rem; color: var(--muted); margin-bottom: 10px; }

.btn-tab {
  background: #0d1a30; border: 1px solid #1a73e8; color: #6eb4ff;
  font-size: 0.9rem; font-weight: 600; padding: 11px 22px;
  border-radius: 10px; cursor: pointer; transition: background 0.15s; margin-bottom: 14px;
}
.btn-tab:hover { background: #1a2a4a; }
.btn-tab:disabled { opacity: 0.35; cursor: default; }

.tab-list { display: flex; flex-direction: column; gap: 7px; }
.tab-item {
  background: var(--card); border: 1px solid var(--border); border-radius: 10px;
  padding: 10px 14px; display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem;
}
.tab-pos { color: #6eb4ff; font-weight: 700; }
.tab-status { color: var(--muted); font-size: 0.75rem; }
.tab-load { font-size: 0.7rem; color: #ffaa44; }
.tab-item.winning { border-color: #4caf50; }
.tab-item.winning .tab-pos { color: #4caf50; }
.tab-item.loading { border-color: #ff9800; }

/* ============================================
   SCREEN 3: Seat Map
   ============================================ */
.seat-header {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 6px; max-width: 600px;
}
.seat-title { font-size: 1rem; font-weight: 700; }
.seat-timer-wrap { display: flex; align-items: center; gap: 4px; font-size: 0.95rem; color: var(--muted); }
.seat-timer { font-size: 1.6rem; font-weight: 900; color: var(--red); min-width: 28px; text-align: center; }
.seat-meta-row { display: flex; justify-content: space-between; align-items: center; width: 100%; max-width: 600px; margin-bottom: 10px; }
.seat-hint { font-size: 0.82rem; color: var(--muted); }

.stage-label {
  background: #0d0d2e; border: 1px solid #2a2a6a; color: #7c9ecc;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 3px;
  padding: 7px 50px; border-radius: 6px; margin-bottom: 14px; text-transform: uppercase;
}

.seat-map {
  display: grid; gap: 5px; max-width: 580px; width: 100%; margin-bottom: 14px;
}
.seat {
  border-radius: 5px; cursor: pointer; aspect-ratio: 1;
  transition: transform 0.1s, opacity 0.25s; border: none; outline: none;
}
.seat:hover:not(.taken) { transform: scale(1.18); z-index: 2; }
.seat:active:not(.taken) { transform: scale(0.92); }
.seat.vip   { background: var(--vip); }
.seat.mid   { background: var(--mid); }
.seat.upper { background: var(--upper); }
.seat.taken { background: var(--taken); cursor: default; opacity: 0.4; }
.seat.selected { outline: 3px solid #fff; transform: scale(1.2); z-index: 3; }
.seat.over-budget-seat { opacity: 0.3; cursor: not-allowed; }

.seat-legend {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  font-size: 0.78rem; color: var(--muted);
}
.legend-item { display: flex; align-items: center; gap: 5px; }
.dot { width: 11px; height: 11px; border-radius: 3px; display: inline-block; }
.dot-vip   { background: var(--vip); }
.dot-mid   { background: var(--mid); }
.dot-upper { background: var(--upper); }
.dot-taken { background: var(--taken); }

/* ============================================
   SCREEN 4: Checkout — TicketHub Style
   ============================================ */
.checkout-box {
  background: #fff; border-radius: var(--radius); padding: 0;
  width: 100%; max-width: 460px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.tickethub-header {
  background: var(--th-blue); padding: 16px 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.th-logo { color: #fff; font-size: 1.2rem; font-weight: 800; letter-spacing: -0.5px; }
.th-secure { color: #a0d0ff; font-size: 0.78rem; }

.ticket-card {
  background: var(--th-bg); padding: 20px;
  font-size: 0.88rem; color: #222; line-height: 2;
  border-bottom: 1px solid #dde;
}
.ticket-card strong { color: #111; }
.ticket-card .tc-row { display: flex; justify-content: space-between; border-bottom: 1px solid #eee; padding: 4px 0; }
.ticket-card .tc-total { display: flex; justify-content: space-between; padding: 8px 0 0; font-size: 1rem; font-weight: 800; color: var(--th-blue); }

/* Payment challenge */
.challenge-title { background: #003580; color: #fff; padding: 12px 20px; font-size: 0.9rem; font-weight: 700; }
.payment-methods { display: flex; flex-direction: column; gap: 8px; padding: 16px 20px; background: #fff; }
.pay-method {
  border: 2px solid #dde; border-radius: 10px; padding: 14px 16px;
  cursor: pointer; display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; font-weight: 600; color: #222; transition: all 0.15s;
  background: #fff;
}
.pay-method:hover { border-color: #003580; background: #f0f4ff; }
.pay-method.selected { border-color: #003580; background: #e8f0fe; }
.pay-icon { font-size: 1.5rem; }
.pay-label { flex: 1; }
.pay-sub { font-size: 0.72rem; color: #888; font-weight: 400; }
.pay-method.pineapple .pay-icon::after { content: '🍍'; }
.pay-method.goggle .pay-icon::after { content: '🥽'; }
.pay-method.touchid .pay-icon::after { content: '👆'; }

.touch-id-ring {
  width: 100px; height: 100px; border-radius: 50%;
  border: 4px solid #dde; display: flex; align-items: center; justify-content: center;
  margin: 20px auto; cursor: pointer; transition: all 0.2s; background: #f5f7fa;
}
.touch-id-ring.scanning { border-color: #003580; background: #e8f0fe; animation: scanPulse 0.6s ease infinite; }
.touch-id-ring.success { border-color: #2e7d32; background: #e8f5e9; }
.touch-id-icon { font-size: 2.5rem; }
.touch-id-label { text-align: center; font-size: 0.88rem; color: #555; padding: 0 20px 16px; }

@keyframes scanPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }

.payment-status { padding: 10px 20px; font-size: 0.88rem; color: #2e7d32; font-weight: 600; min-height: 36px; background: #fff; }

.checkout-box .btn-primary { border-radius: 0; margin: 0; max-width: 100%; padding: 18px; font-size: 1.05rem; }

/* ============================================
   SCREEN 5: WIN
   ============================================ */
.win-box {
  background: var(--card); border: 2px solid #2e7d32; border-radius: var(--radius);
  padding: 32px 24px; text-align: center; width: 100%; max-width: 420px;
}
.win-icon { font-size: 3.5rem; margin-bottom: 10px; }
.win-box h2 { font-size: 1.8rem; color: #4caf50; margin-bottom: 16px; }
.ticket-final {
  background: #0a1a10; border: 1px dashed #2e7d32; border-radius: 10px;
  padding: 16px; font-size: 0.85rem; color: var(--muted); margin-bottom: 20px;
  text-align: left; line-height: 1.9;
}
.ticket-final strong { color: var(--text); }

/* ============================================
   SCREEN 6: LOSS — TicketHub Resale (clean)
   ============================================ */
.loss-header { text-align: center; margin-bottom: 20px; }
.loss-icon { font-size: 2.8rem; margin-bottom: 6px; }
.loss-header h2 { font-size: 1.7rem; margin-bottom: 4px; }
.loss-header p { color: var(--muted); font-size: 0.88rem; }

.resale-tabs { display: flex; gap: 8px; margin-bottom: 14px; width: 100%; max-width: 500px; }
.resale-tab {
  flex: 1; padding: 11px; border-radius: 10px; border: 1px solid var(--border);
  background: var(--card); color: var(--muted); font-size: 0.88rem; font-weight: 600;
  cursor: pointer; transition: all 0.15s;
}
.resale-tab.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.resale-tab.sketchy.active { background: #c8a000; color: #000; border-color: #c8a000; }

/* TicketHub Resale listings (clean) */
.resale-content { width: 100%; max-width: 500px; display: flex; flex-direction: column; gap: 10px; }
.resale-listing {
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  padding: 14px 16px; display: flex; justify-content: space-between; align-items: flex-start;
}
.resale-listing.best { border-color: #4caf50; }
.resale-listing.over-budget-listing { opacity: 0.5; }
.listing-info { font-size: 0.83rem; line-height: 1.6; }
.listing-title { font-weight: 700; color: var(--text); }
.listing-meta { color: var(--muted); }
.listing-best { color: #4caf50; font-size: 0.75rem; font-weight: 700; }
.listing-price { text-align: right; }
.price-total { font-size: 1.1rem; font-weight: 800; color: var(--text); }
.price-face { font-size: 0.72rem; color: var(--muted); }
.price-fees { font-size: 0.72rem; color: #ff6b6b; }

.resale-within-budget { font-size: 0.82rem; color: #a5d6a7; margin-top: 4px; }

/* ============================================
   ScalpersNet — 2003 Sketchy Internet Theme
   ============================================ */
body.scalpersnet-mode #screen-loss {
  background: #fffbe6;
  color: #111;
}
body.scalpersnet-mode .loss-header h2,
body.scalpersnet-mode .loss-header p { color: #111; }

.sn-wrapper {
  width: 100%; max-width: 560px;
  font-family: 'Times New Roman', serif;
  background: #fff8dc;
}

.sn-banner {
  background: #003399; color: #ffff00;
  font-size: 1.1rem; font-weight: 900; text-align: center;
  padding: 6px; letter-spacing: 1px;
  border: 3px solid #ffff00;
  text-decoration: blink;
}
.sn-sub-banner {
  background: #cc0000; color: #fff;
  font-size: 0.72rem; text-align: center; padding: 3px;
  font-family: Arial, sans-serif;
}
.sn-nav {
  background: #cccccc; border: 2px solid #888;
  display: flex; gap: 4px; padding: 4px 6px; flex-wrap: wrap;
}
.sn-nav-btn {
  background: #d4d0c8; border: 2px outset #fff;
  font-size: 0.72rem; padding: 2px 8px; cursor: pointer;
  font-family: Arial, sans-serif; color: #000;
}
.sn-nav-btn:active { border-style: inset; }

.sn-listing-area {
  border: 2px inset #888; background: #fffff0;
  padding: 8px;
}
.sn-listing {
  border: 1px solid #aaa; background: #fff; margin-bottom: 8px;
  font-family: Arial, sans-serif; font-size: 0.8rem;
}
.sn-listing-head {
  background: linear-gradient(to right, #003399, #0055cc);
  color: #ffff00; font-weight: 900; font-size: 0.85rem;
  padding: 4px 8px; display: flex; justify-content: space-between;
}
.sn-listing-body { padding: 8px; line-height: 1.6; }
.sn-listing-row { display: flex; justify-content: space-between; border-bottom: 1px dotted #ccc; padding: 2px 0; }
.sn-price { color: #cc0000; font-size: 1.1rem; font-weight: 900; }
.sn-old-price { text-decoration: line-through; color: #888; font-size: 0.75rem; }
.sn-seller-link {
  color: #0000cc; text-decoration: underline; cursor: pointer; font-size: 0.78rem;
}
.sn-seller-link:hover { color: #cc0000; }
.sn-buy-btn {
  background: linear-gradient(to bottom, #ffdd00, #ff9900);
  border: 2px outset #cc7700; color: #000;
  font-weight: 900; font-size: 0.8rem; padding: 5px 12px; cursor: pointer;
  font-family: Arial, sans-serif; margin-top: 4px;
}
.sn-buy-btn:active { border-style: inset; }
.sn-verified-gif { font-size: 0.65rem; color: #006600; font-weight: 700; }
.sn-warning-gif { font-size: 0.65rem; color: #cc0000; font-weight: 700; }
.sn-stars { color: #ffaa00; font-size: 0.9rem; }
.sn-ticker { background: #000; color: #00ff00; font-family: monospace; font-size: 0.72rem; padding: 2px 6px; overflow: hidden; white-space: nowrap; }
.sn-footer {
  background: #cccccc; border-top: 2px solid #888; padding: 4px 6px;
  font-size: 0.65rem; color: #444; font-family: Arial, sans-serif; text-align: center;
}
.sn-counter { color: #003399; font-weight: 700; }
.sn-best-deal { background: #ffff00; color: #cc0000; font-weight: 900; font-size: 0.7rem; padding: 1px 5px; border: 1px solid #cc0000; }

/* ============================================
   Seller Popup
   ============================================ */
.popup-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.7); z-index: 999;
  align-items: center; justify-content: center;
  padding: 16px;
}
.popup-overlay.open { display: flex; }

.scalper-popup {
  background: #fffff0; border: 3px solid #888; width: 100%; max-width: 420px;
  font-family: Arial, sans-serif; box-shadow: 6px 6px 0 #444;
  max-height: 85vh; overflow-y: auto;
}
.scalper-popup-header {
  background: linear-gradient(to right, #003399, #0055cc);
  color: #ffff00; padding: 6px 10px;
  display: flex; justify-content: space-between; align-items: center;
}
.scalper-popup-title { font-size: 0.85rem; font-weight: 900; letter-spacing: 0.5px; }
.scalper-popup-close {
  background: #cc0000; color: #fff; border: 2px outset #ff4444;
  font-size: 0.75rem; font-weight: 900; padding: 2px 7px; cursor: pointer;
}
.scalper-popup-body { padding: 12px; font-size: 0.8rem; color: #222; }
.sp-seller-name { font-size: 1rem; font-weight: 900; color: #003399; margin-bottom: 4px; }
.sp-rating { margin-bottom: 8px; }
.sp-badge { display: inline-block; font-size: 0.65rem; padding: 2px 6px; border-radius: 3px; font-weight: 700; margin-right: 4px; }
.sp-badge.power { background: #ffdd00; color: #000; border: 1px solid #cc9900; }
.sp-badge.verified { background: #00aa00; color: #fff; }
.sp-badge.new { background: #cc0000; color: #fff; }

.sp-reviews-title { font-weight: 900; border-bottom: 1px solid #ccc; padding-bottom: 3px; margin-bottom: 6px; color: #003399; }
.sp-review { border: 1px solid #ddd; background: #fff; padding: 6px 8px; margin-bottom: 6px; }
.sp-review-header { display: flex; justify-content: space-between; margin-bottom: 2px; }
.sp-reviewer { font-weight: 700; font-size: 0.75rem; }
.sp-review-stars { font-size: 0.85rem; color: #ffaa00; }
.sp-review-text { font-size: 0.75rem; color: #444; line-height: 1.4; }
.sp-review.bot-review { background: #fffff0; border-color: #ffdd00; }
.sp-review-date { font-size: 0.65rem; color: #888; }

.sp-close-btn {
  background: linear-gradient(to bottom, #ffdd00, #ff9900);
  border: 2px outset #cc7700; color: #000; font-weight: 900;
  font-size: 0.8rem; padding: 6px 20px; cursor: pointer; width: 100%; margin-top: 8px;
}

/* ============================================
   Animations
   ============================================ */
@keyframes pulse-red { 0%,100% { color: var(--red); } 50% { color: #ff8a80; } }
.pulse { animation: pulse-red 0.4s infinite; }

@keyframes marquee { from { transform: translateX(100%); } to { transform: translateX(-100%); } }
.sn-ticker-text { display: inline-block; animation: marquee 12s linear infinite; }

/* ============================================
   iPad / Mobile
   ============================================ */
@media (max-width: 600px) {
  .queue-position { font-size: 3rem; }
  .concert-grid { grid-template-columns: 1fr; }
  .seat-map { gap: 4px; }
  .network-options { grid-template-columns: 1fr; }
  .budget-options { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .concert-grid { grid-template-columns: repeat(2, 1fr); }
  .network-options { grid-template-columns: repeat(3, 1fr); }
}
