/* ============================================
   DJCeleb.com - The Living Archive of Global DJ Culture
   Mobile-First, SEO/AEO Optimized Mega-Stylesheet
   ============================================ */

/* ---- CSS Custom Properties ---- */
:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #16161f;
  --bg-card-hover: #1e1e2a;
  --bg-glass: rgba(22, 22, 31, 0.85);
  --accent-cyan: #00d4ff;
  --accent-magenta: #ff00aa;
  --accent-green: #00ff88;
  --accent-orange: #ff6b00;
  --accent-purple: #8b5cf6;
  --accent-yellow: #ffd700;
  --gradient-main: linear-gradient(135deg, #00d4ff, #ff00aa);
  --gradient-fire: linear-gradient(135deg, #ff6b00, #ff00aa);
  --gradient-ice: linear-gradient(135deg, #00d4ff, #8b5cf6);
  --gradient-neon: linear-gradient(135deg, #00ff88, #00d4ff);
  --text-primary: #ffffff;
  --text-secondary: #a0a0b8;
  --text-muted: #6b6b80;
  --border-color: rgba(255, 255, 255, 0.06);
  --border-glow: rgba(0, 212, 255, 0.3);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow-cyan: 0 0 30px rgba(0, 212, 255, 0.15);
  --shadow-glow-magenta: 0 0 30px rgba(255, 0, 170, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Outfit', 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --container-max: 1400px;
  --header-height: 70px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-cyan) var(--bg-secondary);
}

body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--accent-cyan); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-magenta); }

::selection {
  background: rgba(0, 212, 255, 0.3);
  color: var(--text-primary);
}

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

a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover { color: var(--accent-magenta); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .container { padding: 0 32px; }
}

@media (min-width: 1200px) {
  .container { padding: 0 48px; }
}

/* ---- Utility Classes ---- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

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

.glow-border {
  border: 1px solid var(--border-glow);
  box-shadow: var(--shadow-glow-cyan);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-fire {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(255, 0, 170, 0.2));
  color: var(--accent-orange);
  border: 1px solid rgba(255, 107, 0, 0.3);
}

.badge-ice {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(139, 92, 246, 0.2));
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.badge-neon {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 212, 255, 0.2));
  color: var(--accent-green);
  border: 1px solid rgba(0, 255, 136, 0.3);
}

.badge-genre {
  background: rgba(139, 92, 246, 0.15);
  color: var(--accent-purple);
  border: 1px solid rgba(139, 92, 246, 0.3);
}

/* ---- Animated Background Particles ---- */
.particles-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--accent-cyan);
  opacity: 0.3;
  animation: floatParticle 20s infinite linear;
}

.particle:nth-child(odd) { background: var(--accent-magenta); }
.particle:nth-child(3n) { background: var(--accent-green); width: 3px; height: 3px; }

@keyframes floatParticle {
  0% { transform: translateY(100vh) translateX(0) scale(0); opacity: 0; }
  10% { opacity: 0.4; }
  50% { transform: translateY(50vh) translateX(30px) scale(1); }
  90% { opacity: 0.1; }
  100% { transform: translateY(-10vh) translateX(-20px) scale(0); opacity: 0; }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: background var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(10, 10, 15, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  z-index: 1001;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.logo span:first-of-type { color: var(--text-primary); }
.logo span:last-of-type {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Desktop Navigation */
.main-nav {
  display: none;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
}

.main-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.main-nav a.active {
  color: var(--accent-cyan);
}

.nav-icon {
  font-size: 1.1rem;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.search-toggle:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  box-shadow: var(--shadow-glow-cyan);
}

/* Hamburger Menu */
.hamburger {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 1001;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
}

.mobile-menu li {
  margin: 8px 0;
}

.mobile-menu a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.mobile-menu a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(30px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 15vh;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

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

.search-overlay-inner {
  width: 90%;
  max-width: 700px;
}

.search-overlay h2 {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.search-input-wrap {
  position: relative;
  margin-bottom: 32px;
}

.search-input-wrap input {
  width: 100%;
  padding: 20px 24px 20px 56px;
  font-size: 1.3rem;
  font-family: var(--font-main);
  background: var(--bg-card);
  border: 2px solid var(--border-glow);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  outline: none;
  transition: all var(--transition-fast);
}

.search-input-wrap input:focus {
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-glow-cyan);
}

.search-input-wrap input::placeholder {
  color: var(--text-muted);
}

.search-input-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-cyan);
  font-size: 1.3rem;
}

.search-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.search-close:hover {
  border-color: var(--accent-magenta);
  color: var(--accent-magenta);
}

.search-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.search-suggestion {
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.search-suggestion:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.1);
}

.search-results {
  margin-top: 24px;
  max-height: 50vh;
  overflow-y: auto;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.search-result-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.search-result-item img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.search-result-info h4 {
  font-size: 1rem;
  font-weight: 600;
}

.search-result-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 20px) 16px 40px;
}

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

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

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 15, 0.3) 0%,
    rgba(10, 10, 15, 0.6) 50%,
    rgba(10, 10, 15, 1) 100%
  );
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(255, 0, 170, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(0, 255, 136, 0.05) 0%, transparent 40%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: pulse 2s infinite;
}

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

.hero h1 {
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero h1 .line { display: block; }

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 32px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-search {
  position: relative;
  max-width: 600px;
  margin: 0 auto 32px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-search input {
  width: 100%;
  padding: 18px 24px 18px 52px;
  font-size: 1.05rem;
  font-family: var(--font-main);
  background: var(--bg-glass);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  color: var(--text-primary);
  outline: none;
  backdrop-filter: blur(10px);
  transition: all var(--transition-fast);
}

.hero-search input:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.15);
}

.hero-search input::placeholder { color: var(--text-muted); }

.hero-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-cyan);
  font-size: 1.2rem;
}

.hero-trending {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-trending-label {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trending a {
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  color: var(--text-secondary);
  font-size: 0.8rem;
  transition: all var(--transition-fast);
}

.hero-trending a:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.1);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 500px;
  margin: 40px auto 0;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

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

.hero-stat-number {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  font-family: var(--font-display);
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

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

/* ============================================
   SECTION STYLING
   ============================================ */
.section {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .section { padding: 80px 0; }
}

@media (min-width: 1200px) {
  .section { padding: 100px 0; }
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .section-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
  }
}

.section-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-cyan);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 500px;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-cyan);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  transition: gap var(--transition-fast);
}

.section-link:hover { gap: 10px; color: var(--accent-magenta); }

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
  margin: 0;
  border: none;
}

/* ============================================
   DJ CARDS
   ============================================ */
.dj-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 480px) {
  .dj-grid { gap: 20px; }
}

@media (min-width: 768px) {
  .dj-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

@media (min-width: 1024px) {
  .dj-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1400px) {
  .dj-grid { grid-template-columns: repeat(5, 1fr); }
}

.dj-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: all var(--transition-smooth);
  cursor: pointer;
  group: true;
}

.dj-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow-cyan);
}

.dj-card-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.dj-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

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

.dj-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 15, 0.9) 0%, transparent 60%);
}

.dj-card-heat {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.heat-fire {
  background: rgba(255, 107, 0, 0.9);
  color: white;
}

.heat-hot {
  background: rgba(255, 0, 170, 0.9);
  color: white;
}

.heat-rising {
  background: rgba(0, 212, 255, 0.9);
  color: white;
}

.dj-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  z-index: 2;
}

.dj-card-rank {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.dj-card-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  font-family: var(--font-display);
}

.dj-card-genre {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.dj-card-genre span {
  padding: 2px 8px;
  background: rgba(139, 92, 246, 0.15);
  border-radius: 10px;
  color: var(--accent-purple);
  font-size: 0.65rem;
}

.dj-card-location {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============================================
   HEAT INDEX LEADERBOARD
   ============================================ */
.heat-leaderboard {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.heat-row {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
  transition: background var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

@media (min-width: 768px) {
  .heat-row {
    grid-template-columns: 60px 80px 1fr auto 120px;
    padding: 16px 24px;
  }
}

.heat-row:hover {
  background: rgba(255, 255, 255, 0.03);
}

.heat-row:last-child { border-bottom: none; }

.heat-rank {
  font-size: 1.3rem;
  font-weight: 800;
  font-family: var(--font-display);
  text-align: center;
}

.heat-rank.gold { color: var(--accent-yellow); }
.heat-rank.silver { color: #c0c0c0; }
.heat-rank.bronze { color: #cd7f32; }

.heat-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  display: none;
}

@media (min-width: 768px) {
  .heat-avatar { display: block; }
}

.heat-info h4 {
  font-size: 1rem;
  font-weight: 600;
}

.heat-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.heat-score {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent-orange);
}

.heat-bar {
  display: none;
  height: 6px;
  background: var(--bg-secondary);
  border-radius: 3px;
  overflow: hidden;
  width: 120px;
}

@media (min-width: 768px) {
  .heat-bar { display: block; }
}

.heat-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--gradient-fire);
  transition: width 1s ease-out;
}

/* ============================================
   FESTIVAL CARDS
   ============================================ */
.festival-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .festival-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .festival-grid { grid-template-columns: repeat(3, 1fr); }
}

.festival-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all var(--transition-smooth);
  background: var(--bg-card);
}

.festival-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-magenta);
  box-shadow: var(--shadow-glow-magenta);
}

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

.festival-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

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

.festival-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 15, 0.9) 0%, transparent 50%);
}

.festival-card-date {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 14px;
  background: var(--accent-magenta);
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
}

.festival-card-body {
  padding: 20px;
}

.festival-card-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.festival-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.festival-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.festival-card-djs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.festival-card-djs a {
  padding: 4px 10px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 16px;
  font-size: 0.7rem;
  color: var(--accent-cyan);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.festival-card-djs a:hover {
  background: rgba(0, 212, 255, 0.2);
  border-color: var(--accent-cyan);
}

/* ============================================
   VIDEO / SET CARDS
   ============================================ */
.sets-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .sets-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .sets-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1400px) {
  .sets-grid { grid-template-columns: repeat(4, 1fr); }
}

.set-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.set-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-glow);
}

.set-card-video {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
}

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

.set-card-body {
  padding: 16px;
}

.set-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.set-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.set-card-dj {
  color: var(--accent-cyan);
  font-weight: 600;
}

/* ============================================
   GENRE EXPLORER
   ============================================ */
.genre-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 480px) {
  .genre-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .genre-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}

@media (min-width: 1200px) {
  .genre-grid { grid-template-columns: repeat(6, 1fr); }
}

.genre-card {
  position: relative;
  padding: 24px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-smooth);
  overflow: hidden;
  text-decoration: none;
}

.genre-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.genre-card:hover::before { opacity: 1; }
.genre-card:hover { transform: translateY(-2px); border-color: transparent; }

.genre-card[data-genre="house"]::before { background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 212, 255, 0.05)); }
.genre-card[data-genre="techno"]::before { background: linear-gradient(135deg, rgba(255, 0, 170, 0.15), rgba(255, 0, 170, 0.05)); }
.genre-card[data-genre="trance"]::before { background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05)); }
.genre-card[data-genre="dubstep"]::before { background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 255, 136, 0.05)); }
.genre-card[data-genre="dnb"]::before { background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05)); }
.genre-card[data-genre="edm"]::before { background: linear-gradient(135deg, rgba(255, 107, 0, 0.15), rgba(255, 107, 0, 0.05)); }

.genre-icon {
  font-size: 2rem;
  margin-bottom: 8px;
  display: block;
  position: relative;
  z-index: 1;
}

.genre-name {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
  color: var(--text-primary);
}

.genre-count {
  font-size: 0.7rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

/* ============================================
   CITY / WHERE THEY PARTY
   ============================================ */
.city-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  scrollbar-width: none;
}

.city-scroll::-webkit-scrollbar { display: none; }

.city-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all var(--transition-smooth);
  text-decoration: none;
  color: inherit;
}

@media (min-width: 768px) {
  .city-card { flex: 0 0 300px; }
}

.city-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-green);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.15);
}

.city-card-img {
  aspect-ratio: 4/3;
  position: relative;
}

.city-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.city-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0.2) 50%, transparent 100%);
}

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

.city-card-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.city-card-country {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.city-card-djs {
  font-size: 0.75rem;
  color: var(--accent-cyan);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================
   DJ PROFILE PAGE STYLES
   ============================================ */
.profile-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-height) + 40px) 0 40px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .profile-hero { min-height: 70vh; }
}

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

.profile-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.4) saturate(1.3);
}

.profile-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(10, 10, 15, 1) 0%,
    rgba(10, 10, 15, 0.7) 40%,
    rgba(10, 10, 15, 0.3) 100%
  );
}

.profile-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.profile-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .profile-hero-inner {
    flex-direction: row;
    align-items: flex-end;
    gap: 32px;
  }
}

.profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-lg);
  border: 3px solid var(--accent-cyan);
  object-fit: cover;
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
}

@media (min-width: 768px) {
  .profile-avatar { width: 160px; height: 160px; }
}

.profile-title-area h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 4px;
}

.profile-real-name {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.profile-quick-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 8px;
}

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

.profile-stat-val {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-display);
}

.profile-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Profile Navigation Tabs */
.profile-nav {
  position: sticky;
  top: var(--header-height);
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  z-index: 100;
  overflow-x: auto;
  scrollbar-width: none;
}

.profile-nav::-webkit-scrollbar { display: none; }

.profile-nav-inner {
  display: flex;
  gap: 4px;
  padding: 8px 16px;
  max-width: var(--container-max);
  margin: 0 auto;
  min-width: max-content;
}

.profile-nav a {
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.profile-nav a:hover,
.profile-nav a.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.profile-nav a.active { color: var(--accent-cyan); }

/* Profile Content Sections */
.profile-section {
  padding: 48px 0;
  border-bottom: 1px solid var(--border-color);
}

.profile-section:last-child { border-bottom: none; }

.profile-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-section-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

/* Bio Section */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .bio-grid { grid-template-columns: 2fr 1fr; }
}

.bio-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.bio-text p { margin-bottom: 16px; }

.bio-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bio-fact {
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.bio-fact-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.bio-fact-value {
  font-size: 1rem;
  font-weight: 600;
}

/* Video Grid for DJ profiles */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1200px) {
  .video-grid { grid-template-columns: repeat(3, 1fr); }
}

.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.video-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-2px);
}

.video-card .video-embed {
  aspect-ratio: 16/9;
  background: #000;
}

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

.video-card .video-info {
  padding: 16px;
}

.video-card .video-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.video-card .video-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Lifestyle Sections */
.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .lifestyle-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1200px) {
  .lifestyle-grid { grid-template-columns: repeat(3, 1fr); }
}

.lifestyle-card {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all var(--transition-smooth);
}

.lifestyle-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-2px);
}

.lifestyle-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.lifestyle-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.lifestyle-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.lifestyle-card ul {
  list-style: none;
  margin-top: 8px;
}

.lifestyle-card ul li {
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

.lifestyle-card ul li:last-child { border-bottom: none; }

/* Concert Timeline */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-cyan), var(--accent-magenta), var(--accent-green));
}

.timeline-item {
  position: relative;
  padding-bottom: 32px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -28px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-cyan);
  border: 3px solid var(--bg-primary);
  z-index: 1;
}

.timeline-item:nth-child(even) .timeline-dot { background: var(--accent-magenta); }
.timeline-item:nth-child(3n) .timeline-dot { background: var(--accent-green); }

.timeline-content {
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.timeline-date {
  font-size: 0.75rem;
  color: var(--accent-cyan);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.timeline-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.timeline-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* FAQ Section */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.active { border-color: var(--border-glow); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-main);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-question:hover { color: var(--accent-cyan); }

.faq-question .faq-icon {
  font-size: 1.2rem;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
  margin-left: 12px;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth), padding var(--transition-smooth);
}

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

.faq-answer-inner {
  padding: 0 20px 20px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Related DJs */
.related-djs {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: none;
}

.related-djs::-webkit-scrollbar { display: none; }

.related-dj-card {
  flex: 0 0 140px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition-fast);
}

.related-dj-card:hover { transform: translateY(-4px); }

.related-dj-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 8px;
  border: 2px solid var(--border-color);
  transition: border-color var(--transition-fast);
}

.related-dj-card:hover img { border-color: var(--accent-cyan); }

.related-dj-card h4 {
  font-size: 0.85rem;
  font-weight: 600;
}

.related-dj-card p {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ============================================
   FESTIVAL PAGE STYLES
   ============================================ */
.festival-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-height) + 40px) 0 60px;
  overflow: hidden;
}

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

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

.festival-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 15, 1) 0%, rgba(10, 10, 15, 0.5) 50%, transparent 100%);
}

.festival-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.festival-lineup-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .festival-lineup-section { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1200px) {
  .festival-lineup-section { grid-template-columns: repeat(3, 1fr); }
}

.lineup-tier {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.lineup-tier-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

.lineup-tier-title.headliner { color: var(--accent-yellow); }
.lineup-tier-title.main { color: var(--accent-cyan); }
.lineup-tier-title.support { color: var(--accent-purple); }

.lineup-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lineup-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.lineup-list a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

.lineup-list a img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 24px;
  position: relative;
  z-index: 1;
}

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

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 300px;
  margin-top: 12px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }

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

.footer-col ul a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-col ul a:hover { color: var(--accent-cyan); }

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

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

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.footer-socials a:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  box-shadow: var(--shadow-glow-cyan);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-main);
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-main);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
  color: white;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

.btn-outline:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  box-shadow: var(--shadow-glow-cyan);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */
@media (min-width: 768px) {
  .hamburger { display: none; }

  .main-nav { display: flex; }
}

@media (min-width: 1024px) {
  :root {
    --header-height: 72px;
  }
}

/* ============================================
   LOADING & ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* Skeleton loading */
.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-hover) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ============================================
   CATEGORY / HUB PAGE HERO
   ============================================ */
.category-hero {
  position: relative;
  padding: calc(var(--header-height) + 60px) 0 60px;
  overflow: hidden;
  text-align: center;
}

.category-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
}

.category-hero[data-theme="house"]::before {
  background: radial-gradient(ellipse at 50% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
}

.category-hero[data-theme="techno"]::before {
  background: radial-gradient(ellipse at 50% 50%, rgba(255, 0, 170, 0.15) 0%, transparent 70%);
}

.category-hero[data-theme="trance"]::before {
  background: radial-gradient(ellipse at 50% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
}

.category-hero[data-theme="dubstep"]::before {
  background: radial-gradient(ellipse at 50% 50%, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
}

.category-hero[data-theme="sets"]::before {
  background: radial-gradient(ellipse at 30% 50%, rgba(255, 107, 0, 0.12) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 50%, rgba(0, 212, 255, 0.12) 0%, transparent 50%);
}

.category-hero[data-theme="lifestyle"]::before {
  background: radial-gradient(ellipse at 40% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
              radial-gradient(ellipse at 60% 50%, rgba(255, 0, 170, 0.1) 0%, transparent 50%);
}

.category-hero-content {
  position: relative;
  z-index: 1;
}

.category-hero .hero-badge {
  margin-bottom: 20px;
}

.category-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.category-hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Stat Pills */
.stat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.stat-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
}

.stat-pill-value {
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.stat-pill-label {
  color: var(--text-muted);
}

/* ============================================
   FILTER BAR
   ============================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
}

.filter-btn {
  padding: 8px 18px;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-main);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.filter-btn.active {
  background: var(--gradient-main);
  border-color: transparent;
  color: white;
}

/* ============================================
   MEGA CARD (for hub pages)
   ============================================ */
.mega-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
}

@media (min-width: 768px) {
  .mega-card { grid-template-columns: 1fr 1fr; }
}

.mega-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-cyan);
}

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

@media (min-width: 768px) {
  .mega-card-img { aspect-ratio: auto; min-height: 280px; }
}

.mega-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

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

.mega-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 50%, rgba(10, 10, 15, 0.3) 100%);
}

.mega-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.mega-card-body h3 {
  font-size: 1.4rem;
  font-weight: 700;
}

.mega-card-body p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.mega-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mega-card-stats {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
}

.compare-table th {
  background: rgba(0, 212, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.compare-table tr:last-child td { border-bottom: none; }

.compare-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.compare-table a {
  font-weight: 600;
}

/* ============================================
   EQUALIZER ANIMATION
   ============================================ */
.equalizer {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 24px;
}

.equalizer-bar {
  width: 4px;
  border-radius: 2px;
  animation: equalize 1.2s ease-in-out infinite;
}

.equalizer-bar:nth-child(1) { height: 60%; animation-delay: 0s; background: var(--accent-cyan); }
.equalizer-bar:nth-child(2) { height: 80%; animation-delay: 0.2s; background: var(--accent-magenta); }
.equalizer-bar:nth-child(3) { height: 40%; animation-delay: 0.4s; background: var(--accent-green); }
.equalizer-bar:nth-child(4) { height: 100%; animation-delay: 0.1s; background: var(--accent-cyan); }
.equalizer-bar:nth-child(5) { height: 50%; animation-delay: 0.3s; background: var(--accent-magenta); }

@keyframes equalize {
  0%, 100% { transform: scaleY(0.3); }
  50% { transform: scaleY(1); }
}

/* ============================================
   ICON STAT GRID
   ============================================ */
.icon-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .icon-stat-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1200px) {
  .icon-stat-grid { grid-template-columns: repeat(6, 1fr); }
}

.icon-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 24px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all var(--transition-smooth);
}

.icon-stat:hover {
  border-color: var(--border-glow);
  transform: translateY(-2px);
}

.icon-stat-icon {
  font-size: 2.5rem;
}

.icon-stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-display);
}

.icon-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   VENUE CARDS
   ============================================ */
.venue-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .venue-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .venue-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1400px) {
  .venue-grid { grid-template-columns: repeat(4, 1fr); }
}

.venue-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: all var(--transition-smooth);
  text-decoration: none;
  color: inherit;
}

.venue-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-green);
  box-shadow: 0 0 24px rgba(0, 255, 136, 0.12);
}

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

.venue-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

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

.venue-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 15, 0.8) 0%, transparent 50%);
}

.venue-card-body {
  padding: 16px;
}

.venue-card-body h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.venue-card-body .venue-location {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.venue-card-body .venue-djs {
  font-size: 0.75rem;
  color: var(--accent-cyan);
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover { color: var(--accent-cyan); }

.breadcrumb-sep { opacity: 0.5; }

.breadcrumb-current { color: var(--text-secondary); }

/* ============================================
   ANIMATED COUNTER
   ============================================ */
.counter[data-target] {
  font-variant-numeric: tabular-nums;
}

/* ============================================
   CONTENT CARD (for best sets, lifestyle)
   ============================================ */
.content-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.content-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-3px);
}

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

.content-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

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

.content-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.content-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.content-card-body p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.content-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================
   TWO COLUMN LAYOUT
   ============================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .two-col { grid-template-columns: 2fr 1fr; }
}

.two-col-reverse {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .two-col-reverse { grid-template-columns: 1fr 2fr; }
}

/* ============================================
   QUOTE BLOCK
   ============================================ */
.quote-block {
  position: relative;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent-cyan);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 24px 0;
}

.quote-block p {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
}

.quote-block cite {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--accent-cyan);
  font-style: normal;
  font-weight: 600;
}

/* ============================================
   404 PAGE
   ============================================ */
.page-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
  padding: calc(var(--header-height) + 40px) 20px 40px;
}

.page-404 h1 {
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 16px;
}

.page-404 h2 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.page-404 p {
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 400px;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .site-header, .particles-bg, .search-overlay, .mobile-menu { display: none; }
  body { background: white; color: black; }
  .hero { min-height: auto; padding: 20px 0; }
  .section { padding: 20px 0; }
}
