/* ── Clubr City Landing Pages — Shared Styles ───────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 14px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body { background: #000; color: #fff; font-family: 'Inter', sans-serif; min-height: 100vh; }
button { cursor: pointer; font-family: inherit; -webkit-appearance: none; appearance: none; border: none; background: none; padding: 0; }
a { text-decoration: none; color: inherit; }

/* Header */
#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: #111;
  border-bottom: 1px solid #1c1c1c;
  position: sticky;
  top: 0;
  z-index: 100;
}
#header .logo img { width: 160px; height: auto; display: block; }
#header .logo .logo-text {
  font-family: 'Inter', sans-serif; font-weight: 900; font-size: 32px;
  letter-spacing: 1px; color: #fff; line-height: 1;
}
.city-pill {
  display: flex; align-items: center; gap: 7px;
  background: #1a1a1a; border: 1px solid #2a2a2a; border-radius: 20px;
  padding: 6px 13px; font-size: 12px; font-weight: 500; color: #ccc;
}
.city-pill .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #0088ff; box-shadow: 0 0 6px #0088ff, 0 0 12px rgba(0,136,255,0.4);
}

/* Hero */
.city-hero {
  background: #000;
  padding: 100px 22px 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.city-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 160px; background: linear-gradient(to bottom, transparent, #111);
  pointer-events: none; z-index: 1;
}

/* Hero Glow */
.strobe-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1600px;
  height: 1000px;
  background: radial-gradient(ellipse at center,
    rgba(0,136,255,0.45) 0%,
    rgba(60,0,255,0.20) 35%,
    rgba(0,136,255,0.05) 60%,
    transparent 75%);
  animation: glowPulse 1.8s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}
.hero-glow-2 {
  position: absolute;
  top: 70%;
  left: 35%;
  transform: translate(-50%, -50%);
  width: 1100px;
  height: 700px;
  background: radial-gradient(ellipse at center,
    rgba(140,0,255,0.30) 0%,
    rgba(80,0,200,0.10) 45%,
    transparent 70%);
  animation: glowPulse 2.4s ease-in-out infinite reverse;
  pointer-events: none;
  mix-blend-mode: screen;
}
.hero-glow-3 {
  position: absolute;
  top: 35%;
  left: 70%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center,
    rgba(0,220,255,0.25) 0%,
    rgba(0,150,255,0.10) 40%,
    transparent 70%);
  animation: glowPulse 2.0s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}
.hero-glow-4 {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at center,
    rgba(200,0,255,0.15) 0%,
    transparent 65%);
  animation: glowPulse 2.8s ease-in-out infinite reverse;
  pointer-events: none;
  mix-blend-mode: screen;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.92); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.10); }
}

/* Lasers */
.laser {
  position: absolute;
  top: -10%;
  width: 1px;
  height: 90%;
  transform-origin: top center;
  pointer-events: none;
  mix-blend-mode: screen;
}
.laser-1 {
  left: 10%;
  background: linear-gradient(to bottom, rgba(0,136,255,1) 0%, rgba(0,136,255,0.3) 60%, transparent 100%);
  box-shadow: 0 0 6px rgba(0,136,255,0.8), 0 0 12px rgba(0,136,255,0.3);
  animation: laser1 4s ease-in-out infinite;
}
.laser-2 {
  left: 28%;
  background: linear-gradient(to bottom, rgba(140,0,255,1) 0%, rgba(140,0,255,0.3) 60%, transparent 100%);
  box-shadow: 0 0 6px rgba(140,0,255,0.8), 0 0 12px rgba(140,0,255,0.3);
  animation: laser2 5s ease-in-out infinite;
}
.laser-3 {
  left: 46%;
  background: linear-gradient(to bottom, rgba(0,210,255,1) 0%, rgba(0,210,255,0.3) 60%, transparent 100%);
  box-shadow: 0 0 6px rgba(0,210,255,0.8), 0 0 12px rgba(0,210,255,0.3);
  animation: laser3 3.5s ease-in-out infinite;
}
.laser-4 {
  left: 63%;
  background: linear-gradient(to bottom, rgba(180,0,255,1) 0%, rgba(180,0,255,0.3) 60%, transparent 100%);
  box-shadow: 0 0 6px rgba(180,0,255,0.8), 0 0 12px rgba(180,0,255,0.3);
  animation: laser4 4.5s ease-in-out infinite;
}
.laser-5 {
  left: 80%;
  background: linear-gradient(to bottom, rgba(0,180,255,1) 0%, rgba(0,180,255,0.3) 60%, transparent 100%);
  box-shadow: 0 0 6px rgba(0,180,255,0.6), 0 0 12px rgba(0,180,255,0.2);
  animation: laser5 6s ease-in-out infinite;
}
.laser-6 {
  left: 93%;
  background: linear-gradient(to bottom, rgba(120,0,255,1) 0%, rgba(120,0,255,0.3) 60%, transparent 100%);
  box-shadow: 0 0 6px rgba(120,0,255,0.7), 0 0 12px rgba(120,0,255,0.2);
  animation: laser2 3.8s ease-in-out infinite reverse;
}
@keyframes laser1 {
  0%   { opacity: 0; transform: rotate(-35deg); }
  20%  { opacity: 0.55; }
  50%  { opacity: 0.4; transform: rotate(-8deg); }
  80%  { opacity: 0.55; }
  100% { opacity: 0; transform: rotate(-35deg); }
}
@keyframes laser2 {
  0%   { opacity: 0; transform: rotate(20deg); }
  25%  { opacity: 0.5; }
  50%  { opacity: 0.35; transform: rotate(-5deg); }
  75%  { opacity: 0.5; }
  100% { opacity: 0; transform: rotate(20deg); }
}
@keyframes laser3 {
  0%   { opacity: 0; transform: rotate(-15deg); }
  30%  { opacity: 0.6; }
  50%  { opacity: 0.45; transform: rotate(18deg); }
  70%  { opacity: 0.6; }
  100% { opacity: 0; transform: rotate(-15deg); }
}
@keyframes laser4 {
  0%   { opacity: 0; transform: rotate(30deg); }
  20%  { opacity: 0.45; }
  55%  { opacity: 0.3; transform: rotate(5deg); }
  80%  { opacity: 0.45; }
  100% { opacity: 0; transform: rotate(30deg); }
}
@keyframes laser5 {
  0%   { opacity: 0; transform: rotate(-20deg); }
  15%  { opacity: 0.4; }
  50%  { opacity: 0.25; transform: rotate(10deg); }
  85%  { opacity: 0.4; }
  100% { opacity: 0; transform: rotate(-20deg); }
}
.city-hero h1 {
  font-family: 'Inter', sans-serif; font-weight: 900; font-size: 48px;
  letter-spacing: 1px; text-transform: uppercase; color: #fff;
  margin-bottom: 20px; line-height: 1.1;
}
.city-hero p {
  font-size: 16px; color: #888; max-width: 700px; margin: 0 auto 32px;
  line-height: 1.7;
}
.btn-primary {
  background: #0088ff; color: #fff; font-weight: 700; font-size: 16px;
  letter-spacing: 2px; padding: 18px 52px; border-radius: 8px;
  display: inline-block; text-align: center; white-space: nowrap;
  transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover { background: #0099ff; transform: translateY(-2px); }

/* Sections */
.section-label {
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 20px;
  letter-spacing: 2px; color: #0088ff; text-align: center; margin-bottom: 16px;
}
.section-heading {
  font-family: 'Inter', sans-serif; font-weight: 900; font-size: 38px;
  letter-spacing: 0px; text-transform: uppercase; color: #fff;
  text-align: center; margin-bottom: 48px;
}

/* Venue Grid */
.city-venues {
  background: #111;
  padding: 80px 22px 200px;
  position: relative;
}
.city-venues::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 160px; background: linear-gradient(to bottom, transparent, #000);
  pointer-events: none;
}
.venues-grid {
  display: flex; flex-wrap: wrap; gap: 10px;
  max-width: 800px; margin: 0 auto; justify-content: center;
}
.venue-pill {
  background: #000; border: 1px solid #1c1c1c; border-radius: 20px;
  padding: 8px 16px; display: flex; align-items: center; gap: 8px;
  cursor: default; transition: border-color 0.2s;
}
.venue-pill:hover { border-color: var(--vc); }
.venue-pill:hover .vp-name { color: #fff; }
.vp-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  background: var(--vc); box-shadow: 0 0 6px var(--vc);
}
.vp-name {
  font-size: 12px; font-weight: 500; color: #888;
  transition: color 0.2s; white-space: nowrap;
}

/* Events Preview */
.city-events {
  background: #000;
  padding: 80px 22px 100px;
  position: relative;
}
.city-events::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 160px; background: linear-gradient(to bottom, transparent, #111);
  pointer-events: none;
}
#events-preview {
  max-width: 700px; margin: 0 auto;
}
.city-events-date-header {
  display: flex; align-items: baseline; gap: 10px;
  padding: 20px 0 10px;
}
.city-events-date-header .cedh-day {
  font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: 28px; color: #fff; line-height: 1;
}
.city-events-date-header .cedh-date {
  font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: 18px; color: #666; line-height: 1;
}
.city-events-date-header .cedh-line {
  flex: 1; height: 1px; background: #1c1c1c; margin-left: 4px;
}
.city-events-section-label {
  font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: 13px; letter-spacing: 0.5px; color: #666;
  padding: 14px 0 8px; border-bottom: 1px solid #1a1a1a;
  margin-bottom: 10px;
}
.event-card {
  background: #1a1a1a; border: 1px solid #252525; border-radius: 14px;
  padding: 14px 16px; margin-bottom: 8px;
  display: flex; align-items: center; gap: 12px;
  position: relative; overflow: hidden;
  padding-left: 19px;
}
.event-card-accent {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; border-radius: 14px 0 0 14px;
}
.event-thumb {
  flex-shrink: 0; width: 46px; height: 46px;
  border-radius: 10px; background: #222;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: #fff;
  font-family: 'Inter', sans-serif; font-weight: 800;
  overflow: hidden;
}
.event-thumb img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 10px;
}
.event-info { flex: 1; min-width: 0; }
.event-headliner {
  font-size: 13px; font-weight: 700;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 5px;
}
.event-headliner .at { color: #444; font-weight: 400; }
.event-meta {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.venue-badge {
  font-size: 8px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; padding: 2px 6px; border-radius: 4px; border: 1px solid;
}
.badge-nightclub { background: #2a1a4a; border-color: #4a2a8a; color: #c9b8ff; }
.badge-dayclub { background: #0a2a3a; border-color: #1a6080; color: #b8eeff; }
.event-time { font-size: 10px; color: #444; }
.ticket-link {
  flex-shrink: 0; font-size: 10px; font-weight: 700; color: #0088ff;
  white-space: nowrap;
}
.ticket-link:hover { color: #40aaff; }
.events-empty {
  text-align: center; padding: 40px 20px; color: #333; font-size: 13px;
}

/* FAQ */
.city-faq {
  background: #111;
  padding: 60px 22px;
  border-top: 1px solid #1c1c1c;
  position: relative;
}
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-list details {
  border: 1px solid #222; border-radius: 10px;
  margin-bottom: 10px; background: #1a1a1a; overflow: hidden;
}
.faq-list summary {
  padding: 16px 18px; font-weight: 600; font-size: 13px;
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+'; font-size: 18px; font-weight: 700; color: #555;
  flex-shrink: 0; margin-left: 12px;
}
.faq-list details[open] summary::after { content: '-'; }
.faq-list summary:hover { background: #222; }
.faq-list p {
  padding: 0 18px 16px; font-size: 13px; color: #aaa; line-height: 1.7;
}

/* Mobile */
@media (max-width: 640px) {
  html { font-size: 16px; }
  .city-hero { padding: 60px 16px 60px; }
  .city-hero::after { height: 60px; }
  .city-hero h1 { font-size: 32px; }
  .city-hero p { font-size: 15px; }
  .section-heading { font-size: 28px; margin-bottom: 28px; }
  .section-label { font-size: 18px; margin-bottom: 10px; }
  .city-venues { padding: 60px 16px 100px; }
  .city-venues::after { height: 60px; }
  .city-events { padding: 60px 16px 80px; }
  .city-events::after { height: 60px; }
  .btn-primary { width: 100%; max-width: 320px; font-size: 14px; padding: 16px 20px; letter-spacing: 1px; }
}

/* Desktop */
@media (min-width: 768px) {
  #header { padding: 16px 28px; }
  #header .logo img { width: 200px; }
  .city-pill { font-size: 18px; padding: 14px 28px; border-radius: 30px; gap: 12px; }
  .city-pill .dot { width: 12px; height: 12px; }
  #city-selector span:last-child { font-size: 14px; }
  .city-hero h1 { font-size: 64px; }
  .city-hero p { font-size: 20px; }
  .city-hero p { margin-bottom: 40px; }
  .section-heading { font-size: 44px; }
  .vp-name { font-size: 13px; }
  .faq-list summary { font-size: 14px; }
  .faq-list p { font-size: 14px; }
}
