/* ═══════════════════════════════════════
   LIVEFEST — styles.css
   Responsive (PC + Mobile) · Party Theme
   ═══════════════════════════════════════ */

:root {
  --bg:     #07070f;
  --bg2:    #0d0d1e;
  --glass:  rgba(255,255,255,0.04);
  --glass2: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.08);
  --border2:rgba(255,255,255,0.14);

  --y:  #f5e642;
  --g:  #00f5a0;
  --p:  #c961ff;
  --r:  #ff3d6b;
  --o:  #ff7c2a;
  --b:  #38c4ff;

  --text:  #f2f2ff;
  --text2: #8888aa;
  --text3: #44445a;
}
.logo{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,.14); border-radius: 99px; }

/* ── PARTICLES ── */
#particles {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; opacity: .55;
}

/* ════════════════════════════════════════
   COMPONENTES COMPARTIDOS
   ════════════════════════════════════════ */

.accent-y { color: var(--y); }
.accent-g { color: var(--g); }
.accent-p { color: var(--p); }

.section-label {
  text-align: center;
  font-size: .7rem; font-weight: 800;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--y); margin-bottom: 12px;
  opacity: .9;
}

.section-title {
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  letter-spacing: 2px; line-height: 1.1;
  margin-bottom: 10px;
}

.section-sub {
  text-align: center;
  color: var(--text2);
  font-size: .95rem;
  max-width: 480px; margin: 0 auto 2rem;
  line-height: 1.5;
}

.cta-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--y) 0%, var(--o) 100%);
  color: #000; border: none; border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem; font-weight: 900;
  cursor: pointer; text-decoration: none;
  letter-spacing: .5px;
  box-shadow: 0 8px 32px rgba(245,230,66,.35), 0 0 0 0 rgba(245,230,66,.4);
  transition: transform .2s, box-shadow .2s;
  animation: pulse-glow 2.5s ease-in-out infinite;
}
.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(245,230,66,.5);
}
.cta-primary.full-w { width: 100%; justify-content: center; }
.cta-emoji { font-size: 1.2rem; }
.cta-arrow { margin-left: 2px; transition: transform .2s; }
.cta-primary:hover .cta-arrow { transform: translateX(4px); }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 8px 32px rgba(245,230,66,.35), 0 0 0 0 rgba(245,230,66,.4); }
  50% { box-shadow: 0 8px 32px rgba(245,230,66,.5), 0 0 0 12px rgba(245,230,66,0); }
}

.prog-track {
  position: relative; height: 8px;
  background: rgba(255,255,255,.07); border-radius: 99px; overflow: visible;
  margin: 8px 0;
}
.prog-fill {
  height: 100%; border-radius: 99px;
  background: linear-gradient(90deg, var(--g), var(--b));
  transition: width .6s ease;
}
.prog-glow {
  position: absolute; top: 50%; transform: translate(-50%,-50%);
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--g);
  box-shadow: 0 0 12px 4px var(--g);
  transition: left .6s ease;
}

.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px);
  z-index: 9999;
  background: var(--bg2); color: var(--text);
  border: 1px solid var(--border2); border-radius: 12px;
  padding: 12px 22px; font-size: .88rem; font-weight: 600;
  opacity: 0; transition: all .35s cubic-bezier(.34,1.56,.64,1);
  pointer-events: none; white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast-success { border-color: var(--g); color: var(--g); }
.toast-error   { border-color: var(--r); color: var(--r); }
.toast-info    { border-color: var(--b); color: var(--b); }

.modal-bg {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,.75); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
  padding: 20px;
}
.modal-bg.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: linear-gradient(160deg, #120820, #0d1030);
  border: 1px solid var(--border2); border-radius: 24px;
  padding: 28px; width: 100%; max-width: 400px;
  transform: scale(.9); transition: transform .3s cubic-bezier(.34,1.56,.64,1);
  box-shadow: 0 30px 80px rgba(0,0,0,.7);
}
.modal-bg.open .modal-box { transform: scale(1); }

/* ════════════════════════════════════════
   VISTA PÚBLICA — HEADER
   ════════════════════════════════════════ */

.pub-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  background: rgba(7,7,15,.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.pub-logo {
  display: flex; align-items: center; gap: 10px;
}

.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--y), var(--o));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem; color: #000; letter-spacing: 1px;
}

.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; letter-spacing: 3px; color: var(--y);
}

.admin-btn-tiny {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border2);
  color: var(--text3); border-radius: 8px;
  padding: 6px 14px; font-size: .72rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; transition: all .2s;
}
.admin-btn-tiny:hover { color: var(--y); border-color: var(--y); }

/* ════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════ */

.hero-section {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 100px 24px 80px;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: brightness(.35) saturate(1.4);
}
.hero-gradient-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(201,97,255,.25) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 60%, rgba(56,196,255,.2) 0%, transparent 55%),
    linear-gradient(180deg, rgba(7,7,15,.3) 0%, rgba(7,7,15,.9) 100%);
}

.hero-content-wrap {
  position: relative; z-index: 2;
  text-align: center; max-width: 760px;
  width: 100%;
}

.floating-emojis { position: absolute; inset: 0; pointer-events: none; }
.fe {
  position: absolute; font-size: 1.8rem; opacity: 0;
  animation: floatUp 4s ease-in-out infinite;
}
.fe1 { left: 5%;  top: 20%; animation-delay: 0s; }
.fe2 { left: 90%; top: 30%; animation-delay: .7s; }
.fe3 { left: 15%; top: 70%; animation-delay: 1.4s; }
.fe4 { left: 80%; top: 65%; animation-delay: 2.1s; }
.fe5 { left: 2%;  top: 55%; animation-delay: .3s; }
.fe6 { left: 93%; top: 50%; animation-delay: 1.8s; }
@keyframes floatUp {
  0%   { opacity: 0; transform: translateY(20px) rotate(-10deg); }
  20%  { opacity: .7; }
  80%  { opacity: .7; }
  100% { opacity: 0; transform: translateY(-30px) rotate(10deg); }
}

.hero-eyebrow {
  font-size: .78rem; font-weight: 800;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--y); margin-bottom: 16px;
  animation: fadeSlideUp .8s ease both;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 15vw, 10rem);
  letter-spacing: 6px; line-height: .9;
  color: #fff;
  text-shadow: 0 0 80px rgba(245,230,66,.3);
  animation: fadeSlideUp .8s .1s ease both;
}
.hero-title-glow {
  background: linear-gradient(90deg, var(--y), var(--p), var(--b));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
  background-size: 200%;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.4rem);
  color: rgba(255,255,255,.7);
  margin: 14px 0 24px;
  font-weight: 300; letter-spacing: 1px;
  animation: fadeSlideUp .8s .2s ease both;
}

.hero-event-meta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin-bottom: 28px;
  animation: fadeSlideUp .8s .3s ease both;
}
.hem-item {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 99px;
  padding: 8px 16px;
  font-size: .85rem; font-weight: 600;
  backdrop-filter: blur(10px);
}
.hem-icon { font-size: 1rem; }

.hero-countdown {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin: 0 0 32px;
  animation: fadeSlideUp .8s .4s ease both;
}
.cd-block {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px; padding: 12px 20px;
  min-width: 70px; backdrop-filter: blur(10px);
}
.cd-num {
  font-family: 'Space Mono', monospace;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 700; color: var(--y);
  line-height: 1;
}
.cd-lbl { font-size: .6rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text2); margin-top: 4px; }
.cd-sep { font-family: 'Space Mono', monospace; font-size: 1.8rem; color: var(--y); opacity: .6; animation: blink 1s infinite; }
@keyframes blink { 0%, 100% { opacity: .6; } 50% { opacity: .1; } }

.hero-cta-row {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  animation: fadeSlideUp .8s .5s ease both;
}
.cta-urgency {
  font-size: .8rem; color: var(--o); font-weight: 700;
  letter-spacing: .5px; animation: urgencyPulse 2s infinite;
}
@keyframes urgencyPulse {
  0%, 100% { opacity: 1; } 50% { opacity: .6; }
}

.hero-scroll-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .68rem; color: rgba(255,255,255,.3); letter-spacing: 2px; text-transform: uppercase;
}
.scroll-arrow {
  width: 20px; height: 20px; border-right: 2px solid rgba(255,255,255,.25); border-bottom: 2px solid rgba(255,255,255,.25);
  transform: rotate(45deg);
  animation: bounce 1.5s infinite;
}
@keyframes bounce { 0%, 100% { transform: rotate(45deg) translateY(-4px); } 50% { transform: rotate(45deg) translateY(4px); } }

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════
   VIBE SECTION
   ════════════════════════════════════════ */

.vibe-section {
  padding: 80px 24px;
  position: relative; z-index: 1;
}

.vibe-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 12px;
  max-width: 1100px; margin: 0 auto 40px;
  border-radius: 24px; overflow: hidden;
  height: 380px;
}
@media (max-width: 700px) {
  .vibe-grid {
    grid-template-columns: 1fr 1fr;
    height: 300px;
  }
  .vg-big { grid-column: 1 / -1; height: 160px; }
}

.vg-big { position: relative; overflow: hidden; }
.vg-small { display: flex; flex-direction: column; gap: 12px; }
.vibe-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
  filter: brightness(.75) saturate(1.3);
}
.vibe-grid img:hover { transform: scale(1.07); filter: brightness(.9) saturate(1.5); }
.vg-small img { flex: 1; min-height: 0; }

.vibe-features {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  max-width: 700px; margin: 0 auto;
}
.vf-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: var(--glass2);
  border: 1px solid var(--border2); border-radius: 16px;
  padding: 18px 24px; min-width: 100px;
  transition: transform .2s, border-color .2s;
}
.vf-item:hover { transform: translateY(-4px); border-color: var(--y); }
.vfi-icon { font-size: 1.8rem; }
.vfi-text { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text2); }

/* ════════════════════════════════════════
   BOLETAS SECTION
   ════════════════════════════════════════ */

.boletas-section {
  padding: 60px 24px 80px;
  position: relative; z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(201,97,255,.04) 50%, transparent);
}

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1100px; margin: 0 auto 40px;
}

.ticket-card {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid var(--border2);
  border-radius: 24px; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
}
.ticket-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.ticket-card.tc-vip {
  border-color: rgba(245,230,66,.4);
  background: linear-gradient(160deg, rgba(245,230,66,.08), rgba(255,124,42,.04));
  box-shadow: 0 0 40px rgba(245,230,66,.08);
}
.ticket-card.tc-vip:hover { box-shadow: 0 24px 60px rgba(245,230,66,.2); }
.ticket-card.tc-palco {
  border-color: rgba(255,61,107,.4);
  background: linear-gradient(160deg, rgba(255,61,107,.08), rgba(201,97,255,.04));
  box-shadow: 0 0 40px rgba(255,61,107,.08);
}

.tc-stripe {
  height: 4px;
  background: linear-gradient(90deg, var(--y), var(--o), var(--p));
}
.tc-vip .tc-stripe { background: linear-gradient(90deg, var(--y), var(--o)); }
.tc-palco .tc-stripe { background: linear-gradient(90deg, var(--r), var(--p)); }

.tc-popular-badge {
  position: absolute; top: 18px; right: 18px;
  background: linear-gradient(135deg, var(--y), var(--o));
  color: #000; font-size: .62rem; font-weight: 900;
  padding: 4px 12px; border-radius: 99px; letter-spacing: 1px;
  text-transform: uppercase;
  animation: popularPulse 2s infinite;
}
@keyframes popularPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); } }

.tc-body { padding: 24px; }
.tc-type {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; letter-spacing: 3px;
  margin-bottom: 6px;
}
.tc-desc { font-size: .82rem; color: var(--text2); margin-bottom: 20px; line-height: 1.5; }
.tc-price {
  font-family: 'Space Mono', monospace;
  font-size: 1.6rem; font-weight: 700; color: var(--y);
  margin-bottom: 4px;
}
.tc-price-sub { font-size: .72rem; color: var(--text3); margin-bottom: 20px; }
.tc-perks { list-style: none; margin-bottom: 22px; }
.tc-perks li {
  font-size: .83rem; color: var(--text2);
  padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.04);
  display: flex; align-items: center; gap: 8px;
}
.tc-perks li::before { content: "✓"; color: var(--g); font-weight: 700; }

.tc-buy-btn {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--y), var(--o));
  color: #000; border: none; border-radius: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: .95rem; font-weight: 900;
  cursor: pointer; letter-spacing: .5px;
  transition: all .2s;
  box-shadow: 0 4px 20px rgba(245,230,66,.25);
}
.tc-buy-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,230,66,.4); }
.tc-vip .tc-buy-btn { background: linear-gradient(135deg, var(--y), var(--o)); }
.tc-palco .tc-buy-btn { background: linear-gradient(135deg, var(--r), var(--p)); box-shadow: 0 4px 20px rgba(255,61,107,.25); }

.buy-note {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(56,196,255,.07);
  border: 1px solid rgba(56,196,255,.2);
  border-radius: 16px; padding: 18px 22px;
  max-width: 600px; margin: 0 auto;
  font-size: .87rem; line-height: 1.55;
  color: var(--text2);
}
.bn-icon { font-size: 1.8rem; flex-shrink: 0; }
.buy-note strong { color: var(--text); }
.buy-note em { color: var(--y); font-style: normal; font-weight: 700; }

/* ════════════════════════════════════════
   BUY FORM SECTION
   ════════════════════════════════════════ */

.buy-form-section {
  padding: 60px 24px 80px;
  position: relative; z-index: 1;
}

.buy-form-card {
  max-width: 540px; margin: 0 auto;
  background: var(--glass2);
  border: 1px solid var(--border2);
  border-radius: 24px; padding: 32px;
}

.bfc-selected {
  background: rgba(245,230,66,.08);
  border: 1px solid rgba(245,230,66,.25);
  border-radius: 14px; padding: 14px 18px;
  margin-bottom: 24px;
  font-weight: 700; color: var(--y);
  font-size: .9rem;
}

.bf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px; margin-bottom: 22px;
}
.bf-field { display: flex; flex-direction: column; gap: 6px; }
.bf-field.full { grid-column: 1 / -1; }
.bf-field label { font-size: .78rem; font-weight: 700; color: var(--text2); letter-spacing: .5px; }
.bf-field input, .bf-field select, .bf-field textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border2);
  border-radius: 12px; padding: 12px 14px;
  color: var(--text); font-family: 'Outfit', sans-serif; font-size: .9rem;
  outline: none; transition: border-color .2s;
  width: 100%;
}
.bf-field input:focus, .bf-field select:focus, .bf-field textarea:focus {
  border-color: var(--y);
  box-shadow: 0 0 0 3px rgba(245,230,66,.12);
}
.bf-field input::placeholder { color: var(--text3); }
.bf-field select option { background: #0d0d1e; }

.back-link {
  display: block; text-align: center;
  margin-top: 14px;
  background: none; border: none;
  color: var(--text2); font-size: .85rem;
  cursor: pointer; font-family: 'Outfit', sans-serif;
  text-decoration: underline;
}
.back-link:hover { color: var(--text); }

/* ════════════════════════════════════════
   FOOTER PÚBLICO
   ════════════════════════════════════════ */

.pub-footer {
  text-align: center; padding: 40px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}
.pf-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; letter-spacing: 4px; color: var(--y);
  margin-bottom: 8px;
}
.pf-text { font-size: .9rem; color: var(--text2); margin-bottom: 4px; }
.pf-small { font-size: .78rem; color: var(--text3); }

/* ════════════════════════════════════════
   ADMIN LOGIN OVERLAY
   ════════════════════════════════════════ */

.overlay-screen {
  position: fixed; inset: 0; z-index: 800;
  background: rgba(0,0,0,.85); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}

.login-card {
  background: linear-gradient(160deg, #120820, #0d1030);
  border: 1px solid var(--border2); border-radius: 28px;
  padding: 40px 36px; width: 100%; max-width: 400px;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,.7), 0 0 60px rgba(201,97,255,.15);
}

.lc-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,.08); border: 1px solid var(--border2);
  color: var(--text2); width: 32px; height: 32px; border-radius: 8px;
  cursor: pointer; font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.lc-close:hover { color: var(--r); border-color: var(--r); }

.lc-logo {
  width: 60px; height: 60px; margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--y), var(--o));
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: #000;
  box-shadow: 0 8px 28px rgba(245,230,66,.4);
}

.lc-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; letter-spacing: 3px; text-align: center; margin-bottom: 6px;
}
.lc-sub {
  text-align: center; font-size: .82rem; color: var(--text2); margin-bottom: 28px;
}

.lc-field { margin-bottom: 16px; }
.lc-field label { display: block; font-size: .75rem; font-weight: 700; color: var(--text2); margin-bottom: 7px; letter-spacing: .5px; }
.lc-field input {
  width: 100%; background: rgba(255,255,255,.06);
  border: 1px solid var(--border2); border-radius: 12px;
  padding: 13px 16px; color: var(--text);
  font-family: 'Outfit', sans-serif; font-size: .95rem;
  outline: none; transition: border-color .2s;
}
.lc-field input:focus { border-color: var(--p); box-shadow: 0 0 0 3px rgba(201,97,255,.12); }

.lc-error {
  background: rgba(255,61,107,.1); border: 1px solid rgba(255,61,107,.3);
  color: var(--r); border-radius: 10px; padding: 10px 14px;
  font-size: .82rem; margin-bottom: 16px; text-align: center;
}

/* ════════════════════════════════════════
   ADMIN PANEL — TOPBAR
   ════════════════════════════════════════ */

.admin-topbar {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
  padding: 12px 24px;
  background: rgba(7,7,15,.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border2);
}

.at-left { display: flex; align-items: center; gap: 12px; }

.at-logo {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--y), var(--o));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 1rem; color: #000;
}

.at-brand { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 2px; color: var(--y); }
.at-tag { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text3); }

.at-right { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.live-pill {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,61,107,.12); border: 1px solid rgba(255,61,107,.3);
  border-radius: 99px; padding: 5px 12px;
  font-size: .65rem; font-weight: 800; letter-spacing: 2px;
  color: var(--r);
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--r);
  animation: livePulse 1.2s ease-in-out infinite;
}
@keyframes livePulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.7); } }

.ev-select {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border2); border-radius: 10px;
  color: var(--text); padding: 7px 12px;
  font-family: 'Outfit', sans-serif; font-size: .82rem;
  outline: none; cursor: pointer;
}
.ev-select option { background: #0d0d1e; }

.logout-btn {
  background: rgba(255,61,107,.1); border: 1px solid rgba(255,61,107,.25);
  color: var(--r); border-radius: 10px; padding: 7px 14px;
  font-size: .75rem; font-weight: 700; cursor: pointer;
  transition: all .2s;
}
.logout-btn:hover { background: rgba(255,61,107,.2); }

/* ════════════════════════════════════════
   ADMIN NAV
   ════════════════════════════════════════ */

.admin-nav {
  display: flex; align-items: center;
  gap: 4px; padding: 10px 20px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  overflow-x: auto; flex-wrap: nowrap;
}
.admin-nav::-webkit-scrollbar { height: 0; }

.an-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 10px;
  background: none; border: 1px solid transparent;
  color: var(--text2); cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: .82rem; font-weight: 600;
  white-space: nowrap;
  transition: all .2s;
}
.an-btn svg {
  width: 16px; height: 16px; stroke: currentColor; fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.an-btn:hover { color: var(--text); background: var(--glass2); }
.an-btn.active { color: var(--y); background: rgba(245,230,66,.08); border-color: rgba(245,230,66,.2); }

/* ════════════════════════════════════════
   ADMIN CONTENT
   ════════════════════════════════════════ */

.admin-content { padding: 24px; min-height: calc(100vh - 130px); }

.aview { display: none; }
.aview.active { display: block; }

.aview-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  margin-bottom: 24px;
}
.aview-header h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; letter-spacing: 2px;
}

.admin-clock {
  font-family: 'Space Mono', monospace;
  font-size: 1rem; color: var(--y); opacity: .8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px; margin-bottom: 20px;
}

.stat-card {
  background: var(--glass2);
  border: 1px solid var(--border2);
  border-radius: 18px; padding: 20px;
  transition: transform .2s;
}
.stat-card:hover { transform: translateY(-2px); }
.sc-yellow { border-color: rgba(245,230,66,.25); background: rgba(245,230,66,.05); }
.sc-green  { border-color: rgba(0,245,160,.25); background: rgba(0,245,160,.05); }
.sc-purple { border-color: rgba(201,97,255,.25); background: rgba(201,97,255,.05); }
.sc-red    { border-color: rgba(255,61,107,.25); background: rgba(255,61,107,.05); }

.sca-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem; letter-spacing: 2px; line-height: 1;
}
.sc-yellow .sca-num { color: var(--y); }
.sc-green  .sca-num { color: var(--g); }
.sc-purple .sca-num { color: var(--p); }
.sc-red    .sca-num { color: var(--r); }
.sca-lbl { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text2); margin-top: 4px; }

.admin-card {
  background: var(--glass);
  border: 1px solid var(--border2);
  border-radius: 18px; padding: 20px;
  margin-bottom: 18px;
}
.ac-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.ac-title { font-weight: 700; font-size: .92rem; }
.ac-badge {
  font-family: 'Space Mono', monospace;
  font-size: .78rem; color: var(--g);
  background: rgba(0,245,160,.1); border: 1px solid rgba(0,245,160,.2);
  border-radius: 99px; padding: 3px 10px;
}

.type-stats-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px;
}
.tsg-item {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border); border-radius: 12px; padding: 14px;
}
.tsg-name { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.tsg-count { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; line-height: 1; }
.tsg-sub { font-size: .7rem; color: var(--text2); margin-top: 3px; }
.tsg-bar { height: 4px; background: rgba(255,255,255,.07); border-radius: 99px; margin-top: 8px; overflow: hidden; }
.tsg-fill { height: 100%; border-radius: 99px; }

/* ── BUYERS LIST ── */
.list-controls {
  display: flex; gap: 10px; margin-bottom: 16px; flex-wrap: wrap;
}
.lc-search {
  flex: 1; min-width: 200px;
  background: rgba(255,255,255,.06); border: 1px solid var(--border2);
  border-radius: 12px; padding: 10px 14px; color: var(--text);
  font-family: 'Outfit', sans-serif; font-size: .88rem; outline: none;
}
.lc-search:focus { border-color: var(--y); }
.lc-search::placeholder { color: var(--text3); }
.lc-filter {
  background: rgba(255,255,255,.06); border: 1px solid var(--border2);
  border-radius: 12px; padding: 10px 14px; color: var(--text);
  font-family: 'Outfit', sans-serif; font-size: .82rem; outline: none;
  cursor: pointer;
}
.lc-filter option { background: #0d0d1e; }

.buyers-list { display: flex; flex-direction: column; gap: 10px; }

.buyer-row {
  background: var(--glass2); border: 1px solid var(--border2);
  border-radius: 14px; padding: 16px;
  display: flex; align-items: flex-start; gap: 14px;
  flex-wrap: wrap;
  transition: border-color .2s;
}
.buyer-row.paid { border-color: rgba(0,245,160,.25); }
.buyer-row.unpaid { border-color: rgba(255,124,42,.15); }

.br-avatar {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--p), var(--b));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; color: #fff;
}

.br-info { flex: 1; min-width: 160px; }
.br-name { font-weight: 700; font-size: .95rem; margin-bottom: 3px; }
.br-sub { font-size: .77rem; color: var(--text2); line-height: 1.5; }
.br-meta { font-size: .72rem; color: var(--text3); margin-top: 4px; }

.br-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
  flex-shrink: 0;
}

.type-badge {
  font-size: .68rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 99px;
}
.tb-General  { background: rgba(0,245,160,.12); color: var(--g); border: 1px solid rgba(0,245,160,.25); }
.tb-VIP      { background: rgba(245,230,66,.12); color: var(--y); border: 1px solid rgba(245,230,66,.25); }
.tb-Palco    { background: rgba(255,61,107,.12); color: var(--r); border: 1px solid rgba(255,61,107,.25); }
.tb-Cortesía { background: rgba(201,97,255,.12); color: var(--p); border: 1px solid rgba(201,97,255,.25); }
.tb-Staff    { background: rgba(255,124,42,.12); color: var(--o); border: 1px solid rgba(255,124,42,.25); }

.payment-badge {
  font-size: .68rem; font-weight: 800; padding: 4px 10px; border-radius: 99px;
  cursor: pointer; transition: all .2s;
}
.pb-paid    { background: rgba(0,245,160,.15); color: var(--g); border: 1px solid rgba(0,245,160,.3); }
.pb-pending { background: rgba(255,124,42,.12); color: var(--o); border: 1px solid rgba(255,124,42,.25); }
.payment-badge:hover { transform: scale(1.05); }

.br-actions { display: flex; gap: 6px; }
.br-btn {
  padding: 6px 12px; border-radius: 8px; border: 1px solid var(--border2);
  background: rgba(255,255,255,.05);
  color: var(--text2); font-size: .72rem; font-weight: 600;
  cursor: pointer; transition: all .2s;
}
.br-btn:hover { color: var(--text); background: rgba(255,255,255,.1); }
.br-btn-del:hover { color: var(--r); border-color: var(--r); }
.br-btn-checkin { color: var(--g); border-color: rgba(0,245,160,.3); }

/* ── SEARCH / ACCESS ── */
.search-wrap { margin-bottom: 16px; }
.search-field {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border2); border-radius: 14px; padding: 4px 4px 4px 14px;
}
.sf-icon { width: 18px; height: 18px; stroke: var(--text3); fill: none; stroke-width: 2; flex-shrink: 0; }
.search-field input {
  flex: 1; background: none; border: none; color: var(--text);
  font-family: 'Outfit', sans-serif; font-size: .95rem; outline: none; padding: 8px 0;
}
.search-field input::placeholder { color: var(--text3); }
.sf-clear {
  background: rgba(255,255,255,.07); border: none; border-radius: 10px;
  color: var(--text2); width: 34px; height: 34px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: .9rem;
}

.search-results-list { display: flex; flex-direction: column; gap: 8px; }
.sri {
  display: flex; align-items: center; gap: 12px;
  background: var(--glass2); border: 1px solid var(--border2); border-radius: 12px;
  padding: 14px; cursor: pointer; transition: border-color .2s;
}
.sri:hover { border-color: var(--y); }
.sri-av {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--p), var(--b));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .95rem; color: #fff;
}
.sri-info { flex: 1; }
.sri-name { font-weight: 700; font-size: .9rem; margin-bottom: 2px; }
.sri-sub { font-size: .75rem; color: var(--text2); }
.status-in  { font-size: .72rem; font-weight: 800; color: var(--g); background: rgba(0,245,160,.1); border: 1px solid rgba(0,245,160,.25); padding: 4px 10px; border-radius: 99px; }
.status-out { font-size: .72rem; font-weight: 800; color: var(--o); background: rgba(255,124,42,.1); border: 1px solid rgba(255,124,42,.25); padding: 4px 10px; border-radius: 99px; }

.rp-found .rp-card {
  background: var(--glass2); border: 1px solid rgba(0,245,160,.25);
  border-radius: 18px; padding: 20px;
}
.rp-not-found {
  background: rgba(255,61,107,.08); border: 1px solid rgba(255,61,107,.2);
  border-radius: 14px; padding: 16px; text-align: center;
  color: var(--r); font-size: .88rem;
}
.rp-top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.rp-avatar {
  width: 50px; height: 50px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--p), var(--b));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.2rem; color: #fff;
}
.rp-name { font-weight: 800; font-size: 1.05rem; margin-bottom: 2px; }
.rp-detail { font-size: .78rem; color: var(--text2); }
.rp-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.rp-tag {
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  border-radius: 8px; padding: 6px 12px; font-size: .78rem;
}
.rp-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-checkin-big {
  flex: 1; padding: 12px;
  background: linear-gradient(135deg, var(--g), var(--b));
  color: #000; border: none; border-radius: 12px;
  font-family: 'Outfit', sans-serif; font-size: .9rem; font-weight: 800;
  cursor: pointer; transition: all .2s;
}
.btn-checkin-big:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,245,160,.3); }
.btn-already {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 12px; border-radius: 12px;
  background: rgba(0,245,160,.1); border: 1px solid rgba(0,245,160,.25);
  color: var(--g); font-size: .88rem; font-weight: 700;
}
.fg-btn-secondary {
  background: rgba(255,255,255,.07); border: 1px solid var(--border2);
  color: var(--text2); border-radius: 12px; padding: 10px 16px;
  font-family: 'Outfit', sans-serif; font-size: .85rem; font-weight: 600;
  cursor: pointer; transition: all .2s;
}
.fg-btn-secondary:hover { color: var(--text); background: rgba(255,255,255,.12); }

.access-hint {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 60px 0; gap: 12px; color: var(--text3);
}
.ah-icon { font-size: 3rem; opacity: .5; }
.ah-text { text-align: center; font-size: .88rem; line-height: 1.6; }

/* ── EVENTS LIST ── */
.event-item {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 14px; flex-wrap: wrap;
  padding: 16px; margin-bottom: 12px;
  background: rgba(255,255,255,.03); border: 1px solid var(--border);
  border-radius: 14px; transition: border-color .2s;
}
.event-item:hover { border-color: var(--border2); }
.ev-info { flex: 1; min-width: 180px; }
.ev-name { font-weight: 700; font-size: .95rem; margin-bottom: 4px; }
.ev-meta { font-size: .78rem; color: var(--text2); line-height: 1.6; }
.ev-prices { font-size: .72rem; color: var(--text3); margin-top: 4px; }
.ev-del-btn {
  background: rgba(255,61,107,.1); border: 1px solid rgba(255,61,107,.25);
  color: var(--r); border-radius: 10px; padding: 8px 14px;
  font-size: .75rem; font-weight: 700; cursor: pointer;
  transition: all .2s; flex-shrink: 0;
  font-family: 'Outfit', sans-serif;
}
.ev-del-btn:hover { background: rgba(255,61,107,.2); }

.fg-actions { padding-top: 8px; }

/* ── REPORT ── */
.report-types { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; }
.rt-card {
  background: var(--glass2); border: 1px solid var(--border2);
  border-radius: 16px; padding: 18px;
}
.rt-name { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.rt-count { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; line-height: 1; margin-bottom: 4px; }
.rt-sub { font-size: .72rem; color: var(--text2); margin-bottom: 8px; }
.rt-bar { height: 4px; background: rgba(255,255,255,.06); border-radius: 99px; overflow: hidden; }
.rt-fill { height: 100%; border-radius: 99px; transition: width .6s ease; }

.export-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,245,160,.1); border: 1px solid rgba(0,245,160,.25);
  color: var(--g); border-radius: 12px; padding: 10px 18px;
  font-family: 'Outfit', sans-serif; font-size: .85rem; font-weight: 700;
  cursor: pointer; transition: all .2s;
}
.export-btn:hover { background: rgba(0,245,160,.18); }

.timeline-feed { display: flex; flex-direction: column; gap: 8px; }
.tl-item {
  display: flex; align-items: center; gap: 14px;
  padding: 10px; border-radius: 10px;
  background: rgba(255,255,255,.02); border: 1px solid var(--border);
}
.tl-t { font-family: 'Space Mono', monospace; font-size: .72rem; color: var(--text3); flex-shrink: 0; }
.tl-n { flex: 1; font-size: .85rem; font-weight: 600; }

/* ── RECENT FEED ── */
.recent-feed { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.feed-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px; border-radius: 10px;
  background: rgba(255,255,255,.02); border: 1px solid var(--border);
}
.fi-avatar {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--p), var(--b));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem; color: #fff;
}
.fi-info { flex: 1; }
.fi-name { font-size: .85rem; font-weight: 700; }
.fi-meta { font-size: .72rem; color: var(--text2); }
.fi-time { font-family: 'Space Mono', monospace; font-size: .72rem; color: var(--text3); }
.empty-feed { color: var(--text3); font-size: .85rem; text-align: center; padding: 20px 0; }

/* ── CHECKIN MODAL ── */
.checkin-success {
  text-align: center; padding: 8px 0;
}
.cs-emoji { font-size: 3rem; display: block; margin-bottom: 14px; }
.cs-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; letter-spacing: 4px; color: var(--g); margin-bottom: 6px;
}
.cs-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 14px; }
.cs-btn {
  padding: 12px 22px; border-radius: 12px;
  background: linear-gradient(135deg, var(--g), var(--b));
  color: #000; border: none;
  font-family: 'Outfit', sans-serif; font-size: .9rem; font-weight: 800;
  cursor: pointer; transition: all .2s;
}
.cs-btn:hover { transform: translateY(-2px); }

/* ── EMPTY STATES ── */
.empty-list {
  text-align: center; color: var(--text3); font-size: .88rem;
  padding: 40px 0;
}

/* ═══════════════════════════════════════
   RESPONSIVE — PC vs MOBILE
   ═══════════════════════════════════════ */

/* Mobile: make bf-grid single col */
@media (max-width: 500px) {
  .bf-grid { grid-template-columns: 1fr; }
  .bf-field.full { grid-column: 1; }
  .cd-block { padding: 10px 12px; min-width: 60px; }
  .cd-num { font-size: 1.4rem; }
  .hero-title { font-size: 4rem; }
  .pub-header { padding: 12px 16px; }
  .buy-form-card { padding: 22px 18px; }
  .admin-content { padding: 14px; }
  .admin-topbar { padding: 10px 14px; }
  .at-brand { font-size: 1rem; }
}

/* Tablet and up */
@media (min-width: 768px) {
  .hero-section { padding: 120px 40px 100px; }
  .vibe-section, .boletas-section, .buy-form-section { padding: 80px 40px; }
  .admin-content { padding: 32px; max-width: 1300px; margin: 0 auto; }
}

/* Desktop */
@media (min-width: 1024px) {
  .admin-nav { padding: 10px 32px; gap: 6px; }
  .an-btn { padding: 10px 22px; font-size: .87rem; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
