/* ═══════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root { --page-bg: #0c0c10; }

body {
  background: var(--page-bg);
  font-family: 'DM Sans', sans-serif;
  min-height: 100vh;
  padding: 56px 24px 100px;
}

/* ═══════════════════════════════════════════════════════
   PAGE HEADER
═══════════════════════════════════════════════════════ */
.page-header { text-align: center; margin-bottom: 72px; }
.page-header-inner { display: inline-block; }
.page-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: #444;
  display: block;
  margin-bottom: 14px;
}
.page-header h1 {
  font-family: 'Cabinet Grotesk', 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 0%, #555 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}
.page-header p {
  font-size: 0.82rem;
  color: #444;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════
   GRID
═══════════════════════════════════════════════════════ */
.tickets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
  gap: 64px 40px;
  max-width: 1440px;
  margin: 0 auto;
}
.ticket-showcase { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.style-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: #444;
  text-transform: uppercase;
  align-self: flex-start;
  padding-left: 2px;
}

/* ═══════════════════════════════════════════════════════
   SHARED TICKET SHELL
═══════════════════════════════════════════════════════ */
.ticket {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
  transition: transform 0.35s cubic-bezier(.22,.68,0,1.2), box-shadow 0.35s ease;
}
.ticket:hover { transform: translateY(-8px); box-shadow: 0 36px 80px rgba(0,0,0,0.65); }

/* Shared image wrap */
.ticket-image-wrap { border-radius: 12px; overflow: hidden; height: 150px; margin-bottom: 16px; position: relative; }
.ticket-image-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ═══════════════════════════════════════════════════════
   TEAR LINE
═══════════════════════════════════════════════════════ */
.tear-line { display: flex; align-items: center; height: 0; position: relative; }
.tear-circle { width: 22px; height: 22px; border-radius: 50%; background: var(--page-bg); flex-shrink: 0; z-index: 2; }
.tear-circle.left { margin-left: -11px; }
.tear-circle.right { margin-right: -11px; }
.tear-dashes { flex: 1; border-top: 2px dashed rgba(255,255,255,0.12); margin: 0 4px; }

/* ═══════════════════════════════════════════════════════
   INCLUSIONS BAR (SHARED)
═══════════════════════════════════════════════════════ */
.inclusions-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
  padding: 10px 12px;
  border-radius: 10px;
}
.inclusions-title {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-right: 4px;
}
.inclusions-title i { width: 12px; height: 12px; }
.inclusion-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.inclusion-chip i { width: 11px; height: 11px; }

/* ═══════════════════════════════════════════════════════
   SHARED MIDDLE LAYOUT
═══════════════════════════════════════════════════════ */
.ticket-info-left { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.qr-block { display: flex; flex-direction: column; align-items: center; gap: 6px; flex-shrink: 0; }
.qr-svg-wrap svg { width: 80px; height: 80px; display: block; }
.qr-id { font-family: 'Space Mono', monospace; font-size: 0.48rem; color: #555; letter-spacing: 0.05em; }

/* Shared tier badge */
.tier-badge {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 700;
}
.tier-badge.gold { background: linear-gradient(135deg, #d4af37, #8b6914); color: #000; }

/* Shared seat block */
.seat-block { display: flex; flex-direction: column; gap: 6px; }
.seat-meta-label { font-size: 0.58rem; letter-spacing: 0.15em; color: #666; text-transform: uppercase; }
.seat-chips { display: flex; flex-wrap: wrap; gap: 5px; }
.seat-chip { font-family: 'Space Mono', monospace; font-size: 0.62rem; padding: 4px 10px; border-radius: 6px; }

/* Shared assign button */
.assign-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 4px;
  width: fit-content;
}
.assign-btn i { width: 13px; height: 13px; }

/* Shared cal button */
.cal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 18px;
  border-radius: 10px;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}
.cal-btn:hover { opacity: 0.88; transform: scale(0.99); }
.cal-btn i { width: 15px; height: 15px; }


/* ═══════════════════════════════════════════════════════
   TICKET 1 — DARK LUXURY
═══════════════════════════════════════════════════════ */
.ticket-luxury { background: #0d0d0d; border: 1px solid #222; }
.luxury-top { background: linear-gradient(160deg,#0d0d0d 0%,#1a1200 100%); padding: 26px 22px 22px; position: relative; overflow: hidden; }
.luxury-bg-art { position: absolute; inset: 0; pointer-events: none; }
.luxury-circle { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.22; }
.luxury-circle.c1 { width: 200px; height: 200px; background: #d4af37; top: -60px; right: -60px; }
.luxury-circle.c2 { width: 150px; height: 150px; background: #8b6914; bottom: 20px; left: -40px; }
.luxury-event-name { position: relative; z-index: 1; margin-bottom: 14px; }
.luxury-tag { display: inline-block; font-family: 'Space Mono', monospace; font-size: 0.6rem; letter-spacing: 0.2em; color: #d4af37; border: 1px solid #d4af3744; padding: 3px 10px; border-radius: 4px; margin-bottom: 8px; }
.luxury-event-name h2 { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; letter-spacing: 0.06em; color: #fff; line-height: 1; margin-bottom: 3px; }
.luxury-subtitle { font-size: 0.75rem; color: #d4af37; letter-spacing: 0.04em; font-weight: 300; }
.luxury-image-overlay { position: absolute; inset: 0; background: linear-gradient(to top,#0d0d0d 0%,transparent 60%); }
.luxury-meta { display: flex; flex-direction: column; gap: 9px; margin-bottom: 14px; }
.luxury-meta-item { display: flex; align-items: flex-start; gap: 9px; }
.meta-icon { width: 14px; height: 14px; color: #d4af37; flex-shrink: 0; margin-top: 2px; }
.meta-label { display: block; font-size: 0.58rem; letter-spacing: 0.15em; text-transform: uppercase; color: #555; margin-bottom: 1px; }
.meta-value { font-size: 0.78rem; color: #e0e0e0; font-weight: 500; }
.luxury-inclusions { background: rgba(212,175,55,0.07); border: 1px solid rgba(212,175,55,0.15); }
.luxury-inclusions .inclusions-title { color: #d4af37; }
.luxury-chip-item { background: rgba(212,175,55,0.12); color: #d4af37; border: 1px solid rgba(212,175,55,0.2); }
.luxury-cal-btn { background: linear-gradient(135deg,#d4af37,#8b6914); color: #000; }
.luxury-tear .tear-circle { background: var(--page-bg); }
.luxury-tear .tear-dashes { border-color: #222; }
.luxury-middle { background: #111; padding: 18px 22px 22px; display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.lux-seat { background: #1e1e1e; border: 1px solid #333; color: #d4af37; }
.luxury-assign { background: rgba(212,175,55,0.1); color: #d4af37; border: 1px solid rgba(212,175,55,0.25); }
.luxury-assign:hover { background: rgba(212,175,55,0.2); }

/* ═══════════════════════════════════════════════════════
   TICKET 2 — VIBRANT SPORTS
═══════════════════════════════════════════════════════ */
.ticket-sports { background: #fff; }
.sports-top { background: linear-gradient(160deg,#003087 0%,#0066cc 100%); padding: 22px 22px 18px; }
.sports-header { margin-bottom: 12px; }
.sports-league { font-family: 'Bebas Neue', sans-serif; font-size: 0.8rem; letter-spacing: 0.25em; color: rgba(255,255,255,0.55); margin-bottom: 4px; }
.sports-vs { display: flex; align-items: center; gap: 10px; }
.team-a { font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem; color: #4fc3f7; line-height: 1; }
.team-b { font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem; color: #ffcc02; line-height: 1; }
.vs-text { font-family: 'Space Mono', monospace; font-size: 0.7rem; color: rgba(255,255,255,0.4); letter-spacing: 0.1em; }
.sports-image-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,48,135,0.75) 0%,transparent 60%); }
.sports-image-text { position: absolute; bottom: 10px; left: 12px; font-family: 'Bebas Neue', sans-serif; font-size: 0.85rem; letter-spacing: 0.2em; color: rgba(255,255,255,0.65); }
.sports-details { display: flex; align-items: center; background: rgba(255,255,255,0.08); border-radius: 10px; padding: 10px 12px; margin-bottom: 14px; }
.sports-detail-item { display: flex; align-items: center; gap: 7px; flex: 1; }
.sports-detail-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.15); margin: 0 8px; }
.sports-icon { width: 13px; height: 13px; color: #4fc3f7; flex-shrink: 0; }
.sports-detail-label { font-size: 0.52rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.45); text-transform: uppercase; display: block; margin-bottom: 1px; }
.sports-detail-value { font-size: 0.68rem; color: #fff; font-weight: 600; }
.sports-inclusions { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); }
.sports-inc-title { color: rgba(255,255,255,0.7); }
.sports-chip-item { background: rgba(255,204,2,0.15); color: #ffcc02; border: 1px solid rgba(255,204,2,0.25); }
.sports-cal-btn { background: #ffcc02; color: #003087; }
.sports-tear .tear-circle { background: var(--page-bg); }
.sports-dashes { border-color: #ddd; }
.sports-middle { background: #fff; padding: 18px 22px 22px; display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.sports-stand-name { font-family: 'Outfit', sans-serif; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em; color: #003087; text-transform: uppercase; }
.sports-floor { font-size: 0.65rem; color: #999; letter-spacing: 0.1em; text-transform: uppercase; }
.sports-seat-row { display: flex; gap: 10px; }
.sports-seat-block { display: flex; flex-direction: column; gap: 1px; }
.sports-seat-label { font-size: 0.55rem; letter-spacing: 0.15em; color: #bbb; text-transform: uppercase; }
.sports-seat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: #003087; line-height: 1; }
.sports-assign { background: #e8f0ff; color: #003087; border: 1px solid #c0d4ff; }
.sports-assign:hover { background: #d0e0ff; }

/* ═══════════════════════════════════════════════════════
   TICKET 3 — MINIMAL EDITORIAL
═══════════════════════════════════════════════════════ */
.ticket-minimal { background: #faf9f6; border: 1px solid #e8e4dc; }
.minimal-top { background: #faf9f6; padding: 26px 22px 20px; }
.minimal-header-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.minimal-event-type { font-family: 'Space Mono', monospace; font-size: 0.58rem; letter-spacing: 0.2em; color: #aaa; text-transform: uppercase; }
.minimal-ticket-num { font-family: 'Space Mono', monospace; font-size: 0.58rem; color: #ccc; }
.minimal-event-name { font-family: 'Playfair Display', serif; font-size: 2.3rem; font-weight: 900; color: #1a1a1a; line-height: 1.1; margin-bottom: 16px; letter-spacing: -0.02em; }
.minimal-img img { filter: grayscale(15%); }
.minimal-info-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; border-top: 1px solid #e8e4dc; border-bottom: 1px solid #e8e4dc; margin-bottom: 14px; }
.minimal-info-cell { display: flex; flex-direction: column; gap: 3px; padding: 10px 0; }
.minimal-info-cell.border-left { border-left: 1px solid #e8e4dc; padding-left: 12px; }
.minimal-info-label { font-family: 'Space Mono', monospace; font-size: 0.52rem; letter-spacing: 0.15em; color: #bbb; text-transform: uppercase; }
.minimal-info-value { font-size: 0.75rem; font-weight: 600; color: #1a1a1a; }
.minimal-inclusions { background: #f0ede6; border: 1px solid #e0dbd0; }
.minimal-inc-title { color: #888; }
.minimal-chip-item { background: #fff; color: #555; border: 1px solid #ddd; }
.minimal-cal-btn { background: transparent; color: #1a1a1a; border: 1.5px solid #1a1a1a; }
.minimal-cal-btn:hover { background: #1a1a1a !important; color: #fff !important; opacity: 1 !important; }
.minimal-tear .tear-circle { background: var(--page-bg); }
.minimal-dashes { border-color: #d8d4cc; }
.minimal-middle { background: #f0ede6; padding: 18px 22px 22px; display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.minimal-tier-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: #1a1a1a; }
.minimal-seat-info { display: flex; align-items: baseline; gap: 7px; }
.minimal-seat-label { font-family: 'Space Mono', monospace; font-size: 0.55rem; letter-spacing: 0.15em; color: #aaa; text-transform: uppercase; }
.minimal-seat-value { font-size: 0.88rem; font-weight: 700; color: #1a1a1a; }
.minimal-assign { background: #1a1a1a; color: #fff; }
.minimal-assign:hover { background: #333; }
.minimal-qr-id { color: #bbb; }

/* ═══════════════════════════════════════════════════════
   TICKET 4 — NEON FESTIVAL
═══════════════════════════════════════════════════════ */
.ticket-neon { background: #050510; border: 1px solid #1a1a3a; }
.neon-top { background: #050510; padding: 26px 22px 20px; position: relative; overflow: hidden; }
.neon-bg-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,245,255,0.04) 1px,transparent 1px),linear-gradient(90deg,rgba(0,245,255,0.04) 1px,transparent 1px); background-size: 28px 28px; pointer-events: none; }
.neon-glow-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.neon-glow-orb.orb1 { width: 200px; height: 200px; background: #00f5ff2a; top: -60px; right: -40px; }
.neon-glow-orb.orb2 { width: 180px; height: 180px; background: #ff00ff1a; bottom: 0; left: -40px; }
.neon-event-header { position: relative; z-index: 1; margin-bottom: 12px; }
.neon-year { font-family: 'Space Mono', monospace; font-size: 0.62rem; letter-spacing: 0.3em; color: #00f5ff66; display: block; margin-bottom: 3px; }
.neon-event-name { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; letter-spacing: 0.08em; color: #fff; line-height: 0.95; margin-bottom: 5px; }
.neon-event-name span { color: #00f5ff; text-shadow: 0 0 20px #00f5ff66; }
.neon-edition { font-family: 'Space Mono', monospace; font-size: 0.58rem; letter-spacing: 0.2em; color: #ff00ff; text-shadow: 0 0 10px #ff00ff44; }
.neon-img { border: 1px solid #00f5ff1a; }
.neon-image-overlay { position: absolute; inset: 0; background: linear-gradient(to top,#050510 0%,transparent 60%); }
.neon-details { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.neon-detail { display: flex; align-items: center; gap: 9px; font-size: 0.75rem; color: rgba(255,255,255,0.65); }
.neon-icon { width: 13px; height: 13px; color: #00f5ff; flex-shrink: 0; }
.neon-inclusions { background: rgba(0,245,255,0.04); border: 1px solid rgba(0,245,255,0.12); }
.neon-inc-title { color: #00f5ff88; }
.neon-chip-item { background: rgba(0,245,255,0.08); color: #00f5ff; border: 1px solid rgba(0,245,255,0.2); }
.neon-cal-btn { background: transparent; color: #00f5ff; border: 1px solid #00f5ff44; font-family: 'Space Mono', monospace; font-size: 0.72rem; letter-spacing: 0.05em; }
.neon-cal-btn:hover { background: #00f5ff0d !important; box-shadow: 0 0 20px #00f5ff22; opacity: 1 !important; }
.neon-tear .tear-circle.neon-circle { background: var(--page-bg); }
.neon-dashes { border-color: #1a1a3a; }
.neon-middle { background: #080818; padding: 18px 22px 22px; display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.neon-pass-type { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 0.1em; color: #fff; }
.neon-pass-sub { font-size: 0.62rem; color: #444; letter-spacing: 0.05em; }
.neon-day-badges { display: flex; gap: 5px; }
.neon-day { font-family: 'Space Mono', monospace; font-size: 0.58rem; padding: 3px 9px; border-radius: 4px; border: 1px solid #222; color: #444; letter-spacing: 0.1em; }
.neon-day.active { border-color: #00f5ff44; color: #00f5ff; background: #00f5ff0a; text-shadow: 0 0 8px #00f5ff55; }
.neon-assign { background: rgba(0,245,255,0.08); color: #00f5ff; border: 1px solid rgba(0,245,255,0.2); }
.neon-assign:hover { background: rgba(0,245,255,0.15); }
.neon-qr-wrap { padding: 7px; background: #0d0d20; border-radius: 8px; border: 1px solid #00f5ff1a; }
.neon-qr-wrap svg { width: 72px; height: 72px; }

/* ═══════════════════════════════════════════════════════
   TICKET 5 — WARM CORPORATE GALA
═══════════════════════════════════════════════════════ */
.ticket-gala { background: #fff8f0; border: 1px solid #e8d5b8; }
.gala-top { background: linear-gradient(160deg,#2c1810 0%,#5c2e0e 100%); padding: 22px 22px 18px; position: relative; overflow: hidden; }
.gala-top::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E"); pointer-events: none; }
.gala-header { margin-bottom: 12px; position: relative; z-index: 1; }
.gala-logo-area { display: flex; align-items: center; gap: 10px; }
.gala-logo-icon { width: 34px; height: 34px; background: linear-gradient(135deg,#d4af37,#8b6914); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.gala-logo-icon i { width: 16px; height: 16px; color: #000; }
.gala-org { font-family: 'Outfit', sans-serif; font-size: 0.88rem; font-weight: 800; letter-spacing: 0.1em; color: #fff; }
.gala-presents { font-size: 0.52rem; letter-spacing: 0.2em; color: rgba(255,255,255,0.35); text-transform: uppercase; }
.gala-image-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(44,24,16,0.85) 0%,transparent 60%); }
.gala-event-title { position: relative; z-index: 1; margin-bottom: 14px; }
.gala-event-title h2 { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 900; color: #fff; line-height: 1.05; margin-bottom: 4px; }
.gala-event-title p { font-size: 0.7rem; color: rgba(255,255,255,0.45); font-style: italic; }
.gala-meta-row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; position: relative; z-index: 1; }
.gala-meta-item { display: flex; align-items: center; gap: 9px; }
.gala-icon { width: 13px; height: 13px; color: #d4af37; flex-shrink: 0; }
.gala-meta-label { font-size: 0.55rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.35); text-transform: uppercase; display: block; margin-bottom: 1px; }
.gala-meta-value { font-size: 0.75rem; color: rgba(255,255,255,0.8); font-weight: 500; }
.gala-inclusions { background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.18); position: relative; z-index: 1; }
.gala-inc-title { color: #d4af37aa; }
.gala-chip-item { background: rgba(212,175,55,0.12); color: #d4af37; border: 1px solid rgba(212,175,55,0.2); }
.gala-cal-btn { background: linear-gradient(135deg,#d4af37,#8b6914); color: #000; position: relative; z-index: 1; }
.gala-tear .tear-circle.gala-circle { background: var(--page-bg); }
.gala-dashes { border-color: #e8d5b8; }
.gala-middle { background: #fff8f0; padding: 18px 22px 22px; display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.gala-badge { background: linear-gradient(135deg,#d4af37,#8b6914); color: #000; }
.gala-seat { background: #fff; border: 1px solid #e8d5b8; color: #5c2e0e; }
.gala-assign { background: #fdf0e0; color: #5c2e0e; border: 1px solid #e8d5b8; }
.gala-assign:hover { background: #f5e0c0; }

/* ═══════════════════════════════════════════════════════
   TICKET 6 — GUMROAD NEOBRUTALIST
═══════════════════════════════════════════════════════ */
.ticket-brut { background: #fff; border: 3px solid #000; border-radius: 16px; box-shadow: 6px 6px 0 #000; }
.ticket-brut:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 #000; }
.brut-top { background: #ff4ecd; padding: 22px 22px 18px; border-bottom: 3px solid #000; }
.brut-eyebrow { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.brut-tag { font-family: 'Space Mono', monospace; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; background: #000; color: #ff4ecd; padding: 4px 10px; border-radius: 4px; }
.brut-num { font-family: 'Space Mono', monospace; font-size: 0.7rem; color: rgba(0,0,0,0.5); }
.brut-event-name { font-family: 'Cabinet Grotesk', 'Outfit', sans-serif; font-size: 3rem; font-weight: 900; color: #000; line-height: 0.92; letter-spacing: -0.03em; margin-bottom: 4px; }
.brut-subtitle { font-size: 0.78rem; color: rgba(0,0,0,0.6); font-weight: 600; margin-bottom: 14px; }
.brut-img { border: 2px solid #000; border-radius: 8px; }
.brut-info-row { display: flex; gap: 0; border: 2px solid #000; border-radius: 8px; overflow: hidden; margin-bottom: 14px; }
.brut-info-block { flex: 1; padding: 10px 10px; border-right: 2px solid #000; background: #fff; }
.brut-info-block:last-child { border-right: none; }
.brut-info-label { display: block; font-family: 'Space Mono', monospace; font-size: 0.52rem; letter-spacing: 0.15em; color: #888; text-transform: uppercase; margin-bottom: 2px; }
.brut-info-val { font-family: 'Cabinet Grotesk', 'Outfit', sans-serif; font-size: 0.72rem; font-weight: 800; color: #000; }
.brut-inclusions { background: #ffee00; border: 2px solid #000; border-radius: 8px; }
.brut-inc-title { color: #000; font-weight: 800; }
.brut-chip-item { background: #000; color: #ffee00; border: none; font-weight: 700; }
.brut-cal-btn { background: #000; color: #ff4ecd; font-family: 'Cabinet Grotesk', 'Outfit', sans-serif; font-weight: 800; font-size: 0.85rem; border-radius: 8px; border: 2px solid #000; letter-spacing: 0.02em; }
.brut-cal-btn:hover { background: #222 !important; opacity: 1 !important; }
.brut-tear .tear-circle.brut-circle { background: var(--page-bg); }
.brut-dashes { border-color: #000; border-style: dashed; }
.brut-middle { background: #ffee00; padding: 18px 22px 22px; display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; border-top: 3px solid #000; }
.brut-tier { font-family: 'Cabinet Grotesk', 'Outfit', sans-serif; font-size: 1.3rem; font-weight: 900; color: #000; letter-spacing: -0.02em; text-transform: uppercase; }
.brut-seat-row { display: flex; flex-direction: column; gap: 2px; }
.brut-seat-label { font-family: 'Space Mono', monospace; font-size: 0.55rem; letter-spacing: 0.15em; color: #666; text-transform: uppercase; }
.brut-seat-val { font-family: 'Cabinet Grotesk', 'Outfit', sans-serif; font-size: 0.88rem; font-weight: 800; color: #000; }
.brut-assign { background: #ff4ecd; color: #000; border: 2px solid #000; font-weight: 800; }
.brut-assign:hover { background: #ff2ab8; }
.brut-qr { background: #fff; border: 2px solid #000; border-radius: 8px; padding: 6px; }
.brut-qr-id { color: #888; }

/* ═══════════════════════════════════════════════════════
   TICKET 7 — GLASSMORPHISM
═══════════════════════════════════════════════════════ */
.ticket-glass { background: transparent; border: none; border-radius: 20px; overflow: hidden; }
.glass-top { position: relative; padding: 0; min-height: 420px; }
.glass-bg-img { position: absolute; inset: 0; }
.glass-bg-img img { width: 100%; height: 100%; object-fit: cover; }
.glass-bg-overlay { position: absolute; inset: 0; background: linear-gradient(160deg,rgba(30,10,60,0.75) 0%,rgba(10,5,30,0.85) 100%); backdrop-filter: blur(2px); }
.glass-content { position: relative; z-index: 1; padding: 24px 22px 20px; }
.glass-eyebrow { font-family: 'Space Mono', monospace; font-size: 0.6rem; letter-spacing: 0.25em; color: rgba(255,255,255,0.5); text-transform: uppercase; display: block; margin-bottom: 8px; }
.glass-event-name { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: #fff; line-height: 1.05; margin-bottom: 16px; }
.glass-card { background: rgba(255,255,255,0.1); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.18); border-radius: 12px; padding: 14px; margin-bottom: 14px; }
.glass-meta-row { display: flex; gap: 14px; }
.glass-meta-item { display: flex; align-items: center; gap: 8px; flex: 1; }
.glass-icon { width: 13px; height: 13px; color: rgba(255,255,255,0.6); flex-shrink: 0; }
.glass-meta-label { display: block; font-size: 0.52rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.4); text-transform: uppercase; margin-bottom: 1px; }
.glass-meta-val { font-size: 0.72rem; color: rgba(255,255,255,0.9); font-weight: 600; }
.glass-inclusions { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); backdrop-filter: blur(8px); }
.glass-inc-title { color: rgba(255,255,255,0.6); }
.glass-chip-item { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.2); }
.glass-cal-btn { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.3); backdrop-filter: blur(8px); }
.glass-cal-btn:hover { background: rgba(255,255,255,0.25) !important; opacity: 1 !important; }
.glass-tear .tear-circle.glass-circle { background: var(--page-bg); }
.glass-dashes { border-color: rgba(255,255,255,0.15); }
.glass-middle { background: rgba(20,10,50,0.92); backdrop-filter: blur(20px); padding: 18px 22px 22px; display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; border-top: 1px solid rgba(255,255,255,0.1); }
.glass-tier { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: #fff; }
.glass-seat-info { display: flex; align-items: baseline; gap: 7px; }
.glass-seat-label { font-family: 'Space Mono', monospace; font-size: 0.52rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.35); text-transform: uppercase; }
.glass-seat-val { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.85); }
.glass-assign { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.2); }
.glass-assign:hover { background: rgba(255,255,255,0.2); }
.glass-qr { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; padding: 6px; }
.glass-qr-id { color: rgba(255,255,255,0.3); }

/* ═══════════════════════════════════════════════════════
   TICKET 8 — RETRO VINTAGE
═══════════════════════════════════════════════════════ */
.ticket-retro { background: #fdf6e3; border: 2px solid #8b6914; }
.retro-top { background: #fdf6e3; padding: 18px 18px 16px; }
.retro-border-frame { border: 2px solid #8b6914; border-radius: 10px; padding: 16px; background: repeating-linear-gradient(45deg,transparent,transparent 10px,rgba(139,105,20,0.03) 10px,rgba(139,105,20,0.03) 20px); }
.retro-header { text-align: center; margin-bottom: 8px; }
.retro-stars { font-size: 0.7rem; color: #8b6914; letter-spacing: 0.3em; margin-bottom: 2px; }
.retro-presents { font-family: 'Space Mono', monospace; font-size: 0.55rem; letter-spacing: 0.25em; color: #8b6914; text-transform: uppercase; }
.retro-event-name { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: #2c1810; line-height: 1.05; text-align: center; margin-bottom: 4px; }
.retro-tagline { font-family: 'Playfair Display', serif; font-size: 0.72rem; color: #8b6914; text-align: center; font-style: italic; margin-bottom: 14px; }
.retro-img { border: 2px solid #8b6914; border-radius: 8px; }
.retro-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(253,246,227,0.6) 0%,transparent 60%); mix-blend-mode: multiply; }
.retro-info-row { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.retro-info-item { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; color: #5c3a1e; font-weight: 500; }
.retro-icon { width: 13px; height: 13px; color: #8b6914; flex-shrink: 0; }
.retro-inclusions { background: rgba(139,105,20,0.08); border: 1px solid rgba(139,105,20,0.25); border-radius: 8px; }
.retro-inc-title { color: #8b6914; }
.retro-chip-item { background: rgba(139,105,20,0.1); color: #5c3a1e; border: 1px solid rgba(139,105,20,0.2); }
.retro-cal-btn { background: #2c1810; color: #fdf6e3; font-family: 'Playfair Display', serif; font-style: italic; }
.retro-cal-btn:hover { background: #5c3a1e !important; opacity: 1 !important; }
.retro-tear .tear-circle.retro-circle { background: var(--page-bg); }
.retro-dashes { border-color: #c8a96e; border-style: dashed; }
.retro-middle { background: #f5e6c8; padding: 18px 22px 22px; display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; border-top: 2px dashed #8b6914; }
.retro-tier { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 900; color: #2c1810; font-style: italic; }
.retro-seat-info { display: flex; flex-direction: column; gap: 2px; }
.retro-seat-label { font-family: 'Space Mono', monospace; font-size: 0.55rem; letter-spacing: 0.15em; color: #8b6914; text-transform: uppercase; }
.retro-seat-val { font-size: 0.85rem; font-weight: 700; color: #2c1810; }
.retro-assign { background: #2c1810; color: #fdf6e3; border: 1px solid #2c1810; }
.retro-assign:hover { background: #5c3a1e; }
.retro-qr { background: #fdf6e3; border: 2px solid #8b6914; border-radius: 6px; padding: 5px; }
.retro-qr-id { color: #c8a96e; }

/* ═══════════════════════════════════════════════════════
   TICKET 9 — BENTO MODERN
═══════════════════════════════════════════════════════ */
.ticket-bento { background: #f8f8ff; border: 1px solid #e0e0f0; }
.bento-top { background: #f8f8ff; padding: 22px 22px 18px; }
.bento-header-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.bento-logo-pill { font-family: 'Outfit', sans-serif; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; background: #6366f1; color: #fff; padding: 5px 14px; border-radius: 20px; }
.bento-ticket-num { font-family: 'Space Mono', monospace; font-size: 0.62rem; color: #aaa; }
.bento-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto; gap: 8px; margin-bottom: 14px; }
.bento-cell { background: #fff; border: 1px solid #e8e8f8; border-radius: 12px; padding: 12px; display: flex; flex-direction: column; gap: 4px; }
.bento-title-cell { grid-column: 1; grid-row: 1; }
.bento-img-cell { grid-column: 2; grid-row: 1; padding: 0; overflow: hidden; border-radius: 12px; height: 100px; }
.bento-img-cell img { width: 100%; height: 100%; object-fit: cover; }
.bento-date-cell { grid-column: 1; grid-row: 2; }
.bento-time-cell { grid-column: 2; grid-row: 2; }
.bento-venue-cell { grid-column: 1 / -1; grid-row: 3; }
.bento-event-name { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 900; color: #1a1a2e; line-height: 1.05; letter-spacing: -0.02em; }
.bento-subtitle { font-size: 0.62rem; color: #888; font-weight: 500; }
.bento-icon { width: 14px; height: 14px; color: #6366f1; }
.bento-cell-label { font-family: 'Space Mono', monospace; font-size: 0.52rem; letter-spacing: 0.15em; color: #aaa; text-transform: uppercase; }
.bento-cell-val { font-size: 0.78rem; font-weight: 700; color: #1a1a2e; }
.bento-inclusions { background: #f0f0ff; border: 1px solid #d8d8f8; }
.bento-inc-title { color: #6366f1; }
.bento-chip-item { background: #e8e8ff; color: #4f46e5; border: 1px solid #c8c8f8; }
.bento-cal-btn { background: #6366f1; color: #fff; }
.bento-cal-btn:hover { background: #4f46e5 !important; opacity: 1 !important; }
.bento-tear .tear-circle.bento-circle { background: var(--page-bg); }
.bento-dashes { border-color: #e0e0f0; }
.bento-middle { background: #fff; padding: 18px 22px 22px; display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; border-top: 1px solid #e8e8f8; }
.bento-tier { font-family: 'Outfit', sans-serif; font-size: 1.05rem; font-weight: 900; color: #1a1a2e; letter-spacing: -0.01em; }
.bento-seat-chips { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 4px; }
.bento-seat-chip { background: #f0f0ff; border: 1px solid #d8d8f8; color: #4f46e5; font-family: 'Space Mono', monospace; font-size: 0.62rem; padding: 4px 10px; border-radius: 6px; font-weight: 700; }
.bento-assign { background: #6366f1; color: #fff; border: none; }
.bento-assign:hover { background: #4f46e5; }
.bento-qr { background: #f8f8ff; border: 1px solid #e0e0f0; border-radius: 8px; padding: 5px; }
.bento-qr-id { color: #bbb; }

/* ═══════════════════════════════════════════════════════
   TICKET 10 — GRADIENT AURORA
═══════════════════════════════════════════════════════ */
.ticket-aurora { background: #0a0a1a; border: 1px solid #2a1a4a; }
.aurora-top { background: #0a0a1a; padding: 24px 22px 20px; position: relative; overflow: hidden; }
.aurora-orb { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; }
.aurora-orb.a1 { width: 220px; height: 220px; background: #7c3aed33; top: -80px; right: -60px; }
.aurora-orb.a2 { width: 180px; height: 180px; background: #059669; opacity: 0.15; bottom: -40px; left: -40px; }
.aurora-orb.a3 { width: 120px; height: 120px; background: #db277733; top: 40%; left: 30%; }
.aurora-content { position: relative; z-index: 1; }
.aurora-eyebrow { font-family: 'Space Mono', monospace; font-size: 0.6rem; letter-spacing: 0.25em; color: #a78bfa88; text-transform: uppercase; display: block; margin-bottom: 6px; }
.aurora-event-name { font-family: 'Sora', sans-serif; font-size: 2.5rem; font-weight: 800; color: #fff; line-height: 1; letter-spacing: -0.03em; margin-bottom: 4px; }
.aurora-subtitle { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-bottom: 14px; }
.aurora-img { border: 1px solid rgba(167,139,250,0.2); border-radius: 12px; }
.aurora-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top,#0a0a1a 0%,transparent 60%); }
.aurora-info-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.aurora-pill { display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 5px 12px; font-size: 0.7rem; color: rgba(255,255,255,0.7); }
.aurora-icon { width: 12px; height: 12px; color: #a78bfa; flex-shrink: 0; }
.aurora-inclusions { background: rgba(167,139,250,0.06); border: 1px solid rgba(167,139,250,0.15); }
.aurora-inc-title { color: #a78bfa88; }
.aurora-chip-item { background: rgba(167,139,250,0.1); color: #a78bfa; border: 1px solid rgba(167,139,250,0.2); }
.aurora-cal-btn { background: linear-gradient(135deg,#7c3aed,#059669); color: #fff; }
.aurora-cal-btn:hover { opacity: 0.85 !important; }
.aurora-tear .tear-circle.aurora-circle { background: var(--page-bg); }
.aurora-dashes { border-color: #2a1a4a; }
.aurora-middle { background: #0d0d20; padding: 18px 22px 22px; display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; border-top: 1px solid #2a1a4a; }
.aurora-tier { font-family: 'Sora', sans-serif; font-size: 1.05rem; font-weight: 800; color: #fff; letter-spacing: -0.01em; }
.aurora-seat-chips { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 4px; }
.aurora-seat-chip { background: rgba(167,139,250,0.1); border: 1px solid rgba(167,139,250,0.2); color: #a78bfa; font-family: 'Space Mono', monospace; font-size: 0.62rem; padding: 4px 10px; border-radius: 6px; }
.aurora-assign { background: linear-gradient(135deg,rgba(124,58,237,0.2),rgba(5,150,105,0.2)); color: #a78bfa; border: 1px solid rgba(167,139,250,0.25); }
.aurora-assign:hover { background: linear-gradient(135deg,rgba(124,58,237,0.35),rgba(5,150,105,0.35)); }
.aurora-qr { background: rgba(255,255,255,0.04); border: 1px solid rgba(167,139,250,0.15); border-radius: 8px; padding: 5px; }
.aurora-qr-id { color: #2a1a4a; }


/* ═══════════════════════════════════════════════════════
   SEAT ASSIGNMENT MODAL
═══════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }

.modal-box {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  width: 100%;
  max-width: 420px;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(.22,.68,0,1.2);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.active .modal-box { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f5f5f5;
  border: none;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #666;
  transition: background 0.2s;
}
.modal-close:hover { background: #eee; }
.modal-close i { width: 16px; height: 16px; }

.modal-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.modal-icon { width: 44px; height: 44px; background: #f0f0ff; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.modal-icon i { width: 22px; height: 22px; color: #6366f1; }
.modal-title { font-family: 'Outfit', sans-serif; font-size: 1.15rem; font-weight: 800; color: #1a1a1a; margin-bottom: 3px; }
.modal-subtitle { font-size: 0.75rem; color: #888; }

.modal-seat-select { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.modal-seat-btn {
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  padding: 6px 14px;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  background: #f8f8f8;
  color: #555;
  cursor: pointer;
  transition: all 0.15s;
  font-weight: 700;
}
.modal-seat-btn:hover { border-color: #6366f1; color: #6366f1; background: #f0f0ff; }
.modal-seat-btn.selected { border-color: #6366f1; background: #6366f1; color: #fff; }

.modal-form { display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-label { font-size: 0.75rem; font-weight: 600; color: #444; }
.form-input {
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  padding: 10px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.2s;
  background: #fafafa;
}
.form-input:focus { border-color: #6366f1; background: #fff; }
.form-textarea { resize: vertical; min-height: 72px; }

.modal-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #6366f1;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 13px 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 4px;
}
.modal-submit-btn:hover { background: #4f46e5; transform: scale(0.99); }
.modal-submit-btn i { width: 16px; height: 16px; }

.modal-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0 10px;
  gap: 10px;
}
.modal-success.show { display: flex; }
.success-icon i { width: 52px; height: 52px; color: #10b981; }
.modal-success h4 { font-family: 'Outfit', sans-serif; font-size: 1.2rem; font-weight: 800; color: #1a1a1a; }
.modal-success p { font-size: 0.82rem; color: #888; }
.modal-done-btn {
  background: #10b981;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 28px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.2s;
}
.modal-done-btn:hover { background: #059669; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 500px) {
  .tickets-grid { grid-template-columns: 1fr; }
  .ticket { max-width: 100%; }
  .sports-details { flex-wrap: wrap; }
  .sports-detail-divider { display: none; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-img-cell { grid-column: 1; grid-row: 2; height: 120px; }
  .bento-date-cell { grid-row: 3; }
  .bento-time-cell { grid-row: 4; }
  .bento-venue-cell { grid-row: 5; grid-column: 1; }
}