/* ============================================
   SearchYourParty — Design tokens
   ============================================ */
:root {
  --bg-deep: #0b0b12;
  --bg-panel: #121218;
  --bg-card: #15151f;
  --bg-card-hover: #1b1b28;
  --line: #26262f;
  --line-soft: #1d1d26;

  --pink: #ff3ea5;
  --purple: #8b5cf6;
  --purple-deep: #6d28d9;
  --gold: #fbbf24;

  --text-primary: #f5f5f7;
  --text-secondary: #b8b8c4;
  --text-muted: #77778a;

  --grad-brand: linear-gradient(120deg, var(--pink), var(--purple));
  --grad-brand-soft: linear-gradient(120deg, rgba(255, 62, 165, 0.15), rgba(139, 92, 246, 0.15));

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --font-display: "Unbounded", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "Space Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================
   Ambient rave-light background (signature element)
   ============================================ */
.rave-lights {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.rave-lights span {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.28;
  animation: drift 22s ease-in-out infinite;
}
.rave-lights span:nth-child(1) {
  width: 480px; height: 480px;
  background: var(--pink);
  top: -160px; left: -120px;
  animation-delay: 0s;
}
.rave-lights span:nth-child(2) {
  width: 420px; height: 420px;
  background: var(--purple);
  top: 20%; right: -140px;
  animation-delay: -7s;
}
.rave-lights span:nth-child(3) {
  width: 360px; height: 360px;
  background: var(--purple-deep);
  bottom: -140px; left: 30%;
  animation-delay: -14s;
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, 30px) scale(1.08); }
  66% { transform: translate(-30px, -20px) scale(0.96); }
}

/* ============================================
   Layout shells
   ============================================ */
.page { position: relative; z-index: 1; min-height: 100vh; }
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.nav .wrap { max-width: 1600px; }
@media (max-width: 720px) {
  .wrap { padding: 0 18px; }
}

/* ============================================
   Nav
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 18, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 16px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.logo .mark {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo .mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.logo .your { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }

.searchbar {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 18px;
  max-width: 460px;
  transition: border-color 0.2s ease;
}
.searchbar:focus-within { border-color: var(--purple); }
.searchbar svg { flex-shrink: 0; opacity: 0.6; width: 17px; height: 17px; }
.searchbar input {
  border: none; background: none; outline: none;
  color: var(--text-primary); font-size: 14px; width: 100%;
  font-family: var(--font-body);
  flex: 1;
  min-width: 0;
}
.searchbar input::placeholder { color: var(--text-muted); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-left: auto;
}
.nav-links a { transition: color 0.15s ease; }
.nav-links a:hover { color: var(--text-primary); }
.avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
}
@media (max-width: 860px) {
  .nav-links span { display: none; }
  .nav-inner { gap: 14px; }
}
@media (max-width: 640px) {
  .nav-inner {
    flex-wrap: wrap;
    padding: 12px 0;
    row-gap: 10px;
  }
  .logo { font-size: 16px; }
  .logo .mark { width: 28px; height: 28px; }
  .nav-links { display: none; }
  .searchbar {
    order: 3;
    max-width: none;
    flex: 1 1 100%;
    padding: 9px 14px;
  }
  .avatar { width: 32px; height: 32px; margin-left: auto; }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--line);
  background: var(--bg-panel);
  color: var(--text-primary);
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.btn:hover { border-color: var(--purple); transform: translateY(-1px); }
.btn-primary {
  background: var(--grad-brand);
  border: none;
  color: #17010f;
}
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn svg { width: 16px; height: 16px; }

/* ============================================
   Hero (home)
   ============================================ */
.hero {
  padding: 64px 0 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.hero h1 .accent {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead {
  color: var(--text-secondary);
  font-size: 17px;
  max-width: 440px;
  margin: 0 0 28px;
}
.hero-visual {
  position: relative;
  aspect-ratio: 4/3;
  overflow: visible;
}
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 28px;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -60px;
  background: var(--grad-brand);
  filter: blur(90px);
  opacity: 0.22;
  z-index: -1;
}
.hero-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 78% 72% at center, transparent 42%, var(--bg-deep) 100%);
  pointer-events: none;
}
.hero-visual .tag {
  position: absolute;
  bottom: 8px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 12px;
  background: rgba(11,11,18,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; padding-top: 40px; }
}
@media (max-width: 560px) {
  .hero { padding: 28px 0 32px; }
  .hero-visual { aspect-ratio: 16/10; }
  .filters { flex-direction: column; align-items: stretch; }
  .select, .filters .btn { width: 100%; }
  .select select { width: 100%; }
}

/* ============================================
   Filters
   ============================================ */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.select {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 16px;
  font-size: 14px;
  color: var(--text-secondary);
}
.select select {
  background: none; border: none; color: var(--text-primary);
  font-family: inherit; font-size: 14px; outline: none;
}
.select select option { background: var(--bg-panel); }
.select svg { width: 15px; height: 15px; opacity: 0.7; }

/* ============================================
   Section headers
   ============================================ */
.section { padding: 44px 0; }
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 22px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}
.section-head .see-all {
  font-size: 13px;
  color: var(--pink);
  font-weight: 600;
}

/* ============================================
   Party cards grid
   ============================================ */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
}
.card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 0 0 1.5px var(--purple), 0 18px 40px -18px rgba(139, 92, 246, 0.55);
}
.card-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover .card-media img { transform: scale(1.06); }
.card-genre {
  position: absolute;
  top: 10px; left: 10px;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(11,11,18,0.65);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.card-body { padding: 14px 16px 16px; }
.card-body h3 { margin: 0 0 3px; font-size: 15.5px; font-weight: 700; }
.card-body .venue { font-size: 12.5px; color: var(--text-muted); margin: 0 0 10px; }
.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
}
.card-meta .time { color: var(--text-secondary); }
.card-meta .price { color: var(--gold); font-weight: 700; }

/* ============================================
   Venue tiles (popular clubs strip)
   ============================================ */
.venue-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}
.venue-tile {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1/1.05;
  border: 1px solid var(--line);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.venue-tile:hover { transform: translateY(-3px); border-color: var(--pink); }
.venue-tile img { width: 100%; height: 100%; object-fit: cover; }
.venue-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,18,0) 30%, rgba(11,11,18,0.88));
}
.venue-tile .info {
  position: absolute; left: 12px; bottom: 12px; z-index: 2;
}
.venue-tile .info h4 { margin: 0; font-size: 14px; font-weight: 700; }
.venue-tile .info span { font-size: 11.5px; color: var(--text-muted); }

/* ============================================
   Trust strip
   ============================================ */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid var(--line-soft);
  padding: 36px 0;
  margin-top: 10px;
}
.trust-item { display: flex; gap: 12px; align-items: flex-start; }
.trust-item .ic {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--grad-brand-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--pink);
}
.trust-item .ic svg { width: 18px; height: 18px; }
.trust-item h5 { margin: 0 0 3px; font-size: 14px; }
.trust-item p { margin: 0; font-size: 12.5px; color: var(--text-muted); }
@media (max-width: 720px) {
  .trust-strip { grid-template-columns: 1fr; }
}

footer {
  border-top: 1px solid var(--line-soft);
  padding: 26px 0 40px;
  color: var(--text-muted);
  font-size: 12.5px;
  text-align: center;
}
footer strong { color: var(--text-secondary); }

/* ============================================
   Venue detail page
   ============================================ */
.crumbs {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted);
  padding: 18px 0 22px;
}
.crumbs .current { color: var(--text-primary); }
.crumbs .sep { opacity: 0.5; }

.venue-hero {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 21/8;
  min-height: 260px;
}
.venue-hero img { width: 100%; height: 100%; object-fit: cover; }
.venue-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(11,11,18,0.9) 0%, rgba(11,11,18,0.1) 55%);
}
.venue-hero-content {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 28px 34px;
  display: flex; align-items: flex-end; gap: 20px;
}
.venue-hero-logo {
  width: 88px; height: 88px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-align: center;
  flex-shrink: 0;
}
.venue-hero-title h1 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.venue-hero-title .loc {
  display: flex; align-items: center; gap: 6px;
  color: var(--text-secondary); font-size: 14px; margin-bottom: 6px;
}
.rating { display: flex; align-items: center; gap: 6px; font-size: 13.5px; }
.rating .stars { color: var(--gold); letter-spacing: 1px; }
.rating .count { color: var(--text-muted); }

.action-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 22px 0 8px;
}

.venue-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
  margin-top: 30px;
}
@media (max-width: 900px) {
  .venue-layout { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .venue-hero { aspect-ratio: 4/3; min-height: 0; }
  .venue-hero-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    gap: 10px;
  }
  .venue-hero-logo { width: 56px; height: 56px; font-size: 10px; }
  .action-row .btn { flex: 1 1 auto; justify-content: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

.panel {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
}
.panel + .panel { margin-top: 20px; }
.panel h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  margin: 0 0 16px;
}

.info-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13.5px; color: var(--text-secondary);
  padding: 9px 0;
  border-bottom: 1px solid var(--line-soft);
}
.info-list li:last-child { border-bottom: none; }
.info-list svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; opacity: 0.7; }
.info-list a.official { color: var(--pink); font-weight: 600; }

.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 10px;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.social-row a:hover { border-color: var(--pink); color: var(--pink); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.gallery-grid img {
  aspect-ratio: 1/1; object-fit: cover; border-radius: 8px;
}

.event-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  transition: border-color 0.15s ease;
}
.event-row:hover { border-color: var(--purple); }
.event-date {
  font-family: var(--font-mono);
  text-align: center;
  width: 58px;
  flex-shrink: 0;
}
.event-date .dow { font-size: 11px; color: var(--text-muted); text-transform: uppercase; }
.event-date .num { font-size: 22px; font-weight: 700; line-height: 1.1; }
.event-date .mon { font-size: 11px; color: var(--text-muted); text-transform: uppercase; }
.event-thumb {
  width: 68px; height: 68px; border-radius: 10px; overflow: hidden; flex-shrink: 0;
}
.event-thumb img { width: 100%; height: 100%; object-fit: cover; }
.event-main { flex: 1; min-width: 0; }
.event-main h4 { margin: 0 0 4px; font-size: 15px; }
.event-tag {
  display: inline-block;
  font-size: 10.5px; font-weight: 700; text-transform: uppercase;
  padding: 3px 9px; border-radius: 999px;
  background: var(--grad-brand-soft); color: var(--pink);
  margin-bottom: 6px;
}
.event-sub {
  display: flex; gap: 14px; font-size: 12.5px; color: var(--text-muted);
  font-family: var(--font-mono);
}
.event-price { text-align: right; flex-shrink: 0; }
.event-price .from { font-size: 11px; color: var(--text-muted); display: block; }
.event-price .amount { font-family: var(--font-mono); font-weight: 700; color: var(--gold); font-size: 16px; }

@media (max-width: 480px) {
  .event-row { gap: 12px; padding: 12px; }
  .event-thumb { display: none; }
  .event-date { width: 42px; }
  .event-date .num { font-size: 18px; }
  .event-main h4 { font-size: 13.5px; }
  .event-sub { font-size: 11px; }
}

.info-note {
  margin-top: 18px;
  font-size: 12px;
  color: var(--text-muted);
  display: flex; gap: 8px; align-items: flex-start;
  padding: 12px 14px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
}
.info-note svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 1px; }

/* ============================================
   Buscador destacado (home)
   ============================================ */
.search-section { padding-top: 8px; }
.filters-big {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
}
.filters-big .select { background: var(--bg-card); }

/* Date picker trigger + popover */
.date-picker-wrap { position: relative; padding: 0; background: none; border: none; }
.date-picker-trigger {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 16px;
  font-size: 14px;
  color: var(--text-primary);
  font-family: inherit;
  white-space: nowrap;
}
.date-picker-trigger svg { width: 15px; height: 15px; opacity: 0.7; flex-shrink: 0; }
.date-popover {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 40;
  width: 300px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.7);
}
.date-popover.open { display: block; }
.date-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
}
.date-quick-btn {
  font-family: inherit;
  font-size: 12px;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: none;
  color: var(--text-secondary);
}
.date-quick-btn.active { border-color: var(--pink); color: var(--pink); }
.cal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}
.cal-month { font-size: 13px; font-weight: 600; text-transform: capitalize; }
.cal-nav {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: none;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1;
}
.cal-nav:hover { border-color: var(--purple); color: var(--text-primary); }
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  font-size: 10.5px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 4px;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  border-radius: 8px;
  border: none;
  background: none;
  color: var(--text-secondary);
  position: relative;
}
.cal-day.empty { visibility: hidden; }
.cal-day:not(.empty):hover { background: var(--bg-card-hover); color: var(--text-primary); }
.cal-day.has-event::after {
  content: "";
  position: absolute;
  bottom: 4px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--pink);
}
.cal-day.selected {
  background: var(--grad-brand);
  color: #17010f;
  font-weight: 700;
}
.cal-day.selected::after { background: #17010f; }

/* ============================================
   Sorpréndeme
   ============================================ */
.surprise-card {
  background: var(--grad-brand-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.surprise-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.surprise-copy h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  margin: 8px 0 8px;
  letter-spacing: -0.01em;
}
.surprise-copy p {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 0 0 20px;
  max-width: 380px;
}
.surprise-controls { display: flex; flex-wrap: wrap; gap: 10px; }
.surprise-result {
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.surprise-placeholder {
  color: var(--text-muted);
  font-size: 13.5px;
  text-align: center;
}
.surprise-pick {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px;
  width: 100%;
  transition: border-color 0.15s ease;
}
.surprise-pick:hover { border-color: var(--pink); }
.surprise-pick img {
  width: 84px; height: 84px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.surprise-pick-info h3 { margin: 4px 0 2px; font-size: 16px; }
.surprise-pick-info p { margin: 0 0 6px; font-size: 12.5px; color: var(--text-muted); }
.surprise-pick-time { font-family: var(--font-mono); font-size: 11.5px; color: var(--gold); }

@media (max-width: 720px) {
  .surprise-card { grid-template-columns: 1fr; padding: 22px; }
}
@media (max-width: 560px) {
  .filters-big { padding: 14px; }
  .date-popover { width: 100%; left: 0; right: 0; }
}

.section-sub {
  color: var(--text-muted);
  font-size: 13.5px;
  margin: -10px 0 20px;
  max-width: 560px;
}

/* ============================================
   Modal de registro
   ============================================ */
.signup-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(6, 6, 10, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.signup-modal {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px 26px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
}
.signup-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: none;
  color: var(--text-secondary);
  display: flex; align-items: center; justify-content: center;
}
.signup-close:hover { border-color: var(--pink); color: var(--pink); }
.signup-modal h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
  padding-right: 20px;
}
.signup-modal .signup-sub {
  color: var(--text-secondary);
  font-size: 13.5px;
  margin: 0 0 22px;
  line-height: 1.5;
}
.signup-field { margin-bottom: 14px; }
.signup-field label {
  display: block;
  font-size: 12.5px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.signup-field input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 14px;
  outline: none;
}
.signup-field input:focus { border-color: var(--purple); }
.signup-field.invalid input { border-color: var(--coral, #e05c5c); }
.signup-error {
  font-size: 11.5px;
  color: #ff6b6b;
  margin-top: 5px;
  display: none;
}
.signup-field.invalid .signup-error { display: block; }
.signup-consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin: 16px 0 18px;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.signup-consent input { margin-top: 2px; flex-shrink: 0; }
.signup-consent a { color: var(--pink); }
.signup-actions { display: flex; flex-direction: column; gap: 10px; }
.signup-actions .btn { width: 100%; justify-content: center; }
.signup-skip {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 4px;
}
.signup-skip:hover { color: var(--text-secondary); }
.signup-success {
  text-align: center;
  padding: 10px 0 4px;
}
.signup-success svg { width: 40px; height: 40px; color: var(--pink); margin-bottom: 10px; }
.signup-success p { color: var(--text-secondary); font-size: 13.5px; }
@media (max-width: 480px) {
  .signup-modal { padding: 24px 20px 22px; }
}

/* ============================================
   Tabs del modal de login/registro
   ============================================ */
.auth-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-card);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 20px;
}
.auth-tab {
  flex: 1;
  padding: 9px 12px;
  border-radius: 999px;
  border: none;
  background: none;
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
}
.auth-tab.active {
  background: var(--grad-brand);
  color: #17010f;
}
.auth-form-error {
  font-size: 12.5px;
  color: #ff6b6b;
  margin: 4px 0 12px;
  min-height: 1em;
}

/* Nav avatar con foto/iniciales */
.avatar { overflow: hidden; }
.avatar img { display: block; }

/* ============================================
   Página de perfil
   ============================================ */
.profile-header {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 32px 0 8px;
  flex-wrap: wrap;
}
.profile-avatar-wrap { position: relative; flex-shrink: 0; }
.profile-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 26px;
  color: #17010f;
  overflow: hidden;
  border: 2px solid var(--line);
}
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
.profile-avatar-edit {
  position: absolute;
  bottom: -2px; right: -2px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
}
.profile-avatar-edit:hover { border-color: var(--pink); color: var(--pink); }
.profile-avatar-edit input { display: none; }
.profile-name { font-family: var(--font-display); font-size: 22px; margin: 0 0 4px; }
.profile-email { color: var(--text-muted); font-size: 13.5px; margin: 0; }

.profile-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin: 24px 0 8px;
}
.profile-info-item {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}
.profile-info-item span { display: block; font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 4px; }
.profile-info-item strong { font-size: 14.5px; font-weight: 600; }

.profile-logged-out {
  text-align: center;
  padding: 70px 20px;
  color: var(--text-secondary);
}
.profile-logged-out h2 { font-family: var(--font-display); font-weight: 500; margin-bottom: 8px; color: var(--text-primary); }
.profile-logged-out p { margin-bottom: 20px; font-size: 14px; }

/* ============================================
   Tarjeta de evento desplegable
   ============================================ */
.card-expand-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  margin-top: 10px;
  padding: 7px 0 2px;
  background: none;
  border: none;
  border-top: 1px solid var(--line-soft);
  color: var(--text-muted);
  font-family: inherit;
  font-size: 11.5px;
  cursor: pointer;
}
.card-expand-btn:hover { color: var(--pink); }
.card-expand-btn svg { width: 13px; height: 13px; transition: transform 0.2s ease; }
.card.open .card-expand-btn svg { transform: rotate(180deg); }

.card-more {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 16px;
}
.card.open .card-more {
  max-height: 260px;
  padding: 0 16px 16px;
}
.card-more p {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 10px 0 0;
}
.card-more-address {
  color: var(--text-muted) !important;
  font-size: 11.5px !important;
}
.card-more-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--pink);
}

/* Botón de favorito sobre las tarjetas de discoteca */
.tile-fav-btn {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 3;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(11,11,18,0.55);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: white;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.tile-fav-btn svg { width: 16px; height: 16px; }
.tile-fav-btn:hover { transform: scale(1.08); }
.tile-fav-btn.active { color: var(--pink); }
.tile-fav-btn.active svg { fill: var(--pink); }
.venue-tile { position: relative; }

/* Directorio agrupado por ciudad */
.directory-city-group { margin-bottom: 28px; }
.directory-city-group:last-child { margin-bottom: 0; }
.directory-city-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  margin: 0 0 12px;
}
.directory-city-title span { color: var(--text-muted); font-weight: 400; font-size: 13px; }

/* ============================================
   Tile de "logo" con el nombre de la discoteca
   (sustituye a fotos genéricas hasta tener fotos reales)
   ============================================ */
.venue-logo-tile {
  width: 100%; height: 100%;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  padding: 14px;
  text-align: center;
}
.venue-logo-tile span {
  font-family: var(--font-display);
  font-weight: 700;
  color: #17010f;
  line-height: 1.2;
  font-size: 15px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.card-media .venue-logo-tile span { font-size: 14px; }
.venue-tile .venue-logo-tile span { font-size: 13px; }
.venue-hero .venue-logo-tile span { font-size: clamp(22px, 4vw, 40px); }
.gallery-pending {
  grid-column: 1 / -1;
  text-align: center;
  padding: 30px 10px;
  color: var(--text-muted);
  font-size: 13px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
}

/* ============================================
   Tarjetas de ciudad (directorio)
   ============================================ */
.city-tile {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1/1.05;
  border: 1px solid var(--line);
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.city-tile:hover { transform: translateY(-3px); border-color: var(--pink); }
.city-tile img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(60%) brightness(0.4);
  transition: filter 0.25s ease;
}
.city-tile:hover img { filter: grayscale(30%) brightness(0.5); }
.city-tile-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(11,11,18,0.25), rgba(11,11,18,0.55));
  padding: 12px;
}
.city-tile-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.city-tile-count {
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.75);
}

.back-to-cities {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-panel);
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
}
.back-to-cities:hover { border-color: var(--pink); color: var(--pink); }
.back-to-cities svg { width: 14px; height: 14px; }

/* ============================================
   Menú hamburguesa (navegación principal)
   ============================================ */
.menu-toggle {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg-panel);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-primary);
  flex-shrink: 0;
  cursor: pointer;
}
.menu-toggle:hover { border-color: var(--purple); }
.menu-toggle svg { width: 18px; height: 18px; }

.mobile-menu-overlay {
  display: none;
  position: fixed; inset: 0;
  z-index: 150;
  background: rgba(6,6,10,0.7);
  backdrop-filter: blur(2px);
}
.mobile-menu-overlay.open { display: block; }

.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 151;
  width: 78%;
  max-width: 320px;
  background: var(--bg-panel);
  border-right: 1px solid var(--line);
  padding: 24px 20px;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.mobile-menu-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: none;
  color: var(--text-secondary);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.mobile-menu-close svg { width: 14px; height: 14px; }
.mobile-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 12px;
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 600;
  transition: background 0.15s ease, color 0.15s ease;
}
.mobile-menu a svg { width: 18px; height: 18px; flex-shrink: 0; }
.mobile-menu a:hover, .mobile-menu a.active { background: var(--bg-card); color: var(--text-primary); }
.mobile-menu a.active { color: var(--pink); }
.mobile-menu-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-size: 12px;
  color: var(--text-muted);
}

/* Página "Todos los clubs" */
.clubs-page-head { padding: 28px 0 6px; }
.clubs-page-head h1 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 36px);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.clubs-page-head p { color: var(--text-secondary); font-size: 14.5px; margin: 0; max-width: 520px; }
.clubs-search-row {
  display: flex;
  margin-top: 18px;
}
.clubs-search-row .select {
  background: var(--bg-panel);
  border: 1px solid var(--line);
}

/* ============================================
   Hero con foto de fondo fusionada (home)
   ============================================ */
.wrap-full { position: relative; z-index: 1; }
.hero-photo {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero-photo-fade {
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, var(--bg-deep) 0%, rgba(11,11,18,0.75) 35%, rgba(11,11,18,0.35) 65%, var(--bg-deep) 100%),
    radial-gradient(ellipse 90% 60% at 30% 40%, rgba(139,92,246,0.18), transparent 70%);
}
.hero-photo-content {
  position: relative;
  z-index: 2;
  padding: 60px 32px 40px;
  max-width: 640px;
}
.hero-photo-content h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 6vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.hero-photo-content h1 .accent {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-photo-content .lead {
  color: var(--text-secondary);
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 720px) {
  .hero-photo { min-height: 340px; }
  .hero-photo-content { padding: 40px 18px 30px; }
}

/* Tarjeta "Ver todos los clubs" */
.clubs-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 40px 0;
  padding: 24px 26px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.clubs-cta:hover { border-color: var(--pink); transform: translateY(-2px); }
.clubs-cta-eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.clubs-cta h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 21px;
  margin: 6px 0 4px;
}
.clubs-cta p { color: var(--text-muted); font-size: 13px; margin: 0; }
.clubs-cta-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #17010f;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.clubs-cta-arrow svg { width: 20px; height: 20px; }
@media (max-width: 560px) {
  .clubs-cta { padding: 18px; }
  .clubs-cta h2 { font-size: 17px; }
}

/* Insignia de logo real sobre la tarjeta (cuando lo tenemos verificado) */
.tile-logo-badge {
  position: absolute;
  bottom: 44px; left: 10px;
  z-index: 3;
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.94);
  display: flex; align-items: center; justify-content: center;
  padding: 5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.tile-logo-badge img { width: 100%; height: 100%; object-fit: contain; }

/* ============================================
   Página Quiénes somos
   ============================================ */
.about-hero { padding: 40px 0 24px; max-width: 640px; }
  .about-hero span.eyebrow {
    font-family: var(--font-mono); font-size: 12px; color: var(--pink);
    text-transform: uppercase; letter-spacing: 0.05em;
  }
  .about-hero h1 {
    font-family: var(--font-display); font-size: clamp(28px, 5vw, 42px);
    margin: 10px 0 14px; letter-spacing: -0.02em; line-height: 1.15;
  }
  .about-hero p { color: var(--text-secondary); font-size: 15.5px; line-height: 1.7; }
  .about-section { padding: 34px 0; border-top: 1px solid var(--line-soft); }
  .about-section h2 {
    font-family: var(--font-display); font-weight: 500; font-size: 21px;
    margin: 0 0 14px; letter-spacing: -0.01em;
  }
  .about-section p { color: var(--text-secondary); font-size: 14.5px; line-height: 1.75; max-width: 640px; }
  .about-values {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px; margin-top: 18px;
  }
  .about-value-card {
    background: var(--bg-panel); border: 1px solid var(--line); border-radius: var(--radius-md);
    padding: 20px;
  }
  .about-value-card .ic {
    width: 38px; height: 38px; border-radius: 10px;
    background: var(--grad-brand-soft); color: var(--pink);
    display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
  }
  .about-value-card .ic svg { width: 18px; height: 18px; }
  .about-value-card h3 { font-size: 15px; margin: 0 0 6px; }
  .about-value-card p { font-size: 13px; color: var(--text-muted); margin: 0; }
  .about-stats {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px; margin-top: 20px;
  }
  .about-stat { text-align: center; padding: 18px 10px; background: var(--bg-panel); border: 1px solid var(--line); border-radius: var(--radius-md); }
  .about-stat strong { display: block; font-family: var(--font-display); font-size: 26px; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .about-stat span { font-size: 12px; color: var(--text-muted); }
  .about-cta {
    margin-top: 34px; padding: 28px; border-radius: var(--radius-lg);
    background: var(--grad-brand-soft); border: 1px solid var(--line);
    text-align: center;
  }
  .about-cta h3 { font-family: var(--font-display); font-weight: 500; font-size: 19px; margin: 0 0 8px; }
  .about-cta p { color: var(--text-secondary); font-size: 13.5px; margin: 0 0 18px; }
