/* ============================================
   PEBBISPINJY — LUXURY NIGHTLIFE CSS
   Red & White Glossy Theme
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #050505;
  --neon-red: #dc2626;
  --deep-red: #7f1d1d;
  --white: #ffffff;
  --soft-white: #f1f5f9;
  --glass-bg: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.12);
  --glass-border-hover: rgba(255,255,255,0.25);
  --blur: 20px;
  --sidebar-width: 240px;
  --sidebar-collapsed: 80px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --glow: 0 0 20px rgba(220,38,38,0.4), 0 0 60px rgba(220,38,38,0.1);
  --glow-sm: 0 0 10px rgba(220,38,38,0.3);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--soft-white);
  font-family: 'Inter', 'Poppins', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

/* === CURSOR GLOW === */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220,38,38,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

.cursor-glow.active {
  opacity: 1;
}

/* === PARTICLES === */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--neon-red);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s infinite;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.1; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

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

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--neon-red), var(--deep-red));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: var(--glow-sm);
}

.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s;
}

.sidebar.expanded .logo-text {
  opacity: 1;
}

.sidebar-toggle {
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
}

.sidebar-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-menu {
  flex: 1;
  padding: 20px 0;
  overflow-y: auto;
}

.nav-item {
  margin: 4px 12px;
}

.nav-item a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 12px;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
}

.nav-item a:hover,
.nav-item.active a {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}

.nav-item.active a {
  background: rgba(220,38,38,0.15);
  border-color: rgba(220,38,38,0.3);
  box-shadow: var(--glow-sm);
}

.nav-item.active a::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 24px;
  background: var(--neon-red);
  border-radius: 0 3px 3px 0;
  box-shadow: 0 0 10px var(--neon-red);
}

.nav-icon {
  font-size: 20px;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.nav-label {
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s;
}

.sidebar.expanded .nav-label {
  opacity: 1;
}

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

.sidebar-social a {
  font-size: 18px;
  opacity: 0.6;
  transition: var(--transition);
}

.sidebar-social a:hover {
  opacity: 1;
  transform: scale(1.2);
}

/* === MOBILE HAMBURGER === */
.mobile-hamburger {
  display: none;
  position: fixed;
  top: 20px;
  left: 20px;
  width: 44px;
  height: 44px;
  background: rgba(5,5,5,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  z-index: 1001;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.mobile-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.mobile-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* === MAIN CONTENT === */
.main-content {
  margin-left: var(--sidebar-collapsed);
  transition: margin-left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.sidebar.expanded ~ .main-content,
.sidebar.expanded ~ * .main-content {
  margin-left: var(--sidebar-width);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.4) 0%, rgba(5,5,5,0.8) 100%);
}

.hero-smoke {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(220,38,38,0.08) 0%, transparent 60%);
  animation: smokeFloat 10s ease-in-out infinite;
}

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

/* Light Streaks */
.light-streaks {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.streak {
  position: absolute;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(220,38,38,0.3), transparent);
  animation: streakMove 4s ease-in-out infinite;
}

.streak-1 { left: 20%; animation-delay: 0s; animation-duration: 3s; }
.streak-2 { left: 45%; animation-delay: 1s; animation-duration: 5s; }
.streak-3 { left: 70%; animation-delay: 2s; animation-duration: 4s; }
.streak-4 { left: 85%; animation-delay: 0.5s; animation-duration: 6s; }

@keyframes streakMove {
  0%, 100% { opacity: 0; transform: translateY(-100%) rotate(15deg); }
  50% { opacity: 0.6; transform: translateY(0) rotate(15deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 clamp(20px, 5vw, 60px);
}

.hero-badge {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(220,38,38,0.15);
  border: 1px solid rgba(220,38,38,0.3);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--neon-red);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 100px);
  line-height: 1;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 20px;
}

.neon-text {
  color: var(--neon-red);
  text-shadow: 0 0 20px rgba(220,38,38,0.5), 0 0 40px rgba(220,38,38,0.2);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 36px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--neon-red);
  text-shadow: var(--glow-sm);
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator span {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  margin: 0 auto;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-red), var(--deep-red));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(220,38,38,0.3);
}

.btn-primary:hover {
  box-shadow: var(--glow);
  transform: translateY(-2px);
}

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

.btn-glass:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--neon-red);
  border: 1px solid rgba(220,38,38,0.4);
}

.btn-outline:hover {
  background: rgba(220,38,38,0.1);
  border-color: var(--neon-red);
  box-shadow: var(--glow-sm);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 12px;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 15px;
}

.btn-full {
  width: 100%;
}

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

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

.section-tag {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(220,38,38,0.1);
  border: 1px solid rgba(220,38,38,0.2);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--neon-red);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 16px;
}

.section-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 0 auto;
}

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

.club-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.club-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--glow-sm);
}

.club-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.club-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.club-card.featured .club-card-img {
  aspect-ratio: unset;
  min-height: 300px;
}

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

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

.club-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5,5,5,0.8) 100%);
}

.club-rating {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(5,5,5,0.8);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--glass-border);
}

.club-rating span {
  color: var(--neon-red);
}

.club-genre-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(220,38,38,0.2);
  backdrop-filter: blur(10px);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  border: 1px solid rgba(220,38,38,0.3);
}

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

.club-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 6px;
}

.club-location {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}

.club-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
  line-height: 1.6;
}

.club-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.club-tags span {
  padding: 4px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
}

/* === EXPERIENCE SECTION === */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.exp-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.exp-card:hover {
  border-color: rgba(220,38,38,0.3);
  transform: translateY(-4px);
  box-shadow: var(--glow-sm);
}

.exp-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.exp-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}

.exp-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* === CTA SECTION === */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-inner {
  background: linear-gradient(135deg, rgba(220,38,38,0.15), rgba(127,29,29,0.1));
  border: 1px solid rgba(220,38,38,0.2);
  border-radius: 30px;
  padding: clamp(40px, 6vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(220,38,38,0.1), transparent 60%);
}

.cta-inner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.cta-inner p {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto 32px;
  position: relative;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* === PAGE HERO (INNER PAGES) === */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-sm {
  height: 40vh;
  min-height: 320px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

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

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.3) 0%, rgba(5,5,5,0.85) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 7vw, 80px);
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero-content p {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto;
}

/* === CLUB DETAIL (CLUBS PAGE) === */
.clubs-detail-section {
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 80px);
}

.club-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
  align-items: center;
}

.club-detail.reverse {
  direction: rtl;
}

.club-detail.reverse > * {
  direction: ltr;
}

.club-detail-img {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.club-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 350px;
  transition: transform 0.6s;
}

.club-detail:hover .club-detail-img img {
  transform: scale(1.03);
}

.club-detail-info {
  padding: 20px 0;
}

.club-rating-lg {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(220,38,38,0.15);
  border: 1px solid rgba(220,38,38,0.3);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.club-rating-lg span {
  color: var(--neon-red);
}

.club-detail-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--white);
  margin-bottom: 8px;
}

.club-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.club-detail-info p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
  line-height: 1.7;
}

.club-highlights {
  margin-top: 20px;
  padding: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}

.club-highlights h4 {
  color: var(--neon-red);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.club-highlights ul {
  list-style: none;
}

.club-highlights li {
  padding: 6px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  position: relative;
  padding-left: 20px;
}

.club-highlights li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--neon-red);
}

/* === GALLERY === */
.gallery-section {
  padding-top: 40px;
}

.gallery-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: rgba(220,38,38,0.15);
  border-color: rgba(220,38,38,0.4);
  color: var(--white);
  box-shadow: var(--glow-sm);
}

.masonry-grid {
  columns: 3;
  column-gap: 16px;
}

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

.masonry-item:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

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

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

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5,5,5,0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.masonry-item:hover .masonry-overlay {
  opacity: 1;
}

.masonry-overlay span {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--white);
}

.masonry-item.hidden {
  display: none;
}

/* === LIGHTBOX === */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

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

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  border-radius: 50%;
}

.lightbox-close {
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(220,38,38,0.3);
  border-color: var(--neon-red);
}

.lightbox-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  font-family: 'Playfair Display', serif;
}

/* === MUSIC PAGE === */
.genre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.genre-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
}

.genre-card:hover {
  border-color: rgba(220,38,38,0.3);
  transform: translateY(-4px);
  box-shadow: var(--glow-sm);
}

.genre-visual {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.genre-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.genre-card:hover .genre-visual img {
  transform: scale(1.05);
}

.genre-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(5,5,5,0.7) 100%);
}

.genre-info {
  padding: 24px;
}

.genre-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 8px;
}

.genre-info p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 12px;
}

.genre-where {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.genre-where strong {
  color: var(--neon-red);
}

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

.dj-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}

.dj-card:hover {
  border-color: rgba(220,38,38,0.3);
  transform: translateY(-4px);
}

.dj-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 2px solid rgba(220,38,38,0.3);
}

.dj-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dj-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 10px;
}

.dj-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 16px;
}

.dj-genres {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.dj-genres span {
  padding: 4px 12px;
  background: rgba(220,38,38,0.1);
  border: 1px solid rgba(220,38,38,0.2);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  color: var(--neon-red);
}

/* Embed Section */
.embed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.embed-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 24px;
}

.embed-card h4 {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 16px;
}

/* === ABOUT PAGE === */
.about-content {
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 80px);
}

.about-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

.about-block.reverse {
  direction: rtl;
}

.about-block.reverse > * {
  direction: ltr;
}

.about-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
}

.about-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-img {
  border-radius: 20px;
  overflow: hidden;
}

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

.about-values {
  margin-top: 40px;
}

.about-values h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 40px;
}

.text-center { text-align: center; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.value-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  border-color: rgba(220,38,38,0.3);
  transform: translateY(-4px);
}

.value-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

/* === CONTACT PAGE === */
.contact-section {
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 80px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: start;
}

.contact-form-wrap h2,
.contact-info-wrap h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 28px;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--neon-red);
  box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

.form-group select option {
  background: #1a1a1a;
  color: var(--white);
}

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

.form-success {
  text-align: center;
  padding: 40px;
}

.success-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.form-success h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 10px;
}

.form-success p {
  color: rgba(255,255,255,0.6);
}

.contact-info-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 30px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--glass-border);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.ci-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  color: var(--white);
  font-size: 14px;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.contact-social-block h3 {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 16px;
}

.social-links-lg {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-link-lg {
  display: block;
  padding: 14px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.social-link-lg:hover {
  border-color: rgba(220,38,38,0.3);
  background: rgba(220,38,38,0.1);
}

/* === FAQ PAGE === */
.faq-section {
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 80px);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 12px;
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: rgba(220,38,38,0.3);
  box-shadow: var(--glow-sm);
}

.faq-question {
  width: 100%;
  background: var(--glass-bg);
  border: none;
  color: var(--white);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(255,255,255,0.08);
}

.faq-icon {
  font-size: 24px;
  color: var(--neon-red);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

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

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

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.faq-answer p:first-child {
  padding-top: 4px;
}

/* === LEGAL PAGES === */
.legal-section {
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 80px);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 40px;
}

.legal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--white);
  margin: 32px 0 12px;
}

.legal-content h3 {
  font-size: 17px;
  color: var(--neon-red);
  margin: 20px 0 8px;
}

.legal-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-content ul {
  margin: 12px 0;
  padding-left: 24px;
}

.legal-content li {
  list-style: disc;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
  line-height: 1.6;
}

.legal-content a {
  color: var(--neon-red);
  text-decoration: underline;
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--glass-border);
  background: rgba(5,5,5,0.6);
  backdrop-filter: blur(10px);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  padding: clamp(40px, 5vw, 60px) clamp(20px, 5vw, 80px);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo .logo-icon {
  width: 36px;
  height: 36px;
  font-size: 18px;
}

.footer-logo span:last-child {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--white);
}

.footer-col p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-col ul a:hover {
  color: var(--neon-red);
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 24px clamp(20px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-badges {
  display: flex;
  gap: 16px;
  align-items: center;
}

.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(220,38,38,0.2);
  border: 2px solid var(--neon-red);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  color: var(--neon-red);
}

.badge-drink {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  padding: 6px 14px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
}

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

.footer-social a {
  font-size: 18px;
  opacity: 0.5;
  transition: var(--transition);
}

.footer-social a:hover {
  opacity: 1;
  transform: scale(1.15);
}

.copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

/* === SCROLL ANIMATIONS === */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .club-card.featured {
    grid-template-columns: 1fr;
  }

  .clubs-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 1024px) {
  .club-detail {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .club-detail.reverse {
    direction: ltr;
  }

  .about-block {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-block.reverse {
    direction: ltr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .masonry-grid {
    columns: 2;
  }
}

@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
    width: var(--sidebar-width) !important;
  }

  .sidebar.mobile-open {
    transform: translateX(0);
  }

  .sidebar.mobile-open .logo-text,
  .sidebar.mobile-open .nav-label {
    opacity: 1;
  }

  .mobile-hamburger {
    display: flex;
  }

  .main-content {
    margin-left: 0 !important;
  }

  .hero {
    min-height: 600px;
  }

  .hero-stats {
    gap: 24px;
  }

  .clubs-grid {
    grid-template-columns: 1fr;
  }

  .masonry-grid {
    columns: 2;
    column-gap: 10px;
  }

  .masonry-item {
    margin-bottom: 10px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .embed-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 40px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-lg {
    width: 100%;
    max-width: 280px;
  }

  .masonry-grid {
    columns: 1;
  }

  .gallery-filters {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .genre-grid {
    grid-template-columns: 1fr;
  }

  .dj-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* === PULSE ANIMATION FOR HERO === */
@keyframes neonPulse {
  0%, 100% { text-shadow: 0 0 20px rgba(220,38,38,0.5), 0 0 40px rgba(220,38,38,0.2); }
  50% { text-shadow: 0 0 30px rgba(220,38,38,0.7), 0 0 60px rgba(220,38,38,0.3), 0 0 80px rgba(220,38,38,0.1); }
}

.hero .neon-text {
  animation: neonPulse 3s ease-in-out infinite;
}

/* === GLOSSY REFLECTION === */
.club-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.club-card:hover::after {
  left: 100%;
}

/* === SELECTION STYLE === */
::selection {
  background: rgba(220,38,38,0.4);
  color: var(--white);
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(220,38,38,0.4);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--neon-red);
}