/* ============================================
   PUBLIC PAGES STYLES
   ============================================ */

/* HERO SECTION */
.page-preloader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(10, 12, 28, 0.96), rgba(7, 8, 20, 0.98));
  z-index: 9999;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.page-preloader-hidden,
.skip-preloader .page-preloader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
  max-width: 800px;
  padding: var(--spacing-lg);
}

.preloader-badge {
  display: inline-block;
  margin-bottom: var(--spacing-md);
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.preloader-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: var(--spacing-lg);
  color: #ffffff;
}

.preloader-strip {
  width: 140px;
  height: 4px;
  margin: 0 auto;
  border-radius: 9999px;
  background: linear-gradient(90deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.85) 50%, rgba(255,255,255,0.2) 100%);
  animation: preloader-slide 1.2s ease-in-out infinite;
  will-change: transform;
}

@keyframes preloader-slide {
  0% { transform: translateX(-45%); }
  100% { transform: translateX(145%); }
}

.hero {
  position: relative;
  padding: var(--spacing-4xl) 0;
  min-height: 80vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,138,0,0.18), transparent 18%),
              radial-gradient(circle at bottom right, rgba(255,180,100,0.1), transparent 20%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 var(--spacing-lg);
  text-align: center;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: var(--spacing-lg);
  line-height: 1.02;
  color: #fff;
  text-shadow: 0 24px 55px rgba(0, 0, 0, 0.35);
}

.hero p {
  font-size: 1.15rem;
  margin-bottom: var(--spacing-3xl);
  color: rgba(255, 255, 255, 0.92);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero {
  background: linear-gradient(180deg, rgba(7,8,20,0.92), rgba(7,8,20,0.76)),
              url("../assets/images/IMG_3177.JPG");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.silent-disco-banner {
  position: relative;
  min-height: 55vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(7,8,20,0.72), rgba(7,8,20,0.72)),
             url("../assets/images/SILENTDISCO-1.jpg" !important);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: var(--spacing-5xl) 0;
  margin: var(--spacing-4xl) 0;
}

.silent-disco-container,
.silent-disco-details .container {
  position: relative;
  z-index: 1;
}

.silent-disco-copy {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: var(--spacing-4xl) var(--spacing-lg);
}

.silent-disco-copy .eyebrow {
  display: inline-flex;
  margin-bottom: var(--spacing-md);
  padding: 10px 18px;
  border-radius: 9999px;
  background: rgba(255, 138, 0, 0.14);
  color: var(--color-primary-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.silent-disco-copy h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin: var(--spacing-lg) auto;
  color: #fff;
  line-height: 1.02;
  max-width: 800px;
}

.silent-disco-copy p {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto var(--spacing-3xl);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-3xl);
}

.channel-selection {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.channel-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  transition: transform var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast), color var(--transition-fast);
}

.channel-pill.active,
.channel-pill:hover {
  background: rgba(255,138,0,0.22);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(255,138,0,0.15);
}

.btn-glow {
  position: relative;
  overflow: hidden;
  border: none;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: #090712;
  box-shadow: 0 20px 60px rgba(255,138,0,0.35);
}

.btn-glow::after {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 55%);
  opacity: 0.25;
  transform: scale(0.7);
}

.silent-disco-visuals {
  position: relative;
  margin-top: var(--spacing-5xl);
  height: 420px;
  display: grid;
  place-items: center;
}

.visual-chip {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  box-shadow: 0 0 30px rgba(255,255,255,0.12);
  animation: float-chip 6s ease-in-out infinite;
}

.chip-1 { top: 22%; left: 12%; animation-delay: 0s; }
.chip-2 { top: 18%; right: 16%; animation-delay: 1.4s; }
.chip-3 { bottom: 18%; left: 20%; animation-delay: 0.8s; }

@keyframes float-chip {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-22px) scale(1.08); }
}

.headphone-ring,
.headphone-core {
  position: absolute;
  border-radius: 50%;
}

.headphone-ring {
  width: 260px;
  height: 260px;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 60px rgba(255,138,0,0.16);
  animation: ring-pulse 4.5s ease-in-out infinite;
}

.headphone-core {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255,255,255,0.16), rgba(255,138,0,0.12));
  box-shadow: 0 0 55px rgba(255,138,0,0.2);
}

@keyframes ring-pulse {
  0%,100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.06); opacity: 1; }
}

.audio-beam {
  position: absolute;
  width: 12px;
  height: 160px;
  left: 50%;
  transform-origin: bottom center;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0));
  border-radius: 9999px;
  animation: beam-shift 1.8s ease-in-out infinite;
}

.audio-beam-1 { transform: translateX(-80px) scaleY(0.8); animation-delay: 0s; }
.audio-beam-2 { transform: translateX(0px) scaleY(1); animation-delay: 0.2s; }
.audio-beam-3 { transform: translateX(80px) scaleY(0.7); animation-delay: 0.4s; }

@keyframes beam-shift {
  0%,100% { transform: scaleY(0.8); opacity: 0.8; }
  50% { transform: scaleY(1.4); opacity: 1; }
}

.audio-spectrum {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.9) 100%);
  overflow: hidden;
}

.audio-spectrum::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 40%, rgba(255,138,0,0.18), transparent 20%),
                    radial-gradient(circle at 75% 50%, rgba(0,149,255,0.16), transparent 18%);
}

.audio-spectrum:before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
  opacity: 0.45;
  mix-blend-mode: screen;
  animation: spectrum-wave 5.5s linear infinite;
}

@keyframes spectrum-wave {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.silence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: calc(var(--spacing-4xl) * 1.3);
  margin-bottom: calc(var(--spacing-5xl));
}

.silence-card,
.ticket-placeholder {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: calc(var(--spacing-4xl) + 8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  backdrop-filter: blur(16px);
  transform: translateY(28px);
  opacity: 0;
  transition: transform 0.9s ease, opacity 0.9s ease;
}

.silence-card.visible,
.ticket-placeholder.visible {
  transform: translateY(0);
  opacity: 1;
}

.silence-card h2,
.ticket-placeholder h2 {
  margin-bottom: var(--spacing-lg);
  color: #fff;
}

.silence-card p,
.ticket-placeholder p {
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
}

.ticket-placeholder {
  grid-column: 1 / -1;
  text-align: center;
}

.ticket-placeholder .btn {
  margin-top: var(--spacing-xl);
}

@media (max-width: 960px) {
  .silence-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .silent-disco-visuals {
    height: 320px;
  }

  .channel-selection {
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
  }
}

.silent-disco-banner-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  pointer-events: none;
}

.silent-disco-banner .container {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 0 var(--spacing-lg);
}

.silent-disco-banner h2 {
  font-size: clamp(3rem, 6vw, 4rem);
  margin-bottom: var(--spacing-lg);
  line-height: 1.02;
  text-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.silent-disco-banner .btn {
  min-width: 180px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
}

.silent-disco-banner .btn[aria-disabled="true"] {
  opacity: 0.88;
  cursor: default;
  pointer-events: none;
}

/* Silent Disco page extreme visuals */
.silent-disco-hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 16% 18%, rgba(255, 146, 0, 0.20), transparent 16%),
              radial-gradient(circle at 78% 22%, rgba(36, 206, 255, 0.15), transparent 18%),
              linear-gradient(180deg, #04030a, #0f0817 42%, #09060f 100%);
}

.silent-disco-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 22%, rgba(255,255,255,0.08), transparent 18%),
              radial-gradient(circle at 80% 20%, rgba(255,146,0,0.16), transparent 16%),
              radial-gradient(circle at 50% 84%, rgba(0,149,255,0.10), transparent 20%);
  pointer-events: none;
  mix-blend-mode: screen;
}

.silent-disco-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(120deg, rgba(255,255,255,0.06) 0%, transparent 25%),
                    linear-gradient(240deg, rgba(255,138,0,0.12) 0%, transparent 20%);
  opacity: 0.8;
  pointer-events: none;
}

.silent-disco-hero .hero-layer {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.035), transparent 30%);
  opacity: 0.9;
  pointer-events: none;
  animation: shimmer-glow 8.5s ease-in-out infinite;
}

.disco-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform-origin: center;
  will-change: transform, opacity;
}

@keyframes shimmer-glow {
  0%,100% { opacity: 0.78; transform: translate3d(0,0,0); }
  50% { opacity: 0.92; transform: translate3d(10px,-10px,0); }
}

.silent-disco-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: var(--spacing-5xl) var(--spacing-lg);
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.32));
}

.silent-disco-copy h1 {
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  margin: var(--spacing-lg) auto;
  color: #ffffff;
  line-height: 1.02;
  max-width: 860px;
  text-shadow: 0 18px 80px rgba(255,138,0,0.18);
}

.silent-disco-copy p {
  color: rgba(255,255,255,0.92);
  font-size: 1.18rem;
  max-width: 720px;
  margin: 0 auto var(--spacing-3xl);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-3xl);
}

.channel-selection {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.channel-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.channel-pill.active,
.channel-pill:hover {
  background: rgba(255,138,0,0.34);
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 28px 56px rgba(255,138,0,0.18);
  border-color: rgba(255,255,255,0.28);
}

.silent-disco-visuals {
  position: relative;
  margin-top: var(--spacing-5xl);
  height: 560px;
  display: grid;
  place-items: center;
  perspective: 1400px;
}

.disco-stage-wrapper {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: auto;
  z-index: 1;
}

.disco-stage {
  width: min(560px, 92vw);
  height: min(560px, 92vw);
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(22deg) rotateY(0deg);
  transition: transform 0.22s ease-out;
  pointer-events: auto;
}

.disco-stage,
.disco-stage * {
  transform-style: preserve-3d;
}

.stage-platform {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 420px;
  height: 420px;
  transform: translate(-50%, -8%) rotateX(90deg) translateZ(24px);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 20%, rgba(255,255,255,0.18), rgba(255,138,0,0.12) 30%, rgba(0,0,0,0.28) 100%);
  box-shadow: inset 0 0 60px rgba(255,255,255,0.08), 0 28px 90px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
}

.stage-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 520px;
  height: 520px;
  transform: translate(-50%, -50%) rotateX(90deg) translateZ(72px);
  border: 4px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(255,255,255,0.08), inset 0 0 16px rgba(255,255,255,0.12);
}

.stage-light {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 140px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--stage-light-color, rgba(255,255,255,0.98)) 0%, transparent 65%);
  box-shadow: 0 0 60px 16px var(--stage-light-color, rgba(255,255,255,0.98));
  filter: blur(0.8px);
  opacity: 0.82;
}

.stage-light-1 { transform: translate3d(-88px,-112px,96px) rotateX(44deg) rotateZ(6deg); }
.stage-light-2 { transform: translate3d(0,-130px,122px) rotateX(44deg); }
.stage-light-3 { transform: translate3d(88px,-112px,96px) rotateX(44deg) rotateZ(-6deg); }

.stage-pod {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 112px;
  height: 112px;
  border-radius: 26px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,0.30);
  overflow: hidden;
}

.stage-pod::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.28), transparent 42%);
}

.stage-pod span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.95);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stage-pod-1 { transform: translate3d(-148px,-44px,92px) rotateY(-18deg) rotateX(10deg); }
.stage-pod-2 { transform: translate3d(0,-78px,118px) rotateY(0deg) rotateX(8deg); }
.stage-pod-3 { transform: translate3d(148px,-44px,92px) rotateY(18deg) rotateX(10deg); }

.stage-hud {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
  color: rgba(255,255,255,0.84);
}

.stage-hud-label {
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.88;
}

.stage-spin-btn {
  min-width: 220px;
}

.disco-stage:focus-visible {
  outline: 2px solid rgba(255,255,255,0.18);
}

.visual-chip {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  box-shadow: 0 0 30px rgba(255,255,255,0.14);
  animation: float-chip 6s ease-in-out infinite;
  mix-blend-mode: screen;
}

.chip-1 { top: 14%; left: 10%; animation-delay: 0s; }
.chip-2 { top: 18%; right: 16%; animation-delay: 1.4s; }
.chip-3 { bottom: 18%; left: 20%; animation-delay: 0.8s; }

@keyframes float-chip {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-24px) scale(1.1); }
}

.headphone-ring,
.headphone-core {
  position: absolute;
  border-radius: 50%;
}

.headphone-ring {
  width: 300px;
  height: 300px;
  border: 2px solid rgba(255,255,255,0.16);
  box-shadow: 0 0 100px rgba(255,138,0,0.24);
  animation: ring-pulse 4.5s ease-in-out infinite;
}

.headphone-ring::before,
.headphone-ring::after {
  content: '';
  position: absolute;
  inset: 10%;
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}

.headphone-core {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(255,255,255,0.24), rgba(255,138,0,0.18));
  box-shadow: 0 0 70px rgba(255,138,0,0.24);
}

.headphone-core::before {
  content: '';
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

@keyframes ring-pulse {
  0%,100% { transform: rotateY(0deg) scale(1); opacity: 0.85; }
  50% { transform: rotateY(28deg) scale(1.06); opacity: 1; }
}

.audio-beam {
  position: absolute;
  width: 12px;
  height: 190px;
  left: 50%;
  transform-origin: bottom center;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0));
  border-radius: 9999px;
  animation: beam-shift 1.8s ease-in-out infinite;
  filter: blur(0.5px);
  mix-blend-mode: screen;
}

.audio-beam::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 12%;
  transform: translateX(-50%);
  width: 140%;
  height: 32%;
  background: radial-gradient(circle, rgba(255,255,255,0.16), transparent 72%);
}

.audio-beam-1 { transform: translateX(-88px) scaleY(0.82); animation-delay: 0s; }
.audio-beam-2 { transform: translateX(0px) scaleY(1); animation-delay: 0.14s; }
.audio-beam-3 { transform: translateX(88px) scaleY(0.72); animation-delay: 0.28s; }

@keyframes beam-shift {
  0%,100% { opacity: 0.75; }
  50% { opacity: 1; transform: scaleY(1.5); }
}

.audio-spectrum {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 180px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.56) 36%, rgba(0,0,0,0.96) 100%);
  overflow: hidden;
}

.audio-spectrum::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 40%, rgba(255,138,0,0.20), transparent 20%),
                    radial-gradient(circle at 75% 50%, rgba(0,149,255,0.18), transparent 18%);
}

.audio-spectrum::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
  opacity: 0.45;
  mix-blend-mode: screen;
  animation: spectrum-wave 5.5s linear infinite;
}

@keyframes spectrum-wave {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.silent-disco-club {
  position: relative;
  padding: var(--spacing-6xl) 0;
  overflow: hidden;
  background: radial-gradient(circle at 50% 16%, rgba(255,138,0,0.08), transparent 25%),
              linear-gradient(180deg, #020209, #07070f 32%, #090b12 100%);
}

.silent-disco-club::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(255,255,255,0.06), transparent 20%);
  pointer-events: none;
}

.club-cluster {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--spacing-3xl);
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.club-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--spacing-4xl);
  flex-wrap: wrap;
}

.club-intro h2 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  margin-bottom: var(--spacing-lg);
  color: #ffffff;
  line-height: 1.02;
}

.club-intro p {
  max-width: 560px;
  color: rgba(255,255,255,0.82);
  line-height: 1.9;
  font-size: 1rem;
}

.club-scene {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  perspective: 1600px;
}

.club-stage {
  position: relative;
  width: min(760px, 100%);
  height: 520px;
  transform-style: preserve-3d;
  transform: rotateX(18deg) rotateY(0deg);
  transition: transform 0.22s ease-out;
}

.club-floor {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: translateZ(-80px) rotateX(90deg);
  background: radial-gradient(circle at 50% 40%, rgba(255,255,255,0.06), rgba(0,0,0,0.16) 42%, rgba(0,0,0,0.33) 100%);
  border-radius: 50%;
  box-shadow: inset 0 0 140px rgba(255,255,255,0.06);
}

.club-light {
  position: absolute;
  top: 32%;
  left: 50%;
  width: 14px;
  height: 200px;
  transform-origin: bottom center;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), transparent 60%);
  filter: blur(1px);
  opacity: 0.92;
  mix-blend-mode: screen;
}

.club-light-1 { transform: translate3d(-140px,-132px,96px) rotateX(50deg) rotateZ(-8deg); }
.club-light-2 { transform: translate3d(0,-146px,118px) rotateX(50deg); }
.club-light-3 { transform: translate3d(140px,-132px,96px) rotateX(50deg) rotateZ(8deg); }

.club-person {
  position: absolute;
  width: 90px;
  height: 160px;
  transform-style: preserve-3d;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.club-person:hover {
  transform: translateZ(14px) scale(1.03);
}

.club-person .person-body {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 70px;
  height: 100px;
  transform: translateX(-50%);
  border-radius: 999px 999px 22px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,138,0,0.16));
  box-shadow: inset 0 0 18px rgba(255,255,255,0.12);
}

.club-person .person-head {
  position: absolute;
  bottom: 96px;
  left: 50%;
  width: 42px;
  height: 42px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.95), rgba(255,255,255,0.18) 46%, rgba(255,138,0,0.22) 100%);
  box-shadow: 0 0 20px rgba(255,255,255,0.14);
}

.club-person .person-shadow {
  position: absolute;
  bottom: -12px;
  left: 50%;
  width: 90px;
  height: 14px;
  transform: translateX(-50%) rotateX(90deg);
  border-radius: 999px;
  background: rgba(0,0,0,0.32);
  filter: blur(4px);
}

.club-person-1 { transform: translate3d(-180px, 12px, 44px) rotateY(-18deg) rotateX(4deg); animation: dance-bob 2.4s ease-in-out infinite alternate; }
.club-person-2 { transform: translate3d(0, -10px, 82px) rotateY(-6deg) rotateX(6deg); animation: dance-bob 2.1s ease-in-out infinite alternate; }
.club-person-3 { transform: translate3d(180px, 24px, 54px) rotateY(18deg) rotateX(4deg); animation: dance-bob 2.6s ease-in-out infinite alternate; }

@keyframes dance-bob {
  from { transform: translateZ(0) translateY(0); }
  to { transform: translateZ(10px) translateY(-12px); }
}

.club-logo-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 220px;
  transform: translate(-50%, -40%) translateZ(74px);
  display: grid;
  place-items: center;
  pointer-events: none;
}

.club-logo-link {
  position: relative;
  width: 170px;
  height: 170px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.16), rgba(255,138,0,0.16) 32%, #100612 100%);
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 80px rgba(255,138,0,0.22);
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  cursor: pointer;
  pointer-events: auto;
  transform-style: preserve-3d;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.club-logo-link:hover {
  transform: scale(1.06);
  box-shadow: 0 0 110px rgba(255,138,0,0.32);
}

.club-logo-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,138,0,0.25), transparent 45%);
  opacity: 0.82;
  filter: blur(14px);
  animation: logo-pulse 3s ease-in-out infinite;
}

.club-logo-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  transform-style: preserve-3d;
}

.club-logo-mark {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
  text-shadow: 0 0 18px rgba(255,255,255,0.2);
}

.club-logo-text {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
}

@keyframes logo-pulse {
  0%,100% { transform: scale(1); opacity: 0.84; }
  50% { transform: scale(1.04); opacity: 1; }
}

.club-avatar-anchor {
  position: absolute;
  bottom: -54px;
  left: 50%;
  transform: translateX(-50%);
  width: 104px;
  height: 104px;
  pointer-events: auto;
}

.club-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.18);
  background: radial-gradient(circle at 40% 25%, rgba(255,255,255,0.14), rgba(255,138,0,0.12) 32%, rgba(0,0,0,0.42) 100%);
  box-shadow: 0 0 50px rgba(255,255,255,0.12);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.club-avatar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.28), transparent 24%);
}

.club-avatar.has-avatar {
  background-size: cover;
  background-position: center;
}

.club-avatar::after {
  content: 'Click to enter';
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.72);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
}

.club-logo-link.is-joining {
  transform: scale(1.08);
}

@media (max-width: 1100px) {
  .club-stage {
    width: min(660px, 100%);
    height: 460px;
  }

  .club-person {
    width: 76px;
    height: 142px;
  }

  .club-logo-card {
    width: 188px;
    height: 188px;
  }
}

@media (max-width: 860px) {
  .club-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .club-intro h2 {
    font-size: clamp(2rem, 6vw, 3.2rem);
  }

  .club-scene {
    min-height: 420px;
  }

  .club-avatar-anchor {
    bottom: -48px;
    width: 92px;
    height: 92px;
  }
}

@media (max-width: 640px) {
  .silence-grid {
    gap: calc(var(--spacing-4xl) * 0.9);
  }

  .club-stage {
    width: 92vw;
    height: 380px;
  }

  .club-logo-card {
    width: 160px;
    height: 160px;
  }

  .club-avatar-anchor {
    bottom: -42px;
    width: 78px;
    height: 78px;
  }
}

.silence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: calc(var(--spacing-5xl) * 1.1);
  margin-bottom: calc(var(--spacing-5xl) + var(--spacing-lg));
  grid-auto-rows: minmax(240px, auto);
}

.silence-card,
.ticket-placeholder {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 32px;
  padding: calc(var(--spacing-4xl) + 10px);
  box-shadow: 0 28px 100px rgba(0,0,0,0.28);
  backdrop-filter: blur(18px);
  transform: translateY(28px);
  opacity: 0;
  transition: transform 0.9s ease, opacity 0.9s ease;
}

.ticket-placeholder {
  grid-column: 1 / -1;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
  border-color: rgba(255,138,0,0.14);
  margin-top: var(--spacing-lg);
}

.silence-card.visible,
.ticket-placeholder.visible {
  transform: translateY(0);
  opacity: 1;
}

.ticket-placeholder {
  grid-column: 1 / -1;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,138,0,0.18);
}

.ticket-placeholder .btn {
  margin-top: var(--spacing-xl);
  min-width: 220px;
  background: rgba(255,138,0,0.22);
  color: #ffffff;
  border-color: rgba(255,255,255,0.16);
}

.ticket-placeholder .btn:hover,
.ticket-placeholder .btn:focus {
  background: rgba(255,138,0,0.32);
}

@media (max-width: 960px) {
  .silence-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .silent-disco-visuals {
    height: 320px;
  }

  .channel-selection {
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
  }

  .silent-disco-copy h1 {
    font-size: clamp(2.6rem, 8vw, 4rem);
  }
}

@media (max-width: 480px) {
  .silent-disco-hero {
    min-height: 86vh;
    padding: var(--spacing-3xl) 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .visual-chip,
  .headphone-ring,
  .audio-beam,
  .silent-disco-hero .hero-layer,
  .audio-spectrum::before {
    animation: none !important;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
    padding: var(--spacing-3xl) var(--spacing-md);
  }

  .hero .container {
    padding: var(--spacing-3xl) var(--spacing-md);
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero p {
    font-size: var(--font-size-base);
    max-width: 100%;
  }
}

.afro-home-banner {
  padding: var(--spacing-4xl) var(--spacing-xl);
  color: white;
  background-image: url('../assets/images/YOUR-BORDER-IMAGE.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.afro-home-banner .afro-banner-inner {
  min-height: 78vh;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  background: linear-gradient(180deg, rgba(7,8,20,0.30), rgba(7,8,20,0.30)), url('../assets/images/IMG_1427.JPG');
  background-size: cover;
  background-position: center;
}

.afro-home-banner .afro-home-banner-content {
  padding: var(--spacing-4xl) var(--spacing-lg);
  background: rgba(12, 10, 21, 0.32);
  backdrop-filter: blur(6px);
  margin: 0 auto;
  max-width: 760px;
  text-align: center;
}

.silent-disco-banner {
  padding: var(--spacing-4xl) var(--spacing-xl);
  background-image: url('../assets/images/YOUR-BORDER-IMAGE.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.silent-disco-banner-inner {
  position: relative;
  min-height: 55vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(7,8,20,0.72), rgba(7,8,20,0.72)),
              url("../assets/images/SILENTDISCO-1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: var(--spacing-5xl) var(--spacing-lg);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

@media (max-width: 768px) {
  .afro-home-banner {
    padding-left: 0;
    padding-right: 0;
    background-image: none;
  }

  .afro-home-banner .afro-banner-inner {
    max-width: none;
    margin: 0;
    border-radius: 0;
    border: none;
  }

  .silent-disco-banner {
    padding-left: 0;
    padding-right: 0;
    background-image: none;
  }

  .silent-disco-banner-inner {
    border-radius: 0;
    border: none;
  }
}

@media (max-width: 480px) {
  .afro-home-banner .afro-home-banner-content {
    padding: var(--spacing-xl) var(--spacing-md);
  }
}

.afro-home-banner-content {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.afro-home-banner .eyebrow,
.afro-home-banner h2,
.afro-home-banner p {
  color: white;
}

.afro-home-banner h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: var(--spacing-md) 0;
}

.afro-home-banner p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.6;
  opacity: 0.95;
}

@media (max-width: 480px) {
  .afro-home-banner h2 {
    font-size: 1.6rem;
    margin: 12px 0;
  }

  .afro-home-banner p {
    font-size: 0.9rem;
  }
}

.afro-home-banner .eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  margin-top: var(--spacing-2xl);
}

.hero-cta-group .btn {
  min-width: 140px;
  padding: 12px 24px;
  font-size: 0.95rem;
  box-shadow: 0 20px 50px rgba(255, 138, 0, 0.22);
}

/* Get Tickets button - black background, white text */
.afro-home-banner .hero-cta-group .btn:first-child {
  background: #1a1a1a;
  color: #ffffff;
  border: 1px solid #1a1a1a;
}

.afro-home-banner .hero-cta-group .btn:first-child:hover {
  background: #000000;
  border-color: #000000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

/* Learn More button - white background, black text */
.afro-home-banner .hero-cta-group .btn.btn-secondary {
  background: #ffffff;
  color: #000000;
  border: 1px solid #ffffff;
  box-shadow: 0 20px 50px rgba(255, 255, 255, 0.2);
}

.afro-home-banner .hero-cta-group .btn.btn-secondary:hover {
  background: #f5f5f5;
  border-color: #f5f5f5;
  box-shadow: 0 20px 50px rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero-cta-group {
    gap: 12px;
    margin-top: var(--spacing-lg);
  }

  .hero-cta-group .btn {
    min-width: 120px;
    padding: 10px 18px;
    font-size: 0.9rem;
    flex: 0 1 auto;
  }

  .hero-cta-group .btn + .btn {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: var(--spacing-2xl);
    width: 100%;
    padding: 0 var(--spacing-md);
  }

  /* Get Tickets text-only style on mobile */
  .afro-home-banner .hero-cta-group .btn:first-child {
    background: transparent;
    color: #ffffff;
    border: none;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 0;
    min-width: auto;
    box-shadow: none;
  }

  .afro-home-banner .hero-cta-group .btn:first-child:hover {
    background: transparent;
    transform: none;
    box-shadow: none;
    opacity: 0.9;
  }

  .about-teaser {
    padding: var(--spacing-4xl) var(--spacing-md);
    margin: var(--spacing-4xl) var(--spacing-md) 0;
  }

  .about-teaser .btn {
    width: 100%;
    max-width: 320px;
  }
}

  /* Learn More button - prominent on mobile */
  .afro-home-banner .hero-cta-group .btn.btn-secondary {
    min-width: 240px;
    max-width: 280px;
    width: 100%;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 28px;
    background: #ffffff;
    color: #000000;
    border: none;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  }

  .afro-home-banner .hero-cta-group .btn.btn-secondary:hover {
    background: #f5f5f5;
    border-color: transparent;
    box-shadow: 0 14px 45px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
  }
}

.afro-page-hero,
.afro-event-header,
.gallery-preview-section,
.gallery-grid-section,
.newsletter-section {
  padding: var(--spacing-4xl) var(--spacing-lg);
}

.afro-page-hero {
  background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.65)), url('../assets/images/IMG_1427.JPG');
  background-size: cover;
  background-position: center;
  color: white;
}

.afro-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.afro-page-hero .eyebrow,
.afro-page-hero h1,
.afro-page-hero p {
  color: white;
}

.afro-page-hero h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  margin: var(--spacing-xl) 0;
}

.afro-event-header,
.gallery-preview-section,
.gallery-grid-section,
.newsletter-section {
  background-color: var(--color-background);
}

.afro-event-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-3xl);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

.afro-event-header .event-header-copy,
.afro-event-header .event-header-actions {
  width: 100%;
  max-width: 900px;
}

.afro-event-header .event-header-actions {
  display: flex;
  justify-content: center;
  align-items: center;
}

.event-header-copy {
  max-width: 720px;
  margin: 0 auto;
}

.event-header-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  justify-content: center;
}

.section-title {
  max-width: 1000px;
  margin: 0 auto var(--spacing-xl);
  text-align: center;
}

.preview-carousel {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  overflow: hidden;
  padding: var(--spacing-md) 0;
}

.carousel-window {
  overflow: hidden;
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(255,107,0,0.3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
}

.carousel-track {
  display: flex;
  gap: var(--spacing-md);
  transition: transform 0.6s ease;
  width: max-content;
  padding: var(--spacing-md);
}

.preview-card {
  position: relative;
  width: 240px;
  height: 180px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--color-background-light);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.preview-card img,
.preview-card .carousel-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-card-label,
.gallery-card-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.carousel-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  color: var(--color-text-light);
  background: repeating-linear-gradient(45deg, #222 0 10px, #1a1a1a 10px 20px);
}

.carousel-control {
  border: none;
  background: linear-gradient(135deg, #ff6f00, #ff9800);
  color: white;
  border-radius: 9999px;
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255,107,0.4);
}

.gallery-slideshow-section {
  padding: var(--spacing-4xl) 0;
}

.gallery-slideshow {
  position: relative;
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
}

.gallery-slideshow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.02));
  pointer-events: none;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: grid;
  place-items: center;
  background-color: rgba(0, 0, 0, 0.08);
}

.gallery-slide.active {
  opacity: 1;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.02);
}

.gallery-slide .gallery-card-label {
  left: var(--spacing-md);
  bottom: var(--spacing-md);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--spacing-lg);
}

.gallery-card,
.video-card {
  position: relative;
  min-height: 260px;
  background-color: var(--color-background-light);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.gallery-card img,
.video-card iframe,
.video-card .video-embed {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-weight: var(--font-weight-bold);
  padding: var(--spacing-md);
  text-align: center;
  min-height: 260px;
  width: 100%;
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
}

.video-embed {
  width: 100%;
  height: 100%;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--spacing-md);
  max-width: 860px;
  margin: 0 auto;
}

.newsletter-form input,
.newsletter-form button {
  min-height: 56px;
}

.newsletter-feedback {
  margin-top: var(--spacing-md);
  text-align: center;
  color: var(--color-text);
}

.btn-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 900px) {
  .afro-event-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .preview-card {
    min-width: 180px;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .afro-page-hero,
  .afro-event-header,
  .gallery-preview-section,
  .gallery-grid-section,

/* Silent Disco club UI additions */
.club-access-panel { margin: 18px 0; display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.club-access-status { color: rgba(255,255,255,0.9); font-size:0.95rem; }
.club-access-status.club-status-valid { color: var(--color-primary-light); }
.club-access-actions { display:flex; gap:8px; }
.club-status { margin-top:8px; font-size:0.95rem; color:rgba(255,255,255,0.85); }
.club-status.club-status-error { color: #ff6b6b; }
.club-status.club-status-success { color: #6be66b; }
.club-review-list { margin-top:12px; display:grid; gap:10px; }
.club-review-item { padding:10px; background:rgba(255,255,255,0.02); border:1px solid rgba(255,255,255,0.04); border-radius:8px; }
.club-review-rating { color: #ffd166; margin-left:8px; }
.club-empty { color: rgba(255,255,255,0.6); }

/* Avatar preview (left and right) */
.avatar-preview, .avatar-preview-side {
  width: 140px;
  height: 140px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.3));
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 12px;
}
.avatar-preview.has-avatar, .avatar-preview-side.has-avatar { box-shadow: 0 10px 30px rgba(0,0,0,0.36); }

/* More contrast for avatar selectors */
.avatar-builder-controls label { display:block; margin-bottom:6px; color: #ffffff; font-weight:700; }
/* Ensure select controls and their options are readable against any dropdown background */
.avatar-builder-controls select {
  background: #000000 !important;
  color: #ffffff !important; /* white text in select control */
  border: 1px solid rgba(255,255,255,0.12);
  padding:10px 12px;
  border-radius:10px;
  min-width: 160px;
}
.avatar-builder-controls select:focus { outline: none; box-shadow: 0 0 0 6px rgba(255,138,0,0.08); border-color: var(--color-primary-light); }
/* Native dropdown option styling (best-effort across browsers) */
.avatar-builder-controls select option {
  color: #ffffff !important;
  background: #000000 !important;
}

/* Stronger cross-browser rules for select contrast */
.avatar-builder-controls select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: #000000 !important;
}
.avatar-builder-controls select option {
  color: #ffffff !important;
  background: #000000 !important;
}
/* Fallback arrow for custom appearance */
.avatar-builder-controls .select-wrapper { position: relative; display: inline-block; }
.avatar-builder-controls .select-wrapper::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid rgba(255,255,255,0.85);
  border-bottom: 2px solid rgba(255,255,255,0.85);
  pointer-events: none;
}

/* Visible display for the custom select */
.avatar-builder-controls .select-display {
  display: inline-block;
  background: #000000;
  color: #ffffff;
  padding: 10px 12px;
  border-radius: 10px;
  min-width: 160px;
  box-sizing: border-box;
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
}
.avatar-builder-controls .select-wrapper { position: relative; }
.avatar-builder-controls select { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; z-index: 2; cursor: pointer; }

/* Silent Disco spacing improvements */
.silent-disco-container { display:flex; gap: 48px; align-items: flex-start; }
.silent-disco-copy { flex: 1 1 48%; }
.silent-disco-visuals { flex: 1 1 48%; }
.silence-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 0 !important; padding: 28px !important; padding-top: 18px; padding-bottom: 18px; border-radius: 18px; background: linear-gradient(180deg, rgba(0,0,0,0.03), rgba(0,0,0,0.02)); }
.ticket-placeholder { margin-top: 18px; }

/* Safety spacing: ensure cards have breathing room and container padding */
.silence-card { margin: 20px 32px !important; background-clip: padding-box; z-index: 2; box-shadow: 0 48px 140px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.08); background: linear-gradient(180deg, rgba(10,10,14,0.98), rgba(12,12,18,0.96)); }
.silent-disco-details .container { padding-left: 28px; padding-right: 28px; }

/* Club layout spacing */
.club-venue-grid { display:grid; grid-template-columns: 1fr 420px; gap: 22px; align-items: start; margin-top: 18px; }
.club-booking-card, .club-review-card { background: rgba(255,255,255,0.02); padding: 18px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.04); margin-bottom: 18px; }
.club-access-panel { display:flex; gap:12px; align-items:center; margin-top:18px; }

@media (max-width: 900px) {
  .silent-disco-container { flex-direction: column; }
  .club-venue-grid { grid-template-columns: 1fr; }
}
  .newsletter-section {
    padding: var(--spacing-2xl) var(--spacing-md);
  }
}

/* Reduce footer height on small screens */
@media (max-width: 680px) {
  footer.site-footer {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  footer.site-footer .footer-inner {
    gap: 12px;
    flex-direction: column;
    align-items: stretch;
  }
  footer.site-footer .footer-links {
    justify-content: center;
    width: 100%;
  }
}

/* ==============================
   MOBILE UX UTILITIES
   General mobile-first adjustments to improve touch targets,
   collapse complex grids, and reduce heavy shadows on phones.
   ============================== */

@media (max-width: 680px) {
  .container { padding-left: var(--spacing-md); padding-right: var(--spacing-md); }
  .grid, .grid-4, .dashboard-grid { grid-template-columns: 1fr !important; }
  .account-grid { grid-template-columns: 1fr !important; }
  .hero { min-height: 50vh; }
  .btn { width: 100%; padding: 14px 18px; font-size: 1rem; border-radius: 12px; }
  .btn + .btn { margin-top: 12px; }
  .preview-card { width: 100%; height: auto; min-height: 160px; }
  img, .preview-card img, .gallery-card img, .video-card iframe { max-width: 100%; height: auto; display: block; }
  .carousel-control { width: 44px; height: 44px; }
  .booking-card .card-inner { box-shadow: none; }
  .mobile-nav a { padding: 14px 8px; font-size: 1.05rem; }
  .navbar-toggle { width: 54px; height: 54px; font-size: 1.25rem; }
  .mobile-menu-panel { width: calc(100% - 32px); max-width: 520px; padding: var(--spacing-lg); border-radius: 14px; }
  body { -webkit-tap-highlight-color: rgba(0,0,0,0.02); }
  .card-front, .card-back, .summary-card-large { box-shadow: none; }
}

/* Slightly reduce heavy motion on small devices */
@media (max-width: 480px) {
  * { transition-duration: 180ms !important; }
  .booking-card:hover { transform: none; }
}


/* ABOUT TEASER */
.about-teaser {
  width: 100%;
  max-width: none;
  padding: var(--spacing-5xl) 0;
  background: linear-gradient(180deg, rgba(19,16,26,0.96), rgba(19,16,26,0.98));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.16);
  margin: var(--spacing-4xl) 0 0;
}

.about-teaser-content {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.about-teaser h2 {
  margin-bottom: var(--spacing-lg);
  color: var(--color-primary-light);
}

.about-teaser p {
  font-size: var(--font-size-lg);
  max-width: 760px;
  margin: 0 auto var(--spacing-2xl);
  color: var(--color-text-light);
}

.about-teaser .btn {
  min-width: 220px;
  padding: 14px 36px;
  border-radius: 28px;
  background: var(--color-primary);
  color: #090712;
  border: 1px solid transparent;
}

.about-teaser .btn:hover {
  background: var(--color-primary-light);
}

/* FEATURED PRODUCTS SECTION */
.featured-section {
  padding: var(--spacing-3xl) var(--spacing-lg);
}

.featured-section h2 {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.featured-grid {
  max-width: 1200px;
  margin: 0 auto;
}

/* SERVICES GRID */
.services-section {
  padding: var(--spacing-3xl) var(--spacing-lg);
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-heading {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

@media (max-width: 768px) {
  .services-section {
    padding: var(--spacing-2xl) var(--spacing-lg);
  }

  .services-heading {
    margin-bottom: var(--spacing-lg);
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: var(--spacing-lg) var(--spacing-md);
  }

  .services-heading {
    margin-bottom: var(--spacing-md);
    font-size: 1.8rem;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
}

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--color-text);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  will-change: transform;
}

.service-card:hover {
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  transform: translateY(-10px);
  border-color: rgba(255,255,255,0.16);
}

.service-card-img {
  width: 100%;
  height: 250px;
  background-color: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-2xl);
  overflow: hidden;
  object-fit: cover;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card-body {
  padding: var(--spacing-lg);
}

.service-card-title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-md);
  color: var(--color-primary);
  word-break: break-word;
}

.service-card-price {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
}

.service-card-description {
  font-size: var(--font-size-sm);
  color: var(--color-primary);
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
  word-break: break-word;
}

.service-card-footer {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

@media (max-width: 768px) {
  .service-card-img {
    height: 200px;
  }

  .service-card-body {
    padding: var(--spacing-md);
  }
}

@media (max-width: 480px) {
  .service-card-img {
    height: 160px;
  }

  .service-card-body {
    padding: var(--spacing-sm);
  }

  .service-card-title {
    font-size: var(--font-size-md);
    margin-bottom: 8px;
  }

  .service-card-price {
    font-size: var(--font-size-md);
  }

  .service-card-description {
    font-size: var(--font-size-sm);
    margin-bottom: 8px;
  }
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--spacing-xl);
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: var(--spacing-lg);
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
}

/* SHOP GRID */
.shop-section {
  padding: var(--spacing-3xl) var(--spacing-lg);
}

.shop-container {
  max-width: 1200px;
  margin: 0 auto;
}

.shop-heading {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--spacing-xl);
}

@media (max-width: 768px) {
  .shop-section {
    padding: var(--spacing-2xl) var(--spacing-lg);
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: var(--spacing-lg);
  }
}

@media (max-width: 480px) {
  .shop-section {
    padding: var(--spacing-lg) var(--spacing-md);
  }

  .shop-heading {
    margin-bottom: var(--spacing-lg);
    font-size: 1.8rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
}

.product-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--color-text);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  will-change: transform;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.16);
}

.product-card-img {
  width: 100%;
  height: 220px;
  background-color: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card-body {
  padding: var(--spacing-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-card-title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-md);
  color: var(--color-primary);
  word-break: break-word;
}

.product-card-price {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
}

.quantity-selector button {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: var(--radius-sm);
  font-size: var(--font-size-lg);
  flex-shrink: 0;
}

.quantity-selector input {
  width: 60px;
  text-align: center;
  font-size: var(--font-size-base);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .product-card-img {
    height: 180px;
  }

  .product-card-body {
    padding: var(--spacing-md);
  }
}

@media (max-width: 480px) {
  .product-card-img {
    height: 150px;
  }

  .product-card-body {
    padding: var(--spacing-sm);
  }

  .product-card-title {
    font-size: var(--font-size-md);
    margin-bottom: 6px;
  }

  .product-card-price {
    font-size: var(--font-size-md);
    margin-bottom: 6px;
  }

  .quantity-selector {
    margin-bottom: 8px;
  }

  .quantity-selector button {
    width: 32px;
    height: 32px;
    font-size: var(--font-size-base);
  }

  .quantity-selector input {
    width: 50px;
  }
}

/* ABOUT PAGE */
.about-section {
  padding: var(--spacing-3xl) var(--spacing-lg);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Homepage background when active */
body.home-background {
  background-color: var(--color-primary);
  color: var(--color-background);
}

/* Footer quick links */
.site-footer {
  background: rgba(9, 7, 18, 0.96);
  color: var(--color-text-light);
  padding: 2.2rem 0 1.8rem;
  min-height: 140px;
  display: flex;
  align-items: center;
}

@media (max-width: 480px) {
  .site-footer {
    min-height: 120px;
    padding: 1.2rem 0 1rem;
  }
}
.site-footer .site-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
}
.site-footer .footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.site-footer .footer-links a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 600;
}
.site-footer .footer-links a:hover {
  color: var(--color-primary-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

.about-image {
  width: 100%;
  height: 400px;
  background-color: var(--color-background-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text h2 {
  margin-bottom: var(--spacing-lg);
}

.about-text p {
  margin-bottom: var(--spacing-lg);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    height: 300px;
  }
}

/* CONTACT PAGE */
.contact-section {
  padding: var(--spacing-3xl) var(--spacing-lg);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--spacing-3xl);
}

.contact-header .eyebrow {
  display: inline-block;
  margin-bottom: var(--spacing-sm);
  color: var(--color-primary);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: var(--font-size-sm);
}

.contact-header h1 {
  margin: var(--spacing-md) 0;
  font-size: var(--font-size-3xl);
}

.contact-header p {
  color: var(--color-text-light);
  max-width: 680px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: var(--spacing-3xl);
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  padding: var(--spacing-lg);
}

.sidebar-head h3 {
  margin-bottom: var(--spacing-sm);
}

.sidebar-head p {
  color: var(--color-text-light);
  line-height: 1.75;
}

.contact-info-item {
  margin-bottom: var(--spacing-xl);
}

.contact-info-label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: var(--font-weight-bold);
}

.contact-card {
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.contact-card-header h3 {
  margin-bottom: var(--spacing-sm);
}

.contact-card-header p {
  color: var(--color-text-light);
  line-height: 1.75;
}

.contact-form {
  display: grid;
  gap: var(--spacing-lg);
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.contact-form-group label {
  font-weight: var(--font-weight-medium);
}

.contact-form-group input,
.contact-form-group textarea {
  width: 100%;
  padding: var(--spacing-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  background: var(--color-background);
}

.contact-form-group textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(45, 96, 250, 0.12);
}

.alert {
  border-radius: var(--radius-sm);
  padding: var(--spacing-lg);
  color: white;
  display: none;
}

.alert.show {
  display: block;
  animation: fadeInDown 0.32s ease-out;
}

.alert.success-message {
  background-color: var(--color-success);
}

.contact-note {
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
  line-height: 1.75;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* AUTH PAGE */
.auth-page {
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
  padding: var(--spacing-3xl) var(--spacing-lg);
}

.auth-container {
  max-width: 840px;
  margin: 0 auto;
}

.auth-card {
  padding: var(--spacing-3xl);
  gap: var(--spacing-3xl);
}

.auth-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--spacing-lg);
}

.auth-top .eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-primary);
  font-size: var(--font-size-sm);
  margin-bottom: var(--spacing-sm);
}

.auth-top h1 {
  margin: 0;
  font-size: var(--font-size-3xl);
}

.auth-top p {
  color: var(--color-text-light);
  max-width: 560px;
  margin-top: var(--spacing-sm);
}

.auth-switcher {
  display: flex;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: var(--color-background-light);
  overflow: hidden;
}

.auth-switch {
  flex: 1;
  padding: var(--spacing-sm) var(--spacing-md);
  border: none;
  background: transparent;
  color: var(--color-text);
  font-weight: var(--font-weight-bold);
  cursor: pointer;
  transition: background var(--transition-base), color var(--transition-base);
}

.auth-switch.active {
  background: var(--color-primary);
  color: var(--color-background);
}

.auth-forms {
  display: grid;
  gap: var(--spacing-lg);
}

.auth-panel {
  display: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.auth-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.32s ease-out;
}

.auth-panel h2 {
  margin-bottom: var(--spacing-xs);
}

.auth-panel p {
  margin-bottom: var(--spacing-lg);
  color: var(--color-text-light);
}

.auth-form {
  display: grid;
  gap: var(--spacing-lg);
}

.auth-form label {
  font-weight: var(--font-weight-medium);
}

.auth-form input {
  width: 100%;
  padding: var(--spacing-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  background: var(--color-background);
  color: var(--color-text);
}

.auth-form input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255,138,51,0.12);
}

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

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-sidebar {
    order: 2;
  }
}

@media (max-width: 720px) {
  .auth-top {
    flex-direction: column;
  }
}



@media (max-width: 768px) {
  .hero {
    min-height: 100vh; /* better full-screen mobile fit */
    padding: 0 20px;   /* prevents horizontal overflow */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    overflow-x: hidden; /* kills horizontal scroll issues */
    box-sizing: border-box;
  }

  .hero h1 {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    line-height: 1.2;
    word-wrap: break-word;
  }

  .hero p {
    font-size: clamp(0.9rem, 3.5vw, 1rem);
    line-height: 1.5;
    max-width: 90%;
    margin: 0 auto;
  }

  .hero .btn {
    display: inline-block;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

/* Booking page styles and animations */
.booking-card {
  max-width: 1080px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.28);
  transition: transform 0.36s ease, box-shadow 0.36s ease;
}
.booking-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 45px 110px rgba(0, 0, 0, 0.32);
}
.booking-hero {
  display: grid;
  gap: 32px;
}
.booking-intro {
  max-width: 680px;
  margin: 0 auto 12px;
}
.booking-intro .eyebrow {
  display: inline-flex;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  margin-bottom: 18px;
}
.booking-intro h1 {
  margin-bottom: 16px;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.05;
  color: #fff;
}
.booking-intro p {
  max-width: 680px;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.8;
}
.booking-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
}
.booking-form-panel,
.booking-preview {
  background: rgba(255,255,255,0.04);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  padding: 30px;
}
.booking-form {
  display: grid;
  gap: 20px;
}
.field-group {
  display: grid;
  gap: 10px;
}
.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.booking-form label {
  display: block;
  font-weight: 700;
  color: var(--color-text-light);
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: var(--color-text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(255,255,255,0.55);
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--color-primary-light);
  background-color: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 4px rgba(255, 138, 0, 0.14);
}
.booking-summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.price-badge {
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--color-primary-light);
}
.booking-form .btn-large {
  width: 100%;
  padding: 18px 22px;
  font-size: 1rem;
  border-radius: 20px;
}
.small-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.booking-preview {
  display: grid;
  gap: 24px;
}
.card-viz {
  position: relative;
  perspective: 1400px;
  min-height: 270px;
  cursor: pointer;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.card-face {
  position: absolute;
  inset: 0;
  border-radius: 26px;
  padding: 28px;
  color: white;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.card-front {
  background: linear-gradient(135deg, #1c1a30, #3d3b66);
  z-index: 2;
}
.card-back {
  background: linear-gradient(135deg, #161528, #2d2f53);
  transform: rotateY(180deg);
}
.card-face.anim {
  transform: translateY(-6px) rotateX(6deg);
  box-shadow: 0 32px 90px rgba(0,0,0,0.22);
}
.card-viz.flip .card-front { transform: rotateY(180deg); }
.card-viz.flip .card-back { transform: rotateY(360deg); }
.card-viz.flip .card-face {
  box-shadow: 0 32px 100px rgba(0,0,0,0.24);
}
.card-top {
  display: flex;
  justify-content: space-between;

/* ============================================
   ACCOUNT PAGE STYLES
   ============================================ */

.account-page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.account-section {
  padding: var(--spacing-3xl) 0;
  flex: 1;
}

.account-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.dashboard-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
}

.summary-card {
  background: linear-gradient(135deg, rgba(255,138,0,0.16), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 16px;
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.summary-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.summary-card strong {
  font-size: 1.6rem;
  color: #fff;
}

.account-container > h2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-3xl);
  color: #fff;
}

.account-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
}

.account-left,
.account-right {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2xl);
}

.profile-box,
.bookings-box,
.purchases-box,
.upcoming-services-box,
.booking-info-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: var(--spacing-2xl);
}

.profile-box h3,
.bookings-box h3,
.purchases-box h3,
.upcoming-services-box h3,
.booking-info-box h3 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-lg);
  color: #fff;
}

.profile-box p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-lg);
  word-break: break-all;
}

#profile-email {
  font-family: 'Courier New', monospace;
  background: rgba(255, 138, 0, 0.1);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.95rem;
}

.booking-card,
.purchase-card,
.upcoming-service-card {
  background: rgba(255, 138, 0, 0.05);
  border: 1px solid rgba(255, 138, 0, 0.2);
  border-radius: 12px;
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  cursor: pointer;
  transition: all 0.25s ease;
}

.booking-card:hover,
.purchase-card:hover,
.upcoming-service-card:hover {
  background: rgba(255, 138, 0, 0.1);
  border-color: rgba(255, 138, 0, 0.4);
  transform: translateY(-2px);
}

.booking-row,
.purchase-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.booking-row strong,
.purchase-row strong {
  color: #fff;
  font-weight: 600;
}

.booking-status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
}

.booking-status.pending {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
}

.booking-status.cancelled {
  background: rgba(244, 67, 54, 0.2);
  color: #f44336;
}

.upcoming-service-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255, 180, 100, 0.08);
  border: 1px solid rgba(255, 180, 100, 0.2);
}

/* Account page layout improvements */
.account-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: var(--spacing-3xl) var(--spacing-lg);
}

.dashboard-summary {
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
  align-items: center;
}
.summary-card {
  background: rgba(255,255,255,0.03);
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 120px;
}
.summary-label { font-size: 0.9rem; opacity: 0.85; }
.summary-card strong { font-size: 1.25rem; margin-top:6px; }

.account-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 20px;
  align-items: start;
}

.account-left, .account-right { width: 100%; }

.profile-box, .bookings-box, .purchases-box, .upcoming-services-box, .booking-info-box {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.04);
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.account-section h2 { font-size: 1.8rem; margin-bottom: 8px; }
.account-section h3 { font-size: 1.15rem; margin: 0 0 10px 0; }

@media (max-width: 900px) {
  .account-grid { grid-template-columns: 1fr; }
  .dashboard-summary { justify-content: space-between; }
}

/* Big dashboard card grid */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: 100%;
  margin-bottom: 18px;
}

.summary-card-large {
  display:flex;
  gap:14px;
  align-items:center;
  padding:18px;
  border-radius:16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.summary-card-large:hover { transform: translateY(-6px); box-shadow: 0 18px 36px rgba(0,0,0,0.45); }

.summary-icon {
  width:56px; height:56px; border-radius:12px; display:grid; place-items:center; font-size:26px;
  background: linear-gradient(135deg, rgba(255,138,0,0.18), rgba(255,180,100,0.06));
}
.summary-body { display:flex; flex-direction:column; }
.summary-label { font-size:0.95rem; color:rgba(255,255,255,0.85); }
.summary-count { font-size:1.6rem; font-weight:700; margin-top:4px; }
.summary-desc { font-size:0.85rem; color:rgba(255,255,255,0.7); margin-top:6px; }

@media (max-width: 900px) {
  .dashboard-grid { grid-template-columns: 1fr; }
  .summary-card-large { padding:14px; }
  .summary-icon { width:48px; height:48px; font-size:20px; }
}

/* Loading spinner */
.spinner {
  display: inline-block;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  position: relative;
}
.spinner span {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border: 4px solid rgba(255,255,255,0.12);
  border-top-color: rgba(255,138,0,0.95);
  border-radius: 50%;
  animation: spinner-rotate 1s linear infinite;
}
@keyframes spinner-rotate {
  to { transform: rotate(360deg); }
}

/* Card enter animation */
.card-enter {
  animation: card-enter 420ms cubic-bezier(.22,.9,.36,1) both;
  opacity: 0;
  transform-origin: center top;
}
@keyframes card-enter {
  0% { opacity: 0; transform: translateY(12px) scale(0.995); }
  60% { opacity: 1; transform: translateY(-4px) scale(1.002); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.loading-row {
  display:flex; align-items:center; gap:12px; color:rgba(255,255,255,0.9);
}

/* Skeleton card */
.skeleton-list { display: grid; gap:12px; }
.skeleton-card {
  height: 86px;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.01) 50%, rgba(255,255,255,0.03) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.2s linear infinite;
  display:flex; align-items:center; padding:12px; gap:12px;
}

.skeleton-avatar { flex: 0 0 56px; height:56px; border-radius:10px; background:linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)); }
.skeleton-body { flex:1; display:flex; flex-direction:column; gap:8px; }
.skeleton-line { height:12px; border-radius:6px; background:rgba(255,255,255,0.05); }
.skeleton-line.small { width:30%; }
.skeleton-line.mid { width:60%; }
.skeleton-line.large { width:85%; }
.skeleton-badge { width:64px; height:20px; border-radius:10px; background:rgba(255,138,0,0.14); align-self:flex-start }
@keyframes skeleton-shimmer { 0% { background-position: 200% 0 } 100% { background-position: -200% 0 } }

/* Booking card flip */
.booking-card { perspective: 1200px; transform-style: preserve-3d; transition: transform 260ms ease, box-shadow 260ms ease; }
.booking-card:hover { transform: translateY(-6px) rotateX(3deg) rotateY(-4deg); }
.booking-card .card-inner { transition: transform 420ms cubic-bezier(.22,.9,.36,1); transform-style: preserve-3d; position: relative; box-shadow: 0 8px 20px rgba(0,0,0,0.28); border-radius: 12px; overflow: hidden; }
.booking-card .card-front, .booking-card .card-back { backface-visibility: hidden; position: relative; min-height: 86px; padding:12px; background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); }
.booking-card .card-back { position: absolute; inset: 0; transform: rotateY(180deg); box-shadow: inset 0 1px 0 rgba(255,255,255,0.02); }
.booking-card.is-flipped .card-inner { transform: rotateY(180deg); box-shadow: 0 30px 80px rgba(0,0,0,0.48); }
.booking-card .card-inner::after { content: ''; position: absolute; inset: 0; pointer-events: none; box-shadow: 0 12px 40px rgba(0,0,0,0.24); opacity:0.9; }

.card-front { z-index: 2; }
.card-back { z-index: 1; transform: rotateY(180deg); }

.booking-back-content { padding: 12px; color: rgba(255,255,255,0.95); display:flex; flex-direction:column; gap:8px; }
.booking-back-actions { display:flex; gap:8px; margin-top:8px; }
.booking-action { display:inline-flex; align-items:center; gap:8px; padding:8px 10px; border-radius:8px; background:rgba(255,138,0,0.12); color: #fff; cursor:pointer; border:1px solid rgba(255,138,0,0.12); }
.booking-action.secondary { background: transparent; border:1px solid rgba(255,255,255,0.06); }
.booking-action.disabled { opacity:0.45; pointer-events:none; }

.booking-back-content { padding: 12px; color: rgba(255,255,255,0.95); }
.booking-action { margin-top:10px; display:inline-block; padding:6px 10px; border-radius:8px; background:rgba(255,138,0,0.12); color: #fff; cursor:pointer; }

/* Dashboard card expanded area */
.summary-card-large .expanded-list { margin-top:12px; max-height:0; overflow:hidden; transition: max-height 360ms ease, opacity 240ms ease; opacity:0; }
.summary-card-large.expanded .expanded-list { max-height: 320px; opacity:1; }
.expanded-item { padding:8px 0; border-bottom:1px dashed rgba(255,255,255,0.04); font-size:0.9rem; color:rgba(255,255,255,0.9); }

/* small highlight pulse when booking updated */
.highlight-pulse { animation: pulse-highlight 900ms ease; }
@keyframes pulse-highlight { 0% { box-shadow: 0 0 0 0 rgba(255,138,0,0.28);} 70% { box-shadow: 0 0 0 12px rgba(255,138,0,0);} 100% { box-shadow: none; } }

.service-date {
  font-size: 0.85rem;
  color: rgba(255, 180, 100, 0.8);
  font-weight: 600;
}

.service-name {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
}

.service-location {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.service-price {
  font-size: 1rem;
  color: #ff8a00;
  font-weight: 700;
  margin-top: 4px;
}

.booking-detail {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-detail h4 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 8px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.detail-row span {
  color: rgba(255, 255, 255, 0.6);
}

.detail-row strong {
  color: #fff;
  font-weight: 600;
}

#signout-btn {
  align-self: flex-start;
}

/* ============================================
   ACCOUNT PAGE MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .account-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }

  .dashboard-summary {
    grid-template-columns: 1fr;
  }

  .account-container > h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .account-section {
    padding: var(--spacing-2xl) 0;
  }

  .account-container {
    padding: 0 var(--spacing-md);
  }

  .account-container > h2 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-2xl);
  }

  .profile-box,
  .bookings-box,
  .purchases-box,
  .upcoming-services-box,
  .booking-info-box {
    padding: var(--spacing-lg);
  }

  .booking-card,
  .purchase-card,
  .upcoming-service-card {
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
  }
}
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 12px;
}
.card-chip {
  width: 64px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffd166, #ff9800);
  box-shadow: inset 0 6px 15px rgba(0,0,0,0.15);
}
.card-brand {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.88);
}
.card-number {
  font-size: 1.2rem;
  letter-spacing: 0.22em;
  margin-bottom: 30px;
  word-break: break-all;
  overflow-wrap: break-word;
}
.card-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.card-meta span {
  display: block;
  color: rgba(255,255,255,0.78);
  font-size: 0.8rem;
  margin-bottom: 6px;
}
.card-meta strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.magnetic-strip {
  height: 54px;
  background: linear-gradient(90deg, rgba(0,0,0,0.9), rgba(0,0,0,0.6));
  border-radius: 10px;
  margin-bottom: 26px;
}
.signature-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}
.signature-box {
  min-width: 140px;
  min-height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.14);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.cvv-block {
  text-align: right;
}
.cvv-block div {
  margin-top: 10px;
  font-size: 1rem;
  letter-spacing: 0.25em;
}
.card-focus {
  box-shadow: 0 0 0 4px rgba(255, 145, 0, 0.18);
}
.booking-details-panel h2 {
  margin: 0 0 20px;
  font-size: 1.35rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.summary-row:last-child { border-bottom: none; }
.summary-row span { color: rgba(255,255,255,0.68); }
.summary-row strong { color: #fff; }
.booking-form.submitting { opacity: 0.7; transform: scale(0.995); }
.booking-form.submitted { animation: bookingSuccess 0.9s ease forwards; }
@keyframes bookingSuccess {
  0% { transform: scale(1); }
  40% { transform: scale(1.02); }
  100% { transform: scale(1); }
}
.btn { transition: transform 0.12s ease, box-shadow 0.12s ease; }
.btn:active { transform: translateY(1px); }

@media (max-width: 960px) {
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .field-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .booking-card {
    padding: 22px;
    border-radius: 20px;
  }

  .booking-intro h1 {
    font-size: 2rem;
  }

  .booking-form-panel,
  .booking-preview {
    padding: 22px;
  }

  .booking-grid {
    gap: 20px;
  }

  .field-row {
    gap: 14px;
  }

  .booking-summary-line {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .card-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .card-meta {
    grid-template-columns: 1fr;
  }

  .signature-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .card-viz {
    min-height: 220px;
  }
}

@media (max-width: 480px) {
  .booking-card {
    padding: 16px;
    border-radius: 16px;
  }

  .booking-intro h1 {
    font-size: 1.6rem;
  }

  .booking-form-panel,
  .booking-preview {
    padding: 16px;
  }

  .card-viz {
    min-height: 180px;
  }

  .card-face {
    padding: 16px;
  }

  .card-top {
    margin-bottom: 20px;
  }

  .card-chip {
    width: 48px;
    height: 32px;
  }

  .card-brand {
    font-size: 1rem;
  }

  .card-number {
    font-size: 0.95rem;
    margin-bottom: 16px;
    letter-spacing: 0.12em;
  }

  .card-meta {
    gap: 12px;
  }

  .card-meta span {
    font-size: 0.7rem;
    margin-bottom: 4px;
  }

  .card-meta strong {
    font-size: 0.85rem;
  }

  .magnetic-strip {
    height: 36px;
    margin-bottom: 16px;
  }

  .signature-box {
    min-width: 100px;
    min-height: 32px;
    font-size: 0.8rem;
  }

  .booking-details-panel {
    margin-top: 20px;
  }
}
