/* ============================================
   MOVARICOLLECTIVE.INK — ELECTRIC NIGHT PULSE
   Design System & Global Styles
   ============================================ */

/* ---- Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --bg-primary: #050505;
  --bg-secondary: #0f0f0f;
  --neon-red: #ff0000;
  --fire-orange: #ff6a00;
  --electric-yellow: #ffcc00;
  --gold-glow: #facc15;
  --white: #ffffff;
  --white-soft: rgba(255,255,255,0.85);
  --white-muted: rgba(255,255,255,0.55);
  --glass-bg: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.15);
  --glass-blur: 20px;
  --gradient-fire: linear-gradient(135deg, #ff0000, #ff6a00, #ffcc00);
  --gradient-fire-r: linear-gradient(135deg, #ffcc00, #ff6a00, #ff0000);
  --sidebar-collapsed: 75px;
  --sidebar-expanded: 230px;
  --font-heading: 'Bebas Neue', 'Oswald', sans-serif;
  --font-body: 'Inter', 'Poppins', sans-serif;
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ---- Reset ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--neon-red) var(--bg-primary);
}

html::-webkit-scrollbar {
  width: 8px;
}
html::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
html::-webkit-scrollbar-thumb {
  background: var(--gradient-fire);
  border-radius: 4px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--white-soft);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

/* ---- Scroll Progress Bar ---- */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient-fire);
  z-index: 10000;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px var(--neon-red), 0 0 20px var(--fire-orange);
}

/* ---- Cursor Glow ---- */
#cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,0,0,0.08) 0%, rgba(255,106,0,0.04) 40%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}
body:hover #cursor-glow {
  opacity: 1;
}

/* ---- Smoke Overlay ---- */
#smoke-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,0,0,0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255,106,0,0.02) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(255,204,0,0.02) 0%, transparent 50%);
  animation: smokeFloat 20s ease-in-out infinite alternate;
}

@keyframes smokeFloat {
  0% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-20px) scale(1.05); opacity: 0.4; }
  100% { transform: translateY(10px) scale(0.98); opacity: 0.25; }
}

/* ---- Light Streaks ---- */
.light-streak {
  position: fixed;
  width: 2px;
  height: 100vh;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  animation: lightSweep 8s ease-in-out infinite;
}
.light-streak:nth-child(1) {
  left: 20%;
  background: linear-gradient(to bottom, transparent, var(--neon-red), transparent);
  animation-delay: 0s;
  animation-duration: 8s;
}
.light-streak:nth-child(2) {
  left: 50%;
  background: linear-gradient(to bottom, transparent, var(--fire-orange), transparent);
  animation-delay: 3s;
  animation-duration: 10s;
}
.light-streak:nth-child(3) {
  left: 75%;
  background: linear-gradient(to bottom, transparent, var(--electric-yellow), transparent);
  animation-delay: 5s;
  animation-duration: 7s;
}

@keyframes lightSweep {
  0% { opacity: 0; transform: translateX(-100px) rotate(-5deg); }
  15% { opacity: 0.15; }
  30% { opacity: 0; transform: translateX(100px) rotate(5deg); }
  100% { opacity: 0; }
}

/* ============================================
   SIDEBAR NAVIGATION
   ============================================ */
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: var(--sidebar-collapsed);
  height: 100vh;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-right: 1px solid var(--glass-border);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transition: width var(--transition-smooth);
  overflow: hidden;
}

.sidebar::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: var(--gradient-fire);
  opacity: 0.4;
  box-shadow: 0 0 15px var(--neon-red), 0 0 30px var(--fire-orange);
}

.sidebar:hover {
  width: var(--sidebar-expanded);
}

.sidebar-brand {
  padding: 20px 0;
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-brand .brand-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-fire);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--bg-primary);
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(255,0,0,0.3);
}

.sidebar-brand .brand-text {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--white);
  margin-left: 12px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition-smooth);
  letter-spacing: 0.1em;
}

.sidebar:hover .brand-text {
  opacity: 1;
  transform: translateX(0);
}

.sidebar-nav {
  flex: 1;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  padding: 14px 0;
  padding-left: 24px;
  position: relative;
  color: var(--white-muted);
  transition: var(--transition-smooth);
  border-radius: 0;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  color: var(--white);
  background: rgba(255,0,0,0.08);
}

.sidebar-nav a.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: var(--gradient-fire);
  border-radius: 0 3px 3px 0;
  box-shadow: 0 0 10px var(--neon-red), 0 0 20px var(--fire-orange);
}

.sidebar-nav a .nav-icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.sidebar-nav a .nav-label {
  margin-left: 16px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition-smooth);
  letter-spacing: 0.03em;
}

.sidebar:hover .nav-label {
  opacity: 1;
  transform: translateX(0);
}

.sidebar-social {
  padding: 20px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.sidebar-social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  font-size: 14px;
  color: var(--white-muted);
  transition: var(--transition-smooth);
}

.sidebar-social a:hover {
  background: rgba(255,0,0,0.15);
  color: var(--neon-red);
  border-color: var(--neon-red);
  box-shadow: 0 0 15px rgba(255,0,0,0.3);
}

/* ---- Mobile Menu Toggle ---- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 10001;
  width: 48px;
  height: 48px;
  background: rgba(10,10,10,0.95);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: var(--transition-smooth);
  position: relative;
}
.mobile-menu-toggle span::before,
.mobile-menu-toggle span::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: var(--transition-smooth);
}
.mobile-menu-toggle span::before { top: -7px; }
.mobile-menu-toggle span::after { top: 7px; }

.mobile-menu-toggle.active span {
  background: transparent;
}
.mobile-menu-toggle.active span::before {
  top: 0;
  transform: rotate(45deg);
  background: var(--neon-red);
}
.mobile-menu-toggle.active span::after {
  top: 0;
  transform: rotate(-45deg);
  background: var(--neon-red);
}

.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 9998;
}

/* ============================================
   MAIN CONTENT AREA
   ============================================ */
.main-content {
  margin-left: var(--sidebar-collapsed);
  min-height: 100vh;
  position: relative;
  z-index: 3;
  transition: margin-left var(--transition-smooth);
}

/* ---- Page Transition ---- */
.page-transition {
  opacity: 0;
  transform: translateY(20px);
  animation: pageEnter 0.8s ease forwards;
}

@keyframes pageEnter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(1.2);
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(to bottom, rgba(5,5,5,0.3) 0%, rgba(5,5,5,0.1) 40%, rgba(5,5,5,0.8) 80%, var(--bg-primary) 100%),
    linear-gradient(135deg, rgba(255,0,0,0.1) 0%, transparent 50%);
}

.hero-light-beam {
  position: absolute;
  top: -50%;
  width: 4px;
  height: 200%;
  pointer-events: none;
  opacity: 0.2;
  animation: heroBeam 6s ease-in-out infinite;
  z-index: 1;
}
.hero-light-beam:nth-child(2) {
  left: 30%;
  background: linear-gradient(to bottom, transparent, var(--neon-red), transparent);
  animation-delay: 0s;
}
.hero-light-beam:nth-child(3) {
  left: 55%;
  background: linear-gradient(to bottom, transparent, var(--fire-orange), transparent);
  animation-delay: 2s;
}
.hero-light-beam:nth-child(4) {
  left: 78%;
  background: linear-gradient(to bottom, transparent, var(--electric-yellow), transparent);
  animation-delay: 4s;
}

@keyframes heroBeam {
  0%, 100% { opacity: 0; transform: rotate(-8deg) translateX(0); }
  25% { opacity: 0.2; }
  50% { opacity: 0; transform: rotate(8deg) translateX(50px); }
}

.hero-content {
  position: relative;
  z-index: 5;
  padding: clamp(40px, 8vw, 120px);
  max-width: 900px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255,0,0,0.1);
  border: 1px solid rgba(255,0,0,0.3);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--neon-red);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--neon-red);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px var(--neon-red);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero h1 .gradient-text {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--white-muted);
  max-width: 600px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.6s both;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s both;
}

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

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 60px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-fire);
  color: var(--bg-primary);
  box-shadow: 0 4px 30px rgba(255,0,0,0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(255,0,0,0.5);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: 0.6s;
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--neon-red);
  background: rgba(255,0,0,0.1);
  box-shadow: 0 0 20px rgba(255,0,0,0.2);
  transform: translateY(-3px);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: clamp(60px, 10vw, 120px) clamp(20px, 5vw, 80px);
  position: relative;
}

.section-header {
  margin-bottom: clamp(40px, 6vw, 80px);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fire-orange);
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gradient-fire);
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 16px;
}

.section-header p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--white-muted);
  max-width: 600px;
}

/* ---- Glass Card ---- */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  transition: var(--transition-smooth);
  position: relative;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,0,0,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(255,0,0,0.1);
}

/* ---- Club Cards ---- */
.clubs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.club-card {
  position: relative;
}

.club-card .card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.club-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.club-card:hover .card-image img {
  transform: scale(1.08);
}

.club-card .card-image .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(5,5,5,0.9) 0%, transparent 60%);
}

.club-card .card-image .card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  background: rgba(255,0,0,0.8);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  backdrop-filter: blur(10px);
}

.club-card .card-body {
  padding: 24px;
}

.club-card .card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--fire-orange);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.club-card .card-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 10px;
}

.club-card .card-desc {
  font-size: 0.9rem;
  color: var(--white-muted);
  margin-bottom: 20px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.club-card .card-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.club-card .card-meta span {
  padding: 5px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  font-size: 11px;
  color: var(--white-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.club-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neon-red);
  transition: var(--transition-smooth);
}

.club-card .card-link:hover {
  color: var(--electric-yellow);
  gap: 14px;
}

/* ---- Music Styles Section ---- */
.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.music-card {
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.music-card .music-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,0,0,0.1);
  border: 1px solid rgba(255,0,0,0.2);
  font-size: 28px;
  transition: var(--transition-smooth);
}

.music-card:hover .music-icon {
  background: rgba(255,0,0,0.2);
  box-shadow: 0 0 30px rgba(255,0,0,0.3);
  transform: scale(1.1);
}

.music-card h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 12px;
}

.music-card p {
  font-size: 0.9rem;
  color: var(--white-muted);
  line-height: 1.7;
}

/* ---- Cities Section ---- */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.city-card {
  height: 320px;
  position: relative;
  cursor: pointer;
}

.city-card .city-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.city-card .city-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  filter: brightness(0.5);
}

.city-card:hover .city-image img {
  transform: scale(1.1);
  filter: brightness(0.6);
}

.city-card .city-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  z-index: 2;
}

.city-card .city-content h3 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 6px;
}

.city-card .city-content p {
  font-size: 0.85rem;
  color: var(--white-muted);
}

.city-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(5,5,5,0.95), transparent);
  border-radius: 0 0 20px 20px;
  pointer-events: none;
}

/* ---- Gallery Preview ---- */
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 16px;
}

.gallery-preview-grid .gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,0,0,0);
  transition: var(--transition-smooth);
}

.gallery-item:hover::after {
  background: rgba(255,0,0,0.15);
}

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.testimonial-card {
  padding: 36px;
}

.testimonial-card .stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--electric-yellow);
  font-size: 16px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--white-soft);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card .author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-fire);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--bg-primary);
  font-weight: 700;
}

.testimonial-card .author-info h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  text-transform: none;
  letter-spacing: 0;
}

.testimonial-card .author-info span {
  font-size: 0.8rem;
  color: var(--white-muted);
}

/* ---- CTA Banner ---- */
.cta-banner {
  position: relative;
  padding: clamp(60px, 10vw, 100px) clamp(20px, 5vw, 80px);
  margin: 0 clamp(16px, 3vw, 40px);
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-fire);
  opacity: 0.06;
}

.cta-banner .cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--white-muted);
  max-width: 600px;
  margin: 0 auto 36px;
}

/* ============================================
   CLUBS PAGE SPECIFIC
   ============================================ */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(100px, 15vw, 180px) clamp(20px, 5vw, 80px) clamp(60px, 8vw, 100px);
}

.page-hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25) saturate(1.3);
}

.page-hero .hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(5,5,5,0.4) 0%, var(--bg-primary) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

/* ---- Club Detail ---- */
.club-detail-hero {
  min-height: 70vh;
}

.club-info-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.club-info-main h2 {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 20px;
}

.club-info-main p {
  font-size: 1rem;
  color: var(--white-muted);
  line-height: 1.9;
  margin-bottom: 20px;
}

.club-info-sidebar .info-block {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
}

.club-info-sidebar .info-block h3 {
  font-size: 1rem;
  color: var(--fire-orange);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}

.club-info-sidebar .info-block p,
.club-info-sidebar .info-block li {
  font-size: 0.9rem;
  color: var(--white-muted);
  line-height: 1.8;
}

.club-info-sidebar .info-block ul {
  list-style: none;
}
.club-info-sidebar .info-block ul li {
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.club-info-sidebar .info-block ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--neon-red);
  font-weight: 700;
}

/* ---- Club Detail Gallery ---- */
.club-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}

.club-gallery-grid .gallery-item {
  height: 220px;
}

/* ============================================
   GALLERY PAGE — MASONRY
   ============================================ */
.masonry-grid {
  columns: 4;
  column-gap: 16px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.masonry-item:hover img {
  transform: scale(1.05);
}

.masonry-item .masonry-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.masonry-item:hover .masonry-overlay {
  background: rgba(0,0,0,0.5);
}

.masonry-item .masonry-overlay span {
  color: var(--white);
  font-size: 32px;
  opacity: 0;
  transform: scale(0.5);
  transition: var(--transition-smooth);
}

.masonry-item:hover .masonry-overlay span {
  opacity: 1;
  transform: scale(1);
}

/* ---- Lightbox ---- */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 100000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(20px);
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.lightbox-close:hover {
  background: rgba(255,0,0,0.3);
  border-color: var(--neon-red);
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.lightbox-nav:hover {
  background: rgba(255,0,0,0.3);
  border-color: var(--neon-red);
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

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

.about-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--glass-border);
  border-radius: 20px;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 24px;
}

.about-text p {
  font-size: 1rem;
  color: var(--white-muted);
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--white-muted);
  margin-top: 4px;
}

/* ---- Mission Section ---- */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.mission-card {
  padding: 36px;
}

.mission-card .mission-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.mission-card h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
}

.mission-card p {
  font-size: 0.9rem;
  color: var(--white-muted);
  line-height: 1.8;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 16px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--neon-red);
  box-shadow: 0 0 20px rgba(255,0,0,0.15);
}

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

.form-group select option {
  background: var(--bg-secondary);
}

.contact-info-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
  height: fit-content;
}

.contact-info-card h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-item .info-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,0,0,0.1);
  border: 1px solid rgba(255,0,0,0.2);
  border-radius: 12px;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 0.85rem;
  color: var(--white-muted);
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.contact-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  font-size: 18px;
  color: var(--white-muted);
  transition: var(--transition-smooth);
}

.contact-social a:hover {
  background: rgba(255,0,0,0.15);
  color: var(--neon-red);
  border-color: var(--neon-red);
  box-shadow: 0 0 20px rgba(255,0,0,0.3);
}

/* ============================================
   FAQ PAGE
   ============================================ */
.faq-list {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(255,0,0,0.2);
}

.faq-question {
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 16px;
}

.faq-question h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  text-transform: none;
  letter-spacing: 0;
  flex: 1;
}

.faq-toggle {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: var(--white-muted);
  font-size: 18px;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  background: rgba(255,0,0,0.2);
  color: var(--neon-red);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 30px 24px;
  font-size: 0.95rem;
  color: var(--white-muted);
  line-height: 1.8;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
  max-width: 800px;
}

.legal-content h2 {
  font-size: 1.5rem;
  color: var(--white);
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 0.95rem;
  color: var(--white-muted);
  line-height: 1.9;
  margin-bottom: 16px;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-content ul li {
  font-size: 0.95rem;
  color: var(--white-muted);
  line-height: 1.9;
  padding-left: 10px;
  position: relative;
}

.legal-content ul li::before {
  content: '•';
  position: absolute;
  left: -10px;
  color: var(--neon-red);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 80px) 30px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-red), var(--fire-orange), var(--electric-yellow), transparent);
  opacity: 0.5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand .footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-brand .footer-logo span {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--white-muted);
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--white-muted);
  font-size: 16px;
  transition: var(--transition-smooth);
}

.footer-social a:hover {
  background: rgba(255,0,0,0.15);
  color: var(--neon-red);
  border-color: var(--neon-red);
  box-shadow: 0 0 15px rgba(255,0,0,0.3);
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul a {
  font-size: 0.9rem;
  color: var(--white-muted);
  transition: var(--transition-smooth);
}

.footer-column ul a:hover {
  color: var(--neon-red);
  padding-left: 6px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--white-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--white-muted);
}

.footer-bottom-links a:hover {
  color: var(--neon-red);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .clubs-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
  .masonry-grid { columns: 3; }
  .gallery-preview-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-preview-grid .gallery-item:nth-child(1) { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: span 3; }
}

@media (max-width: 1024px) {
  .sidebar {
    width: var(--sidebar-collapsed);
  }
  .sidebar:hover {
    width: var(--sidebar-expanded);
  }
  .club-info-grid {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image img {
    height: 350px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .sidebar {
    width: var(--sidebar-expanded);
    transform: translateX(-100%);
    transition: transform var(--transition-smooth);
  }
  .sidebar:hover {
    width: var(--sidebar-expanded);
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .sidebar.open + .sidebar-overlay {
    display: block;
  }
  .sidebar .nav-label {
    opacity: 1 !important;
    transform: translateX(0) !important;
  }
  .sidebar .brand-text {
    opacity: 1 !important;
    transform: translateX(0) !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .main-content {
    margin-left: 0;
  }
  .hero-content {
    padding: 100px 24px 60px;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn {
    text-align: center;
    justify-content: center;
  }
  .gallery-preview-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 180px);
  }
  .gallery-preview-grid .gallery-item:nth-child(1) {
    grid-column: span 2;
  }
  .masonry-grid { columns: 2; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: span 2;
  }
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .clubs-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: clamp(40px, 8vw, 80px) clamp(16px, 4vw, 40px);
  }
  .page-hero {
    padding: 120px 24px 60px;
    min-height: 40vh;
  }
}

@media (max-width: 480px) {
  .masonry-grid { columns: 1; }
  .gallery-preview-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-preview-grid .gallery-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    height: 200px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: span 1;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .about-stats {
    grid-template-columns: 1fr;
  }
  .cities-grid {
    grid-template-columns: 1fr;
  }
  .music-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .cta-banner {
    margin: 0 16px;
    padding: 40px 24px;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { top: 10px; right: 10px; }
}