/* =============================================
   AC MUSIC GLOBAL - MAIN STYLES
   Premium Dark Music Website
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ============ CSS VARIABLES ============ */
:root {
  --bg-primary: #050508;
  --bg-secondary: #0d0d15;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-glass: rgba(255, 255, 255, 0.06);
  --accent-orange: #ff6b35;
  --accent-red: #c0392b;
  --accent-cyan: #00d4ff;
  --accent-purple: #7b2fff;
  --text-primary: #f0f0f0;
  --text-secondary: #a0a0b0;
  --text-muted: #606070;
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(255, 107, 53, 0.3);
  --shadow-glow: 0 0 40px rgba(255, 107, 53, 0.15);
  --shadow-cyan: 0 0 40px rgba(0, 212, 255, 0.15);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-text: 'Inter', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

body.cursor-disabled {
  cursor: auto !important;
}

::selection {
  background: var(--accent-orange);
  color: white;
}

/* ============ CUSTOM CURSOR ============ */
.cursor {
  width: 12px;
  height: 12px;
  background: var(--accent-orange);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 999999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, background-color 0.2s, opacity 0.2s;
}

body.cursor-disabled .cursor {
  display: none !important;
}

.cursor-follower {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 107, 53, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 999998;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, width 0.3s, height 0.3s, border-color 0.3s, background-color 0.3s, opacity 0.2s;
}

body.cursor-disabled .cursor-follower {
  display: none !important;
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent-orange); border-radius: 2px; }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(5, 5, 8, 0.95);
  backdrop-filter: blur(20px);
  padding: 14px 40px;
  border-bottom: 1px solid var(--border-glass);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 4px;
  text-decoration: none;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo span {
  color: var(--accent-orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent-orange);
  transition: var(--transition);
}

.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before { left: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
  color: white;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
}

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

.btn-secondary:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--accent-orange);
  color: white;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.78rem;
}

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

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/images/hero_bg.png') center/cover no-repeat;
  z-index: 0;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 5, 8, 0.9) 0%,
    rgba(5, 5, 8, 0.6) 50%,
    rgba(13, 13, 21, 0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  padding-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-text .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 24px;
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 9rem);
  line-height: 0.9;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-title .line-1 { color: var(--text-primary); }
.hero-title .line-2 {
  color: transparent;
  -webkit-text-stroke: 2px var(--accent-orange);
  display: block;
}
.hero-title .line-3 {
  color: var(--accent-orange);
  display: block;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-secondary);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 16px;
  margin-top: 16px;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-socials {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero-socials span {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.social-link {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  flex-shrink: 0;
}

.social-link:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-artist-img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 60px rgba(255, 107, 53, 0.3));
}

.hero-artist-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
}

.hero-glow {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.2), transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: float-glow 4s ease-in-out infinite;
}

.hero-stats {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  z-index: 3;
}

.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--accent-orange);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============ SCROLL INDICATOR ============ */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--accent-orange), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

/* ============ SECTION STYLES ============ */
section {
  position: relative;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title .outline {
  color: transparent;
  -webkit-text-stroke: 1px var(--text-secondary);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============ MUSIC SECTION ============ */
.music-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.tracks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.track-card {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.track-card:hover {
  background: rgba(255, 107, 53, 0.08);
  border-color: var(--border-accent);
  transform: translateX(8px);
}

.track-cover {
  width: 70px; height: 70px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

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

.track-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 107, 53, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  border-radius: var(--radius-sm);
}

.track-card:hover .track-play-overlay { opacity: 1; }
.track-play-overlay i { color: white; font-size: 1.4rem; }

.track-info { flex: 1; }
.track-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(255,255,255,0.08);
  line-height: 1;
}
.track-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.track-artist {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.track-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.track-duration {
  font-family: var(--font-text);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.track-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}

.track-btn:hover {
  background: var(--accent-orange);
  color: white;
  border-color: var(--accent-orange);
}

/* ============ MUSIC PLAYER ============ */
.music-player {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  background: rgba(13, 13, 21, 0.97);
  backdrop-filter: blur(30px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 560px;
  max-width: 780px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,107,53,0.1);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}

.music-player.active {
  opacity: 1;
  pointer-events: all;
}

.player-track-info { flex: 1; min-width: 0; }
.player-track-name { font-size: 0.88rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player-track-artist { font-size: 0.75rem; color: var(--text-muted); }

.player-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.player-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  padding: 6px;
}

.player-btn:hover { color: var(--text-primary); }

.player-play {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
  color: white !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.player-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 2;
  min-width: 0;
}

.progress-bar-wrap {
  flex: 1;
  position: relative;
  height: 18px;
  display: flex;
  align-items: center;
}

.player-seek {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--border-glass);
  cursor: pointer;
  outline: none;
  position: relative;
  z-index: 2;
}
.player-seek::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-orange);
  cursor: pointer;
  box-shadow: 0 0 6px rgba(255,107,53,0.6);
  transition: transform 0.15s;
}
.player-seek::-webkit-slider-thumb:hover { transform: scale(1.3); }
.player-seek::-moz-range-thumb {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent-orange);
  cursor: pointer;
  border: none;
  box-shadow: 0 0 6px rgba(255,107,53,0.6);
}

/* Progress fill overlay behind range slider */
.progress-fill {
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  height: 4px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-red));
  border-radius: 2px;
  width: 0%;
  pointer-events: none;
  z-index: 1;
  transition: width 0.1s linear;
}

.progress-time {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: var(--font-text);
  white-space: nowrap;
}

/* Volume control */
.player-volume {
  display: flex;
  align-items: center;
  gap: 6px;
}

.player-vol-btn { font-size: 0.9rem; }

.player-vol-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 72px;
  height: 4px;
  border-radius: 2px;
  background: var(--border-glass);
  cursor: pointer;
  outline: none;
}
.player-vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--text-secondary);
  cursor: pointer;
  transition: background 0.2s;
}
.player-vol-slider::-webkit-slider-thumb:hover { background: var(--accent-orange); }
.player-vol-slider::-moz-range-thumb {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--text-secondary);
  cursor: pointer;
  border: none;
}

/* ============ VIDEOS SECTION ============ */
.videos-section {
  background: var(--bg-secondary);
}

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

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

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

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

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

.video-info {
  padding: 20px;
}

.video-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

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

/* ============ BIOGRAPHY SECTION ============ */
.biography-section {
  background: linear-gradient(135deg, var(--bg-primary) 0%, rgba(123, 47, 255, 0.05) 50%, var(--bg-primary) 100%);
}

.bio-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.bio-image {
  position: relative;
}

.bio-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  filter: grayscale(20%);
}

.bio-image::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(135deg, var(--accent-orange), transparent, var(--accent-purple));
  z-index: -1;
  opacity: 0.5;
}

.bio-frame {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 180px; height: 180px;
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
}

.bio-frame .year {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent-orange);
  line-height: 1;
}

.bio-frame .year-label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.bio-text .section-title { text-align: left; }

.bio-quote {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-secondary);
  border-left: 3px solid var(--accent-orange);
  padding-left: 20px;
  margin: 32px 0;
  line-height: 1.6;
}

.bio-p {
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 16px;
}

.bio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.bio-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============ GALLERY SECTION ============ */
.gallery-section {
  background: var(--bg-primary);
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--bg-secondary);
}

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

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { font-size: 0.85rem; font-weight: 600; color: white; }

/* ============ EVENTS SECTION ============ */
.events-section {
  background: var(--bg-secondary);
}

.events-list { display: grid; gap: 16px; }

.event-card {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.event-card:hover {
  border-color: var(--border-accent);
  background: rgba(255, 107, 53, 0.05);
  transform: translateX(8px);
}

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

.event-day {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent-orange);
  line-height: 1;
}

.event-month {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.event-info {}
.event-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.event-location {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============ SUBSCRIPTION SECTION ============ */
.subscription-section {
  background: linear-gradient(135deg, var(--bg-primary) 0%, rgba(255, 107, 53, 0.03) 50%, var(--bg-primary) 100%);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.plan-card {
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.plan-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
  opacity: 0;
  transition: var(--transition);
}

.plan-card:hover { transform: translateY(-8px); }
.plan-card:hover::before { opacity: 1; }

.plan-card.featured {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(192, 57, 43, 0.05));
  border-color: var(--border-accent);
  transform: scale(1.02);
}

.plan-card.featured::before { opacity: 1; }

.plan-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.plan-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--accent-orange);
  line-height: 1;
  margin-bottom: 4px;
}

.plan-price span {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
}

.plan-period {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.plan-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
  display: grid;
  gap: 12px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.plan-features li i {
  color: var(--accent-orange);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.plan-features li.disabled {
  opacity: 0.4;
}

.plan-features li.disabled i { color: var(--text-muted); }

/* ============ CONTACT SECTION ============ */
.contact-section {
  background: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

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

.contact-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 500;
}

.contact-form { }

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

select.form-control option {
  background-color: #12121e;
  color: var(--text-primary);
}

.form-control:focus {
  border-color: var(--accent-orange);
  background: rgba(255, 107, 53, 0.05);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.form-control::placeholder { color: var(--text-muted); }

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-glass);
  padding: 60px 40px 30px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {}
.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 4px;
  color: var(--text-primary);
  margin-bottom: 16px;
  display: block;
}
.footer-logo span { color: var(--accent-orange); }
.footer-brand-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 280px;
}

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

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--text-primary); padding-left: 6px; }

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border-glass);
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============ MOBILE NAV ============ */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
  border-radius: 2px;
}

/* ============ UTILITY ============ */
.text-gradient {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
}

.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--accent-orange), transparent);
  margin: 16px 0;
}

.divider.center { margin: 16px auto; }

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

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

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

/* ============ RESPONSIVE — TABLET & MOBILE ============ */

/* ---- TABLET (≤ 1024px) ---- */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; padding-top: 120px; text-align: center; }
  .hero-visual { display: none; }
  .bio-content { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .plans-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .footer-content { grid-template-columns: 1fr 1fr; gap: 32px; }
  .tracks-grid { grid-template-columns: 1fr; gap: 14px; }
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: 1fr; }
  .section-title { text-align: center; }
  .divider { margin: 16px auto; }
}

/* ---- MOBILE LANDSCAPE (≤ 768px) ---- */
@media (max-width: 768px) {
  /* Navbar */
  .navbar { padding: 14px 18px; justify-content: space-between; gap: 12px; }
  .nav-logo { flex-shrink: 0; font-size: 1.4rem; }
  .nav-actions { 
    position: static; 
    transform: none; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    flex-shrink: 0;
  }
  .nav-links { display: none; }
  .nav-toggle {
    display: flex !important;
    flex-shrink: 0 !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: var(--bg-glass) !important;
    border: 1px solid var(--border-glass) !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 4px !important;
    padding: 0 !important;
    cursor: pointer !important;
    transition: var(--transition) !important;
  }
  .nav-toggle span {
    width: 18px !important;
    height: 2px !important;
    background: var(--text-primary) !important;
  }
  .nav-toggle:hover {
    border-color: var(--accent-orange) !important;
  }
  
  /* Prevent header icons and buttons from stretching/shrinking on mobile */
  .nav-cart-btn {
    flex-shrink: 0 !important;
    width: 40px !important;
    height: 40px !important;
  }
  .nav-actions .btn {
    flex-shrink: 0 !important;
    font-size: 0 !important; /* Hide text nodes */
    padding: 10px !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    justify-content: center !important;
    display: inline-flex !important;
    background: var(--bg-glass) !important;
    border: 1px solid var(--border-glass) !important;
    color: var(--text-primary) !important;
    box-shadow: none !important;
  }
  .nav-actions .btn:hover {
    border-color: var(--accent-orange) !important;
    color: var(--accent-orange) !important;
  }
  .nav-actions .btn i {
    font-size: 1.1rem !important; /* Keep icon visible and centered */
    margin: 0 !important;
  }

  /* Sections */
  .section-container { padding: 60px 18px; }
  .section-title { font-size: clamp(1.8rem, 6vw, 2.6rem); text-align: center; }
  .section-subtitle { text-align: center; }

  /* Grids go single column */
  .tracks-grid { grid-template-columns: 1fr; gap: 12px; }
  .videos-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  /* masonry tablet */
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gm-item.gm-wide { grid-column: span 2; }
  .events-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }

  /* Track cards */
  .track-card { 
    grid-template-columns: 56px 1fr auto; 
    gap: 14px; 
    padding: 12px 14px; 
  }
  .track-cover {
    width: 56px;
    height: 56px;
  }
  .track-actions { 
    display: flex; 
    align-items: center;
    gap: 8px;
  }
  .track-btn {
    width: 34px;
    height: 34px;
    font-size: 0.78rem;
  }

  /* Event cards */
  .event-card { grid-template-columns: 60px 1fr; gap: 12px; }

  /* Plans */
  .plans-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .plan-card.featured { transform: scale(1); }

  /* Footer social centered */
  .footer-socials { justify-content: center; }
  .footer-links { align-items: center; }

  /* Bio */
  .bio-content { grid-template-columns: 1fr; text-align: center; }
  .bio-photo-wrap { margin: 0 auto; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { text-align: center; }

  /* Music Player — stack on mobile */
  .music-player {
    flex-wrap: wrap;
    min-width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    padding: 12px 14px;
    bottom: 12px;
    gap: 10px;
    border-radius: 16px;
  }
  .player-track-info { flex: 0 0 100%; order: 1; text-align: center; }
  .player-controls { order: 2; justify-content: center; flex: 0 0 auto; }
  .player-progress { order: 3; flex: 1 1 100%; }
  .player-volume { order: 4; justify-content: center; flex: 0 0 auto; }
  .music-player > .player-btn:last-child { order: 5; }
  .player-vol-slider { width: 80px; }
}

/* ---- MOBILE PORTRAIT (≤ 480px) ---- */
@media (max-width: 480px) {
  /* Hero */
  .hero-title { font-size: clamp(2.8rem, 11vw, 4rem); }
  .ht-name { font-size: clamp(2.8rem, 11vw, 4rem); }
  .ht-label { font-size: clamp(1.4rem, 5vw, 2rem); }

  /* Sections */
  .section-container { padding: 50px 14px; }

  /* Plans */
  .plans-grid { grid-template-columns: 1fr; max-width: 100%; }
  .plan-card.featured { transform: scale(1); }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(4) { grid-column: span 1; }
  /* masonry mobile */
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; gap: 8px; }
  .gm-item.gm-tall { grid-row: span 1; }
  .gm-item.gm-wide { grid-column: span 2; }
  .lightbox-nav { width: 40px; height: 40px; font-size: 0.85rem; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }

  /* Tracks */
  .track-cover img { width: 48px; height: 48px; border-radius: 8px; }

  /* Videos */
  .video-card .video-thumb { height: 180px; }

  /* Player — ultra compact */
  .music-player { padding: 10px 12px; gap: 8px; }
  .player-track-name { font-size: 0.82rem; }
  .player-track-artist { font-size: 0.7rem; }
  .player-play { width: 38px; height: 38px; font-size: 0.9rem; }
  .player-vol-slider { width: 60px; }

  /* Footer */
  .footer-content { gap: 20px; }
  .footer-brand-desc { font-size: 0.82rem; }

  /* Contact form */
  .form-control { font-size: 0.9rem; padding: 12px 14px; }

  /* Newsletter */
  .fan-form-inner { grid-template-columns: 1fr !important; }
}

/* ---- EXTRA SMALL (≤ 380px) ---- */
@media (max-width: 380px) {
  .navbar { padding: 12px 14px; gap: 8px; }
  .nav-logo { font-size: 1.1rem; letter-spacing: 2px; }
  .nav-actions { gap: 6px; }
  .section-container { padding: 44px 12px; }
  .hero-title, .ht-name { font-size: 2.6rem; }
  .music-player {
    min-width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
    bottom: 8px;
  }
  .player-vol-slider { width: 50px; }
}

/* =============================================
   NEW HERO LAYOUT - CLEAN & ORGANIZED
   ============================================= */

/* Hero Media background (slideshow or video) */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none; /* Evita que capture clicks o toques */
}

.hero-slideshow {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active { opacity: 0.35; }

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
  z-index: -1; /* Asegura quedar por detrás de los overlays */
  pointer-events: none;
}

/* Hero content new layout */
.hero-content-new {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  padding-top: 100px;
  width: 100%;
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 80px;
  align-items: center;
  min-height: 100vh;
}

/* LEFT COLUMN: Photo */
.hero-photo-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-photo-wrap {
  position: relative;
  width: 420px;
}

.hero-photo-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse at center, rgba(255,107,53,0.25), transparent 70%);
  border-radius: 50%;
  animation: float-glow 4s ease-in-out infinite;
  z-index: 0;
}

.hero-photo {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top center;
  border-radius: 28px;
  border: 1px solid rgba(255,107,53,0.25);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 60px rgba(255,107,53,0.15);
  position: relative;
  z-index: 1;
  display: block;
}

/* Floating card: music wave */
.hero-float-card {
  position: absolute;
  top: 28px;
  right: -28px;
  background: rgba(13,13,21,0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  z-index: 3;
  min-width: 130px;
}

/* Floating stats card */
.hero-stats-card {
  position: absolute;
  bottom: -16px;
  left: -20px;
  background: rgba(13,13,21,0.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--accent-orange);
  line-height: 1;
}

.hero-stat-lbl {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-stat-divider {
  width: 1px;
  height: 30px;
  background: var(--border-glass);
}

/* RIGHT COLUMN: Text */
.hero-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text-col .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 28px;
  width: fit-content;
}

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

/* New hero title style */
.hero-title-new {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.ht-name {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 7rem);
  line-height: 0.9;
  letter-spacing: 4px;
  color: var(--text-primary);
  text-transform: uppercase;
  display: block;
}

.ht-label {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1.2;
  letter-spacing: 6px;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent-orange);
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}

.ht-label em {
  font-style: normal;
  color: var(--accent-orange);
  -webkit-text-stroke: 0;
}

/* Slideshow dots on hero */
.hero-slide-dots {
  display: flex;
  gap: 8px;
  margin-top: 40px;
}

.hero-dot {
  width: 28px; height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: var(--accent-orange);
  width: 48px;
}

/* =============================================
   GALLERY MASONRY GRID + LIGHTBOX
   ============================================= */

/* ---- MASONRY GRID ---- */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
  margin-top: 48px;
}

.gm-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  background: var(--bg-secondary);
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.gm-item.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggered reveal delays */
.gm-item:nth-child(2) { transition-delay: 0.07s; }
.gm-item:nth-child(3) { transition-delay: 0.14s; }
.gm-item:nth-child(4) { transition-delay: 0.21s; }
.gm-item:nth-child(5) { transition-delay: 0.28s; }
.gm-item:nth-child(6) { transition-delay: 0.35s; }

/* Size variants */
.gm-item.gm-tall { grid-row: span 2; }
.gm-item.gm-wide { grid-column: span 2; }

.gm-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover overlay */
.gm-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,107,53,0.6) 0%, rgba(0,0,0,0.5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gm-hover i {
  font-size: 1.8rem;
  color: white;
  transform: scale(0.7);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gm-item:hover img { transform: scale(1.08); }
.gm-item:hover .gm-hover { opacity: 1; }
.gm-item:hover .gm-hover i { transform: scale(1); }

/* Number badge */
.gm-num {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  line-height: 1;
  transition: color 0.3s;
}

.gm-item:hover .gm-num { color: white; }

/* ---- LIGHTBOX ---- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
  gap: 16px;
}

.lightbox-img {
  max-width: 88vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 80px rgba(0,0,0,0.8);
  transition: opacity 0.18s ease;
  display: block;
}

.lightbox-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}

.lightbox-counter {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 3px;
  color: var(--accent-orange);
}

.lightbox-label {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
}

.lightbox-close:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  transform: rotate(90deg) scale(1.1);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  backdrop-filter: blur(8px);
}

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

.lightbox-nav:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  transform: translateY(-50%) scale(1.08);
}

/* =============================================
   NAVBAR LOGO IMAGE SUPPORT
   ============================================= */
.nav-logo-img {
  height: var(--logo-height, 40px);
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* =============================================
   DASHBOARD SUBTITLE FIX
   ============================================= */
.page-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Fix word-break issue in dashboard panels */
.panel, .stat-card, .event-card {
  word-break: normal;
  overflow-wrap: break-word;
}

/* Ensure main-content has enough width */
.main-content {
  min-width: 0;
}

/* =============================================
   RESPONSIVE FIXES FOR NEW HERO
   ============================================= */
@media (max-width: 1100px) {
  .hero-content-new {
    grid-template-columns: 360px 1fr;
    gap: 50px;
    padding: 0 40px;
    padding-top: 100px;
  }
  .hero-photo { height: 480px; }
  .hero-photo-wrap { width: 360px; }
}

@media (max-width: 900px) {
  .hero-content-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 110px 20px 60px;
    text-align: center;
    width: 100%;
    overflow: hidden;
  }
  .hero-photo-col { 
    order: -1; 
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
  }
  .hero-photo-wrap { 
    width: 280px; 
    margin: 0 auto; 
    position: relative;
    display: flex;
    justify-content: center;
  }
  .hero-photo { 
    height: 340px; 
    width: 280px;
    margin: 0 auto;
    object-fit: cover;
  }
  .hero-float-card { display: none; }
  .hero-stats-card { display: none; }
  
  .hero-text-col { 
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
    justify-content: center;
    margin: 0 auto;
  }
  .hero-title-new {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto 16px;
  }
  .hero-text-col .badge { margin: 0 auto 20px; }
  .hero-slide-dots { justify-content: center; }
  
  .hero-cta { 
    display: flex;
    justify-content: center; 
    align-items: center;
    width: 100%; 
    gap: 12px;
  }
  .hero-socials { 
    display: flex;
    justify-content: center; 
    align-items: center;
    width: 100%; 
    gap: 16px;
    flex-wrap: wrap;
  }
  .hero-subtitle {
    text-align: center;
    margin: 16px auto;
    width: 100%;
  }
  .hero-desc { 
    margin: 0 auto 40px; 
    max-width: 480px; 
    text-align: center; 
    width: 100%;
  }
  .ht-name { 
    font-size: clamp(2.2rem, 8vw, 3.5rem); 
    text-align: center; 
    letter-spacing: 2px;
    margin-right: -2px; /* balances out letter-spacing shift */
  }
  .ht-label { 
    font-size: clamp(1.2rem, 5vw, 2rem); 
    text-align: center; 
    letter-spacing: 4px;
    margin-right: -4px; /* balances out letter-spacing shift */
  }
  .gallery-slider { height: 360px; }
}

@media (max-width: 600px) {
  .hero-stats-card { display: none; }
  .hero-float-card { display: none; }
  .gallery-slider { height: 280px; }
  .gallery-thumbs { display: none; }
  .hero-content-new { padding: 90px 20px 50px; }
}

/* =============================================
   LISTENING / STREAMING PLATFORMS SECTION
   ============================================= */
.listening-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 80px 0;
}

.platform-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.platform-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.platform-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow-color, #fff) 0%, transparent 80%);
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
}

.platform-icon i {
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.platform-icon:hover {
  transform: translateY(-8px) scale(1.1);
  color: #fff;
  box-shadow: 0 10px 25px var(--glow-shadow, rgba(255, 255, 255, 0.15));
  border-color: var(--glow-color, #fff);
}

.platform-icon:hover::before {
  opacity: 0.2;
}

/* Platform specific hover definitions */
.platform-icon.spotify {
  --glow-color: #1DB954;
  --glow-shadow: rgba(29, 185, 84, 0.4);
}
.platform-icon.apple {
  --glow-color: #fa243c;
  --glow-shadow: rgba(250, 36, 60, 0.4);
}
.platform-icon.youtube {
  --glow-color: #ff0000;
  --glow-shadow: rgba(255, 0, 0, 0.4);
}
.platform-icon.deezer {
  --glow-color: #ff3366;
  --glow-shadow: rgba(255, 51, 102, 0.4);
}
.platform-icon.amazon {
  --glow-color: #00a8e8;
  --glow-shadow: rgba(0, 168, 232, 0.4);
}
.platform-icon.soundcloud {
  --glow-color: #ff5500;
  --glow-shadow: rgba(255, 85, 0, 0.4);
}
.platform-icon.tidal {
  --glow-color: #00ffff;
  --glow-shadow: rgba(0, 255, 255, 0.4);
}

/* =============================================
   SHOP SECTION
   ============================================= */
.shop-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 100px 0;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.product-card {
  background: linear-gradient(160deg, rgba(20,20,32,0.95) 0%, rgba(10,10,18,0.98) 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 0;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,107,53,0.04) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(255,107,53,0.4);
  box-shadow: 0 20px 60px rgba(255,107,53,0.18), 0 4px 24px rgba(0,0,0,0.5);
}

.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
  color: white;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(255,107,53,0.4);
}

.product-img-wrap {
  width: 100%;
  height: 300px;
  background: linear-gradient(180deg, rgba(30,20,40,0.9) 0%, rgba(10,10,20,1) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.product-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(10,10,20,1) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  display: block;
}

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

.product-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 20px 24px;
  position: relative;
  z-index: 1;
}

.product-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--accent-orange);
  margin-bottom: 12px;
}

.product-sizes {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.product-sizes span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid var(--border-glass);
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.product-sizes span:hover, .product-sizes span.active {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  background: rgba(255, 107, 53, 0.05);
}

/* Merch Shop Cart Slideover */
.shop-cart-panel {
  position: fixed;
  top: 0; right: -400px;
  width: 400px; height: 100vh;
  background: #08080f;
  border-left: 1px solid var(--border-glass);
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  z-index: 10001;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-cart-panel.open {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.cart-title {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 2px;
  color: var(--text-primary);
}

.cart-close-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.cart-close-btn:hover {
  color: var(--accent-orange);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 24px;
}

.cart-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-glass);
}

.cart-item img {
  width: 60px; height: 60px;
  object-fit: contain;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
}

.cart-item-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--accent-orange);
  margin-top: 4px;
}

.cart-item-remove {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.cart-item-remove:hover {
  color: var(--accent-red);
}

.cart-footer {
  border-top: 1px solid var(--border-glass);
  padding-top: 24px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.cart-checkout-btn {
  width: 100%;
  justify-content: center;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Floating Cart Toggle Button */
.cart-floating-btn {
  position: fixed;
  bottom: 100px; right: 32px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
  border: none;
  box-shadow: 0 4px 20px rgba(255,107,53,0.4);
  color: white;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  transition: var(--transition);
}

.cart-floating-btn:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 8px 30px rgba(255,107,53,0.6);
}

.cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 22px; height: 22px;
  background: white;
  color: var(--accent-orange);
  font-size: 0.72rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent-orange);
}

@media (max-width: 480px) {
  .shop-cart-panel {
    width: 100%;
    right: -100%;
  }
}

