/* TicketPro - Main Stylesheet */
/* Bebas Neue + Inter font pair, dark luxury theme */

:root {
  --bg:         #0a0a0f;
  --bg-card:    #111827;
  --bg-hover:   #1a2535;
  --border:     #1f2937;
  --border-light:#374151;
  --text:       #f9fafb;
  --text-muted: #9ca3af;
  --text-faint: #6b7280;
  --accent:     #7c3aed;
  --accent-2:   #4f46e5;
  --accent-glow:rgba(124,58,237,0.25);
  --green:      #22c55e;
  --red:        #ef4444;
  --yellow:     #f59e0b;
  --radius:     12px;
  --radius-sm:  8px;
  --shadow:     0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg:  0 16px 64px rgba(0,0,0,0.6);
  --nav-h:      72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

/* ─── Container ─────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.5); }
.nav-inner { display: flex; align-items: center; height: var(--nav-h); gap: 24px; }
.nav-logo { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 2px; color: #fff; }
.nav-logo span { color: var(--accent); }
.nav-center { display: flex; align-items: center; gap: 4px; margin: 0 auto; }
.nav-right  { display: flex; align-items: center; gap: 12px; }
.nav-link   { padding: 8px 14px; color: var(--text-muted); font-size: 14px; font-weight: 500; border-radius: 6px; transition: color 0.2s, background 0.2s; }
.nav-link:hover { color: #fff; background: var(--border); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #141c2e; border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 8px; min-width: 220px;
  box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none;
  transform: translateY(-8px); transition: all 0.2s;
  max-height: 400px; overflow-y: auto;
}
.nav-dropdown-right { left: auto; right: 0; }
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.nav-dropdown-item { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 6px; font-size: 14px; color: var(--text-muted); transition: all 0.15s; }
.nav-dropdown-item:hover { background: var(--border); color: #fff; }
.nav-dropdown-header { padding: 10px 12px 6px; border-bottom: 1px solid var(--border); margin-bottom: 4px; }
.nav-dropdown-name  { font-weight: 700; font-size: 14px; }
.nav-dropdown-email { font-size: 12px; color: var(--text-faint); }
.nav-dropdown-danger{ color: var(--red) !important; }

.nav-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--accent); color: #fff; font-weight: 800; font-size: 13px; border: none; cursor: pointer; }
.btn-nav-cta { background: var(--accent); color: #fff; padding: 9px 20px; border-radius: 8px; font-size: 14px; font-weight: 700; transition: background 0.2s, transform 0.15s; }
.btn-nav-cta:hover { background: #6d28d9; transform: translateY(-1px); }
.nav-mobile-toggle { display: none; background: none; border: 1px solid var(--border); color: var(--text-muted); padding: 6px 10px; border-radius: 6px; cursor: pointer; font-size: 18px; }
.nav-mobile { display: none; padding: 16px 24px 20px; border-top: 1px solid var(--border); background: var(--bg); }
.nav-mobile-link { display: block; padding: 12px 0; color: var(--text-muted); font-size: 15px; border-bottom: 1px solid var(--border); }
.nav-mobile-link:last-child { border-bottom: none; }
.nav-mobile-cta { color: var(--accent) !important; font-weight: 700; }

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-top: var(--nav-h); overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.5;
}
.hero-orb-1 { width: 600px; height: 600px; background: #7c3aed; top: -200px; right: -100px; animation: float1 8s ease-in-out infinite; }
.hero-orb-2 { width: 400px; height: 400px; background: #1e40af; bottom: -100px; left: -50px; animation: float2 10s ease-in-out infinite; }
.hero-orb-3 { width: 300px; height: 300px; background: #0891b2; top: 40%; left: 40%; animation: float1 12s ease-in-out infinite reverse; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(124,58,237,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
}
@keyframes float1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-30px) scale(1.05); } }
@keyframes float2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-20px,20px) scale(0.95); } }

.hero-content { position: relative; z-index: 1; padding: 80px 0; max-width: 700px; }
.hero-badge { display: inline-block; background: rgba(124,58,237,0.2); border: 1px solid rgba(124,58,237,0.4); color: var(--accent); padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 24px; }
.hero-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(64px, 8vw, 112px); line-height: 0.95; letter-spacing: 2px; margin-bottom: 24px; }
.hero-title-accent { color: var(--accent); text-shadow: 0 0 80px rgba(124,58,237,0.6); }
.hero-sub { font-size: 18px; color: var(--text-muted); max-width: 520px; margin-bottom: 36px; line-height: 1.7; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-primary-lg { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; padding: 16px 32px; border-radius: 10px; font-size: 16px; font-weight: 800; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 8px 32px var(--accent-glow); display: inline-block; }
.btn-primary-lg:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(124,58,237,0.5); }
.btn-ghost-lg { background: rgba(255,255,255,0.05); border: 1px solid var(--border-light); color: var(--text); padding: 16px 28px; border-radius: 10px; font-size: 16px; font-weight: 600; transition: background 0.2s; display: inline-block; }
.btn-ghost-lg:hover { background: rgba(255,255,255,0.1); }

.hero-stats { display: flex; align-items: center; gap: 0; }
.hero-stat { text-align: center; padding: 0 28px; }
.hero-stat:first-child { padding-left: 0; }
.stat-num { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 36px; letter-spacing: 1px; color: #fff; }
.stat-label { display: block; font-size: 12px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.5px; }
.hero-stat-divider { width: 1px; height: 40px; background: var(--border-light); flex-shrink: 0; }

/* Floating Cards */
.hero-float-cards { position: absolute; right: 40px; top: 50%; transform: translateY(-40%); z-index: 1; display: flex; flex-direction: column; gap: 16px; }
.float-card {
  display: flex; align-items: center; gap: 12px;
  background: rgba(17,24,39,0.85); backdrop-filter: blur(12px);
  border: 1px solid var(--border-light); border-radius: 12px;
  padding: 14px 18px; min-width: 220px;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: slideInRight 0.6s ease forwards;
}
.float-card:hover { transform: translateX(-4px); box-shadow: var(--shadow); }
.fc-1 { animation-delay: 0.1s; }
.fc-2 { animation-delay: 0.25s; }
.fc-3 { animation-delay: 0.4s; }
@keyframes slideInRight { from { opacity:0; transform:translateX(40px); } to { opacity:1; transform:translateX(0); } }
.float-card-icon { font-size: 28px; flex-shrink: 0; }
.float-card-title { font-size: 12px; font-weight: 700; color: #fff; }
.float-card-date  { font-size: 11px; color: var(--text-faint); margin-top: 2px; }

/* ─── Category Pills ─────────────────────────────────────────── */
.section-categories { padding: 20px 0; border-bottom: 1px solid var(--border); background: var(--bg-card); }
.categories-scroll { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
.categories-scroll::-webkit-scrollbar { display: none; }
.cat-pill { display: flex; align-items: center; gap: 8px; padding: 8px 18px; background: var(--border); border-radius: 24px; font-size: 13px; font-weight: 600; white-space: nowrap; color: var(--text-muted); transition: all 0.2s; flex-shrink: 0; }
.cat-pill:hover, .cat-pill.active { background: var(--accent); color: #fff; }

/* ─── Sections ───────────────────────────────────────────────── */
.section      { padding: 80px 0; }
.section-dark { padding: 80px 0; background: var(--bg-card); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; }
.section-label{ font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); margin-bottom: 8px; }
.section-title{ font-family: 'Bebas Neue', sans-serif; font-size: 42px; letter-spacing: 1px; }
.see-all-link { font-size: 14px; color: var(--accent); font-weight: 600; transition: opacity 0.2s; white-space: nowrap; }
.see-all-link:hover { opacity: 0.7; }

/* ─── Event Cards ────────────────────────────────────────────── */
.events-grid { display: grid; gap: 24px; }
.events-grid-3 { grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); }
.events-grid-4 { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

.event-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-light); }
.event-card-link { display: block; }

.event-card-img { position: relative; height: 200px; background: linear-gradient(135deg, #1a0533, #0d1f3c); overflow: hidden; }
.event-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.event-card:hover .event-card-img img { transform: scale(1.05); }
.event-card-img-placeholder { display: flex; align-items: center; justify-content: center; height: 100%; }
.event-card-sport-icon { font-size: 64px; opacity: 0.4; }

.event-card-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-wrap: wrap; gap: 6px; }
.badge-category { padding: 4px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; border: 1px solid; backdrop-filter: blur(8px); }
.badge-hot      { padding: 4px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; background: rgba(239,68,68,0.2); border: 1px solid rgba(239,68,68,0.5); color: #fca5a5; }
.badge-featured { padding: 4px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; background: rgba(245,158,11,0.2); border: 1px solid rgba(245,158,11,0.5); color: #fcd34d; }
.event-card-low-stock { position: absolute; bottom: 10px; right: 10px; background: rgba(239,68,68,0.9); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px; }

.event-card-body { padding: 20px; }
.event-card-league { font-size: 11px; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.event-card-title  { font-size: 16px; font-weight: 800; line-height: 1.3; margin-bottom: 10px; color: #fff; }
.event-card-matchup { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.team-name  { font-size: 13px; font-weight: 700; color: var(--text-muted); }
.vs-badge   { background: var(--border); padding: 3px 8px; border-radius: 4px; font-size: 11px; font-weight: 900; color: var(--text-faint); }

.event-card-meta { display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }
.event-meta-item { font-size: 12px; color: var(--text-faint); }

.event-card-footer { display: flex; align-items: center; justify-content: space-between; }
.event-price { }
.price-from  { font-size: 11px; color: var(--text-faint); display: block; }
.price-value { font-size: 20px; font-weight: 900; color: #fff; }
.btn-book-now { background: var(--accent); color: #fff; padding: 8px 16px; border-radius: 6px; font-size: 13px; font-weight: 700; transition: background 0.2s; }
.event-card:hover .btn-book-now { background: #6d28d9; }

/* Small event card */
.event-card-sm { display: flex; align-items: center; gap: 14px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; transition: all 0.2s; }
.event-card-sm:hover { border-color: var(--border-light); background: var(--bg-hover); transform: translateX(4px); }
.event-card-sm-icon { font-size: 32px; flex-shrink: 0; }
.event-card-sm-body { flex: 1; min-width: 0; }
.event-card-sm-league { font-size: 10px; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.event-card-sm-title  { font-size: 14px; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin: 2px 0 4px; }
.event-card-sm-meta   { display: flex; gap: 12px; font-size: 11px; color: var(--text-faint); }
.event-card-sm-price  { flex-shrink: 0; text-align: right; }
.price-from { font-size: 10px; color: var(--text-faint); }
.price-val  { display: block; font-size: 16px; font-weight: 900; color: #fff; }
.hot-tag    { font-size: 14px; }

/* ─── Leagues Section ────────────────────────────────────────── */
.section-leagues { padding: 80px 0; }
.leagues-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.league-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: all 0.2s; cursor: default; }
.league-card:hover { border-color: var(--accent); background: var(--bg-hover); }
.league-icon { font-size: 36px; margin-bottom: 12px; }
.league-name { font-weight: 800; font-size: 16px; margin-bottom: 4px; }
.league-sub  { font-size: 12px; color: var(--text-faint); }

/* ─── Why Us ─────────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-top: 12px; }
.why-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: border-color 0.2s; }
.why-card:hover { border-color: var(--accent); }
.why-icon { font-size: 36px; margin-bottom: 14px; }
.why-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.why-card p  { font-size: 14px; color: var(--text-muted); }

/* ─── CTA Section ────────────────────────────────────────────── */
.section-cta { padding: 80px 0; }
.cta-box { position: relative; background: linear-gradient(135deg, #1a0533, #0d1f3c); border: 1px solid rgba(124,58,237,0.3); border-radius: 20px; padding: 64px; text-align: center; overflow: hidden; }
.cta-orb { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: var(--accent); filter: blur(100px); opacity: 0.15; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.cta-content { position: relative; z-index: 1; }
.cta-box h2 { font-family: 'Bebas Neue', sans-serif; font-size: 52px; letter-spacing: 1px; margin-bottom: 16px; }
.cta-box p  { font-size: 18px; color: var(--text-muted); margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-outline-lg { border: 2px solid var(--border-light); color: var(--text); padding: 15px 28px; border-radius: 10px; font-size: 16px; font-weight: 600; transition: border-color 0.2s; display: inline-block; }
.btn-outline-lg:hover { border-color: var(--accent); color: var(--accent); }

/* ─── Page Header ────────────────────────────────────────────── */
.page-header { background: var(--bg-card); border-bottom: 1px solid var(--border); padding: 48px 0 36px; margin-top: var(--nav-h); }
.page-header-title { font-family: 'Bebas Neue', sans-serif; font-size: 48px; letter-spacing: 1px; }
.page-header-sub   { font-size: 16px; color: var(--text-muted); margin-top: 8px; }

/* ─── Events Page Layout ─────────────────────────────────────── */
.events-page-layout { display: grid; grid-template-columns: 240px 1fr; gap: 32px; padding: 40px 24px; }
.filters-sidebar { }
.filter-box { margin-bottom: 28px; }
.filter-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-faint); margin-bottom: 12px; }
.filter-input { width: 100%; background: var(--bg-card); border: 1px solid var(--border); color: #fff; padding: 10px 12px; border-radius: 8px; font-size: 13px; font-family: inherit; transition: border-color 0.2s; }
.filter-input:focus { outline: none; border-color: var(--accent); }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; padding-right: 30px; }
.filter-options { display: flex; flex-direction: column; gap: 6px; max-height: 300px; overflow-y: auto; }
.filter-option { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 6px; font-size: 13px; color: var(--text-muted); cursor: pointer; transition: all 0.15s; }
.filter-option:hover, .filter-option.active { background: var(--bg-hover); color: #fff; }
.filter-option input { display: none; }
.filter-date-group { display: flex; flex-direction: column; gap: 8px; }
.filter-date-group label { font-size: 12px; color: var(--text-faint); margin-bottom: 2px; }
.btn-clear-filters { display: block; text-align: center; padding: 10px; background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2); color: var(--red); border-radius: 8px; font-size: 13px; font-weight: 600; transition: all 0.2s; margin-top: 8px; }
.btn-clear-filters:hover { background: rgba(239,68,68,0.2); }
.search-results-info { margin-bottom: 20px; font-size: 14px; color: var(--text-muted); }
.search-results-info strong { color: #fff; }
.search-results-info span { color: var(--text-faint); }
.events-empty { text-align: center; padding: 80px 40px; }
.events-empty-icon { font-size: 64px; margin-bottom: 20px; }
.events-empty h3 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.events-empty p  { color: var(--text-muted); margin-bottom: 24px; }

/* ─── Pagination ─────────────────────────────────────────────── */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.page-btn { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 14px; font-weight: 600; background: var(--bg-card); border: 1px solid var(--border); color: var(--text-muted); transition: all 0.2s; }
.page-btn:hover, .page-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ─── Auth Page ──────────────────────────────────────────────── */
.auth-page { background: #080c14; min-height: 100vh; }
.auth-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.auth-brand { background: linear-gradient(135deg, #0d0527 0%, #0a1628 100%); padding: 60px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.auth-brand::before { content: ''; position: absolute; width: 400px; height: 400px; background: var(--accent); filter: blur(80px); opacity: 0.15; top: -100px; right: -100px; border-radius: 50%; }
.auth-logo { font-family: 'Bebas Neue', sans-serif; font-size: 32px; letter-spacing: 2px; color: #fff; margin-bottom: 48px; }
.auth-logo span { color: var(--accent); }
.auth-brand-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: 52px; line-height: 1; letter-spacing: 1px; margin-bottom: 16px; }
.auth-brand-text p  { font-size: 16px; color: var(--text-muted); line-height: 1.6; margin-bottom: 36px; }
.auth-brand-events, .auth-perks { margin-top: 32px; }
.auth-event-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.auth-event-item:last-child { border-bottom: none; }
.aei-icon { font-size: 24px; }
.aei-name { font-size: 14px; font-weight: 700; }
.aei-date { font-size: 12px; color: var(--text-faint); }
.auth-perk { padding: 8px 0; font-size: 14px; color: var(--text-muted); }

.auth-form-panel { display: flex; align-items: center; justify-content: center; padding: 40px; background: #0c1220; }
.auth-form-box { width: 100%; max-width: 440px; }
.auth-form-title { font-family: 'Bebas Neue', sans-serif; font-size: 42px; letter-spacing: 1px; margin-bottom: 8px; }
.auth-form-sub   { font-size: 15px; color: var(--text-muted); margin-bottom: 32px; }
.alert { padding: 14px 16px; border-radius: 8px; font-size: 14px; margin-bottom: 20px; }
.alert-error   { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #fca5a5; }
.alert-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: #86efac; }
.auth-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--text-muted); display: flex; justify-content: space-between; }
.form-label-link { color: var(--accent); font-weight: 500; }
.form-input { background: var(--bg-card); border: 1px solid var(--border); color: #fff; padding: 12px 14px; border-radius: 8px; font-size: 15px; font-family: inherit; transition: border-color 0.2s; }
.form-input:focus { outline: none; border-color: var(--accent); }
.form-hint  { font-size: 12px; color: var(--text-faint); }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-muted); cursor: pointer; }
.form-check input { margin-top: 2px; accent-color: var(--accent); }
.form-check a { color: var(--accent); }
.input-password-wrap { position: relative; }
.input-password-wrap .form-input { width: 100%; padding-right: 44px; }
.toggle-pwd { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--text-faint); cursor: pointer; font-size: 16px; }
.btn-form-submit { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; padding: 14px; border-radius: 10px; font-size: 16px; font-weight: 800; border: none; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; }
.btn-form-submit:hover { transform: translateY(-1px); box-shadow: 0 8px 24px var(--accent-glow); }
.auth-switch { text-align: center; margin-top: 24px; font-size: 14px; color: var(--text-muted); }
.auth-switch a { color: var(--accent); font-weight: 600; }

/* ─── My Bookings ────────────────────────────────────────────── */
.my-bookings-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.mbs-stat { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; text-align: center; }
.mbs-num   { font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: var(--accent); }
.mbs-label { font-size: 12px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }
.bookings-list { display: flex; flex-direction: column; gap: 16px; }
.booking-item { display: flex; gap: 16px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; align-items: center; transition: border-color 0.2s; }
.booking-item.status-confirmed { border-left: 3px solid var(--green); }
.booking-item.status-pending   { border-left: 3px solid var(--yellow); }
.booking-item.status-cancelled { border-left: 3px solid var(--red); opacity: 0.7; }
.bi-left .bi-sport-icon { font-size: 36px; }
.bi-body { flex: 1; min-width: 0; }
.bi-top  { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.bi-event-name { font-size: 16px; font-weight: 800; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1; }
.status-badge-confirmed { background: rgba(34,197,94,0.15); color: #86efac; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.status-badge-pending   { background: rgba(245,158,11,0.15); color: #fcd34d; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.status-badge-cancelled { background: rgba(239,68,68,0.15); color: #fca5a5; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.bi-meta { display: flex; flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--text-muted); margin-bottom: 6px; }
.bi-ref  { font-size: 12px; color: var(--text-faint); }
.bi-right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; flex-shrink: 0; }
.bi-amount { font-size: 22px; font-weight: 900; color: #fff; }
.bi-actions { display: flex; gap: 8px; }
.btn-bi-view   { background: var(--accent); color: #fff; padding: 8px 14px; border-radius: 6px; font-size: 13px; font-weight: 700; transition: background 0.2s; }
.btn-bi-view:hover { background: #6d28d9; }
.btn-bi-cancel { background: transparent; color: var(--red); border: 1px solid rgba(239,68,68,0.3); padding: 8px 14px; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.btn-bi-cancel:hover { background: rgba(239,68,68,0.1); }
.btn-danger { background: var(--red); color: #fff; padding: 12px 20px; border-radius: 8px; font-weight: 700; border: none; cursor: pointer; transition: background 0.2s; }
.btn-danger:hover { background: #dc2626; }

/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer { background: #060912; border-top: 1px solid var(--border); padding: 64px 0 32px; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 30px; letter-spacing: 2px; margin-bottom: 12px; }
.footer-logo span { color: var(--accent); }
.footer-desc { font-size: 14px; color: var(--text-faint); line-height: 1.7; max-width: 260px; }
.footer-heading { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-faint); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 13px; color: var(--text-faint); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: var(--text-faint); transition: color 0.2s; }
.footer-legal a:hover { color: #fff; }

/* ─── Modal ──────────────────────────────────────────────────── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(4px); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal-box { background: #111827; border: 1px solid var(--border-light); border-radius: 16px; width: 100%; max-width: 800px; max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-lg); animation: modalIn 0.2s ease; }
@keyframes modalIn { from { transform: scale(0.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--border); }
.modal-header h3 { font-size: 18px; font-weight: 800; }
.modal-close { background: var(--border); border: none; color: var(--text-muted); width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 16px; transition: all 0.2s; }
.modal-close:hover { background: var(--red); color: #fff; }

/* ─── Buttons ─────────────────────────────────────────────────── */
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; padding: 12px 24px; border-radius: 8px; font-weight: 700; font-size: 15px; display: inline-block; transition: transform 0.2s; }
.btn-primary:hover { transform: translateY(-1px); }
.btn-outline { background: transparent; border: 1px solid var(--border-light); color: var(--text); padding: 12px 24px; border-radius: 8px; font-weight: 600; font-size: 15px; display: inline-block; cursor: pointer; transition: border-color 0.2s; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost { background: transparent; color: var(--accent); font-weight: 600; font-size: 15px; display: inline-block; padding: 12px 0; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-float-cards { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .hero-title { font-size: 60px; }
  .hero-stats { gap: 0; }
  .hero-stat  { padding: 0 16px; }
  .nav-center, .nav-right .nav-link, .btn-nav-cta { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-mobile.open { display: block; }
  .events-page-layout { grid-template-columns: 1fr; }
  .filters-sidebar { order: -1; }
  .filter-options { max-height: 200px; }
  .auth-layout { grid-template-columns: 1fr; }
  .auth-brand { display: none; }
  .my-bookings-stats { grid-template-columns: 1fr 1fr; }
  .booking-item { flex-wrap: wrap; }
  .bi-right { width: 100%; flex-direction: row; justify-content: space-between; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 48px; }
  .hero-actions { flex-direction: column; }
  .btn-primary-lg, .btn-ghost-lg { text-align: center; }
  .events-grid-3, .events-grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .my-bookings-stats { grid-template-columns: 1fr 1fr; }
}
