/* ═══════════════════════════════════════════════════════════
   HP SOUND — Volcanic Orange & Red Theme
   Palette: #0D0D0D | #FF6B2B | #E8001C | #1A0A00
   Fonts: Clash Display + Outfit
═══════════════════════════════════════════════════════════ */

:root {
  --bg:          #0D0D0D;
  --bg2:         #111111;
  --card:        #181008;
  --card2:       #1A0E05;
  --orange:      #FF6B2B;
  --red:         #E8001C;
  --orange-dim:  rgba(255,107,43,0.12);
  --red-dim:     rgba(232,0,28,0.10);
  --orange-glow: rgba(255,107,43,0.25);
  --red-glow:    rgba(232,0,28,0.20);
  --white:       #F5F0EB;
  --muted:       #8A7A6A;
  --border:      rgba(255,107,43,0.18);
  --border-red:  rgba(232,0,28,0.18);
  --radius:      14px;
  --radius-lg:   24px;
  --shadow:      0 8px 40px rgba(0,0,0,0.7);
  --font-head:   'Clash Display', sans-serif;
  --font-body:   'Outfit', sans-serif;
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.orange-text { color: var(--orange); }
.red-text    { color: var(--red); }
.accent      { color: var(--orange); }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  background: var(--orange-dim);
  color: var(--orange);
  border: 1px solid var(--border);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-header p { color: var(--muted); font-size: 1.05rem; }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: background var(--transition), backdrop-filter var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(13,13,13,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
  box-shadow: 0 0 12px var(--orange-glow);
}
.logo-text {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width var(--transition);
  border-radius: 2px;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.btn-admin-nav {
  background: var(--orange-dim) !important;
  color: var(--orange) !important;
  border: 1px solid var(--border) !important;
  padding: 8px 20px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  transition: all var(--transition) !important;
}
.btn-admin-nav:hover {
  background: var(--orange) !important;
  color: var(--bg) !important;
  box-shadow: 0 0 20px var(--orange-glow) !important;
}
.btn-admin-nav::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.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); }

/* ════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
  background:
    radial-gradient(ellipse 70% 60% at 65% 40%, rgba(255,107,43,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(232,0,28,0.07) 0%, transparent 60%),
    var(--bg);
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,107,43,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,43,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite alternate;
}
.orb1 { width: 400px; height: 400px; background: rgba(255,107,43,0.09); top: -100px; right: 8%; }
.orb2 { width: 300px; height: 300px; background: rgba(232,0,28,0.08); bottom: 10%; left: 5%; animation-delay: -4s; }
.orb3 { width: 200px; height: 200px; background: rgba(255,107,43,0.06); top: 40%; left: 40%; animation-delay: -2s; }
@keyframes orbFloat {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(30px,20px) scale(1.1); }
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-dim);
  border: 1px solid var(--border);
  color: var(--orange);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease both;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-subtitle {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease 0.5s both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
  box-shadow: 0 0 30px var(--orange-glow);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px var(--orange-glow), 0 8px 30px rgba(232,0,28,0.3);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all var(--transition);
}
.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-3px);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.stat { text-align: center; }
.stat-num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--orange); }
.stat span { font-size: 1.5rem; color: var(--orange); }
.stat p { font-size: 0.8rem; color: var(--muted); margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* Hero Visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  animation: fadeInRight 1s ease 0.3s both;
  position: relative;
  z-index: 1;
}
.hero-logo-wrap {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--orange);
  box-shadow: 0 0 40px var(--orange-glow), 0 0 80px rgba(232,0,28,0.15);
  position: relative;
  z-index: 2;
  animation: logoPulse 3s ease-in-out infinite;
}
@keyframes logoPulse {
  0%,100% { box-shadow: 0 0 40px var(--orange-glow), 0 0 80px rgba(232,0,28,0.15); }
  50%      { box-shadow: 0 0 60px var(--orange-glow), 0 0 120px rgba(232,0,28,0.25); }
}
.logo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: ringPulse 3s ease-in-out infinite;
}
.ring1 { width: 220px; height: 220px; border-color: rgba(255,107,43,0.4); animation-delay: 0s; }
.ring2 { width: 250px; height: 250px; border-color: rgba(255,107,43,0.2); animation-delay: 0.5s; }
.ring3 { width: 280px; height: 280px; border-color: rgba(255,107,43,0.1); animation-delay: 1s; }
@keyframes ringPulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.05); opacity: 0.6; }
}

.equalizer {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 60px;
}
.eq-bar {
  width: 8px;
  background: linear-gradient(to top, var(--orange), var(--red));
  border-radius: 4px 4px 0 0;
  animation: eqAnim 0.8s ease-in-out infinite alternate;
}
.eq-bar:nth-child(1)  { height: 20px; animation-delay: 0.0s; }
.eq-bar:nth-child(2)  { height: 45px; animation-delay: 0.1s; }
.eq-bar:nth-child(3)  { height: 30px; animation-delay: 0.2s; }
.eq-bar:nth-child(4)  { height: 55px; animation-delay: 0.3s; }
.eq-bar:nth-child(5)  { height: 25px; animation-delay: 0.4s; }
.eq-bar:nth-child(6)  { height: 60px; animation-delay: 0.5s; }
.eq-bar:nth-child(7)  { height: 35px; animation-delay: 0.6s; }
.eq-bar:nth-child(8)  { height: 50px; animation-delay: 0.7s; }
.eq-bar:nth-child(9)  { height: 20px; animation-delay: 0.8s; }
.eq-bar:nth-child(10) { height: 40px; animation-delay: 0.9s; }
.eq-bar:nth-child(11) { height: 55px; animation-delay: 1.0s; }
.eq-bar:nth-child(12) { height: 28px; animation-delay: 1.1s; }
.eq-bar:nth-child(13) { height: 45px; animation-delay: 1.2s; }
.eq-bar:nth-child(14) { height: 18px; animation-delay: 1.3s; }
.eq-bar:nth-child(15) { height: 38px; animation-delay: 1.4s; }
@keyframes eqAnim {
  from { transform: scaleY(0.3); opacity: 0.6; }
  to   { transform: scaleY(1);   opacity: 1; }
}

.wave-divider { position: absolute; bottom: -1px; left: 0; right: 0; }
.wave-divider svg { width: 100%; height: 80px; display: block; }

/* ════════════════════════════════════════════════
   FEATURES
════════════════════════════════════════════════ */
.features { padding: 100px 0; background: var(--bg2); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.feature-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.feature-card:hover .feature-glow { opacity: 1; }
.feature-icon { font-size: 2.5rem; margin-bottom: 20px; display: block; }
.feature-card h3 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 600; margin-bottom: 12px; }
.feature-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }
.feature-glow {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(255,107,43,0.18) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

/* ════════════════════════════════════════════════
   CATEGORIES
════════════════════════════════════════════════ */
.categories-section { padding: 100px 0; background: var(--bg); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,107,43,0.08), rgba(232,0,28,0.05));
  opacity: 0;
  transition: opacity var(--transition);
}
.cat-card:hover, .cat-card.active {
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(255,107,43,0.15);
}
.cat-card:hover::before, .cat-card.active::before { opacity: 1; }
.cat-card.active { background: linear-gradient(135deg, rgba(255,107,43,0.15), rgba(232,0,28,0.1)); }
.cat-icon { font-size: 2.5rem; margin-bottom: 12px; display: block; position: relative; z-index: 1; }
.cat-card h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 600; margin-bottom: 8px; position: relative; z-index: 1; }
.cat-count {
  display: inline-block;
  background: var(--orange-dim);
  color: var(--orange);
  border: 1px solid var(--border);
  padding: 2px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

/* ════════════════════════════════════════════════
   SONGS SECTION
════════════════════════════════════════════════ */
.songs-section { padding: 100px 0; background: var(--bg2); }
.songs-filter-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  align-items: center;
  flex-wrap: wrap;
}
.search-input {
  flex: 1;
  min-width: 200px;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  padding: 12px 24px;
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}
.search-input:focus { border-color: var(--orange); }
.search-input::placeholder { color: var(--muted); }
.btn-clear-filter {
  background: var(--red-dim);
  color: var(--red);
  border: 1px solid var(--border-red);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-clear-filter:hover { background: var(--red); color: var(--white); }

.songs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.song-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  animation: fadeInUp 0.5s ease both;
}
.song-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(255,107,43,0.12);
}
.song-cover {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1a0e05, #0d0d0d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.song-cover img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.song-cover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.song-card:hover .song-cover-overlay { opacity: 1; }
.play-btn-overlay {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: var(--white);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--transition);
  border: none;
  box-shadow: 0 0 20px var(--orange-glow);
}
.play-btn-overlay:hover { transform: scale(1.1); }
.song-info { padding: 16px 20px; }
.song-subfolder {
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.song-genre-tag {
  display: inline-block;
  background: var(--orange-dim);
  color: var(--orange);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.song-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.song-artist { font-size: 0.85rem; color: var(--muted); margin-bottom: 14px; }
.song-actions { display: flex; gap: 10px; }
.btn-play-song, .btn-download-song {
  flex: 1;
  padding: 9px 0;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}
.btn-play-song {
  background: var(--orange-dim);
  color: var(--orange);
  border: 1px solid var(--border);
}
.btn-play-song:hover { background: var(--orange); color: var(--white); }
.btn-download-song {
  background: var(--red-dim);
  color: var(--red);
  border: 1px solid var(--border-red);
}
.btn-download-song:hover { background: var(--red); color: var(--white); }

.songs-empty { text-align: center; padding: 80px 20px; color: var(--muted); }
.empty-icon { font-size: 4rem; margin-bottom: 16px; }
.songs-empty h3 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 8px; color: var(--white); }

/* ════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════ */
.testimonials { padding: 100px 0; background: var(--bg); overflow: hidden; }
.carousel-wrapper { position: relative; }
.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  flex-shrink: 0;
  transition: border-color var(--transition);
}
.testimonial-card:hover { border-color: var(--border); }
.stars { color: var(--orange); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card > p { color: var(--muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 14px; }
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 0.95rem; color: var(--white); }
.reviewer span { font-size: 0.8rem; color: var(--muted); }
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 40px; }
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--orange);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  cursor: pointer;
}
.carousel-btn:hover { background: var(--orange); color: var(--white); }
.carousel-dots { display: flex; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--muted); cursor: pointer; transition: all var(--transition); }
.dot.active { background: var(--orange); width: 24px; border-radius: 4px; }

/* ════════════════════════════════════════════════
   PRICING
════════════════════════════════════════════════ */
.pricing { padding: 100px 0; background: var(--bg2); }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: start; }
.pricing-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.pricing-card:hover { transform: translateY(-6px); }
.pricing-card.featured {
  background: linear-gradient(135deg, #1a0e05, #0d0800);
  border-color: var(--orange);
  box-shadow: 0 0 60px rgba(255,107,43,0.15);
  transform: scale(1.04);
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.plan-badge {
  display: inline-block;
  background: var(--orange-dim);
  color: var(--orange);
  border: 1px solid var(--border);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.plan-badge.popular { background: linear-gradient(135deg, var(--orange), var(--red)); color: var(--white); border: none; }
.plan-price { font-family: var(--font-head); font-size: 3rem; font-weight: 700; color: var(--white); margin-bottom: 4px; line-height: 1; }
.currency { font-size: 1.5rem; vertical-align: top; margin-top: 8px; display: inline-block; }
.period { font-size: 1rem; color: var(--muted); font-weight: 400; }
.pricing-card h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 600; margin-bottom: 24px; }
.plan-features { margin-bottom: 32px; }
.plan-features li { padding: 8px 0; font-size: 0.9rem; color: var(--muted); border-bottom: 1px solid rgba(255,255,255,0.04); }
.plan-features li:last-child { border-bottom: none; }
.btn-plan, .btn-plan-featured {
  display: block; width: 100%; padding: 14px;
  border-radius: 10px; font-weight: 700; font-size: 0.95rem;
  text-align: center; transition: all var(--transition); cursor: pointer; border: none;
}
.btn-plan { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.15); }
.btn-plan:hover { border-color: var(--orange); color: var(--orange); }
.btn-plan-featured {
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: var(--white);
  box-shadow: 0 0 30px var(--orange-glow);
}
.btn-plan-featured:hover { box-shadow: 0 0 50px var(--orange-glow); transform: translateY(-2px); }
.card-glow {
  position: absolute; bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,107,43,0.15) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.footer {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer-glow {
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 200px;
  background: radial-gradient(ellipse, rgba(255,107,43,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-brand p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; margin: 16px 0 24px; max-width: 280px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; }
.footer-logo-img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
  box-shadow: 0 0 12px var(--orange-glow);
}
.social-links { display: flex; gap: 12px; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition); cursor: pointer;
}
.social-btn:hover { border-color: var(--border); transform: translateY(-3px); }
.footer-links h4 {
  font-family: var(--font-head); font-size: 0.95rem; font-weight: 600;
  color: var(--white); margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--muted); font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: var(--muted); font-size: 0.85rem; }
.footer-tagline { color: var(--orange) !important; font-weight: 600; }

/* ════════════════════════════════════════════════
   ADMIN MODAL
════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%; max-width: 600px;
  max-height: 90vh; overflow-y: auto;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 0 80px rgba(255,107,43,0.12);
}
.modal-overlay.active .modal-box { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--muted); font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); cursor: pointer; border: none;
}
.modal-close:hover { background: var(--red-dim); color: var(--red); }

/* Login */
.modal-logo-wrap { text-align: center; margin-bottom: 16px; }
.modal-logo-img {
  width: 90px; height: 90px;
  border-radius: 50%; object-fit: cover;
  border: 3px solid var(--orange);
  box-shadow: 0 0 24px var(--orange-glow);
  display: inline-block;
}
.modal-box h2 { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; text-align: center; margin-bottom: 6px; }
.modal-sub { color: var(--muted); text-align: center; font-size: 0.9rem; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--muted); margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.form-group input, .form-group select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 12px 16px;
  color: var(--white); font-size: 0.95rem;
  transition: border-color var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus { border-color: var(--orange); }
.form-group select option { background: var(--card2); }
.login-error {
  background: rgba(232,0,28,0.1); border: 1px solid rgba(232,0,28,0.3);
  color: var(--red); padding: 10px 16px; border-radius: 8px;
  font-size: 0.85rem; margin-bottom: 16px; display: none;
}
.btn-login {
  width: 100%;
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: var(--white); padding: 14px; border-radius: 10px;
  font-weight: 700; font-size: 1rem; border: none; cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 0 30px var(--orange-glow);
}
.btn-login:hover { box-shadow: 0 0 50px var(--orange-glow); transform: translateY(-2px); }

/* Admin Dashboard */
.admin-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 28px; padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.admin-header-left { display: flex; align-items: center; gap: 14px; }
.admin-logo-small {
  width: 52px; height: 52px;
  border-radius: 50%; object-fit: cover;
  border: 2px solid var(--orange);
  box-shadow: 0 0 12px var(--orange-glow);
}
.btn-logout {
  background: var(--red-dim); color: var(--red);
  border: 1px solid var(--border-red);
  padding: 8px 18px; border-radius: 8px;
  font-size: 0.85rem; font-weight: 600; cursor: pointer;
  transition: all var(--transition);
}
.btn-logout:hover { background: var(--red); color: var(--white); }
.upload-section, .manage-section {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); padding: 24px; margin-bottom: 20px;
}
.upload-section h3, .manage-section h3 {
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 600;
  margin-bottom: 20px; color: var(--orange);
}
.manage-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.manage-header h3 { margin-bottom: 0; }
.manage-header select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 6px 12px;
  color: var(--white); font-size: 0.85rem; outline: none;
}
.file-drop {
  border: 2px dashed rgba(255,107,43,0.25);
  border-radius: 10px; padding: 24px; text-align: center;
  cursor: pointer; transition: all var(--transition);
  background: rgba(255,107,43,0.02);
}
.file-drop:hover { border-color: var(--orange); background: var(--orange-dim); }
.file-drop-content { cursor: pointer; }
.file-icon { font-size: 2rem; display: block; margin-bottom: 8px; }
.file-drop p { color: var(--muted); font-size: 0.9rem; margin-bottom: 4px; }
.file-hint { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.file-selected { color: var(--orange); font-size: 0.9rem; font-weight: 600; padding: 8px 0; }

/* Progress bar */
.upload-progress { margin: 12px 0; }
.progress-bar {
  width: 100%; height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px; overflow: hidden; margin-bottom: 6px;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--red));
  border-radius: 3px;
  width: 0%;
  transition: width 0.3s ease;
}
.progress-text { font-size: 0.8rem; color: var(--muted); }

.btn-upload {
  width: 100%;
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: var(--white); padding: 14px; border-radius: 10px;
  font-weight: 700; font-size: 1rem; border: none; cursor: pointer;
  transition: all var(--transition); margin-top: 8px;
  box-shadow: 0 0 30px var(--orange-glow);
}
.btn-upload:hover { transform: translateY(-2px); box-shadow: 0 0 50px var(--orange-glow); }
.btn-upload:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.upload-success {
  background: rgba(255,107,43,0.1); border: 1px solid rgba(255,107,43,0.3);
  color: var(--orange); padding: 10px 16px; border-radius: 8px;
  font-size: 0.85rem; margin-top: 12px; text-align: center;
}
.upload-error {
  background: rgba(232,0,28,0.1); border: 1px solid rgba(232,0,28,0.3);
  color: var(--red); padding: 10px 16px; border-radius: 8px;
  font-size: 0.85rem; margin-top: 12px; text-align: center;
}
.manage-list { display: flex; flex-direction: column; gap: 10px; max-height: 300px; overflow-y: auto; }
.manage-item {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px; padding: 12px 16px; gap: 12px;
}
.manage-item-info { flex: 1; min-width: 0; }
.manage-item-title { font-weight: 600; font-size: 0.9rem; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.manage-item-meta { font-size: 0.78rem; color: var(--muted); }
.manage-item-subfolder { font-size: 0.75rem; color: var(--orange); }
.btn-delete {
  background: var(--red-dim); color: var(--red);
  border: 1px solid var(--border-red);
  padding: 6px 14px; border-radius: 6px;
  font-size: 0.8rem; font-weight: 600; cursor: pointer;
  transition: all var(--transition); flex-shrink: 0;
}
.btn-delete:hover { background: var(--red); color: var(--white); }
.manage-empty { color: var(--muted); font-size: 0.9rem; text-align: center; padding: 20px; }

/* ════════════════════════════════════════════════
   MINI PLAYER
════════════════════════════════════════════════ */
.mini-player {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: rgba(26,14,5,0.96);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 50px; padding: 12px 20px;
  display: flex; align-items: center; gap: 16px;
  z-index: 1500;
  box-shadow: 0 8px 40px rgba(0,0,0,0.7), 0 0 30px var(--orange-glow);
  min-width: 360px; max-width: 90vw;
  animation: slideUp 0.4s ease;
}
@keyframes slideUp {
  from { transform: translateX(-50%) translateY(100px); opacity: 0; }
  to   { transform: translateX(-50%) translateY(0); opacity: 1; }
}
.player-info { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
.player-cover {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--red));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; overflow: hidden;
}
.player-cover img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.player-meta { min-width: 0; }
.player-title { display: block; font-weight: 600; font-size: 0.85rem; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 160px; }
.player-artist { display: block; font-size: 0.75rem; color: var(--muted); }
.player-controls { display: flex; align-items: center; gap: 8px; }
.player-btn {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer; transition: all var(--transition); flex-shrink: 0;
}
.play-btn { background: linear-gradient(135deg, var(--orange), var(--red)); color: var(--white); font-size: 0.9rem; box-shadow: 0 0 12px var(--orange-glow); }
.play-btn:hover { transform: scale(1.1); }
.prev-btn, .next-btn { background: rgba(255,255,255,0.08); color: var(--muted); font-size: 0.8rem; }
.prev-btn:hover, .next-btn:hover { background: var(--orange-dim); color: var(--orange); }
.player-close { color: var(--muted); font-size: 0.8rem; cursor: pointer; padding: 4px; transition: color var(--transition); flex-shrink: 0; border: none; background: none; }
.player-close:hover { color: var(--red); }

/* ════════════════════════════════════════════════
   KEYFRAMES
════════════════════════════════════════════════ */
@keyframes fadeInDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInUp   { from { opacity:0; transform:translateY(30px);  } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInRight{ from { opacity:0; transform:translateX(40px);  } to { opacity:1; transform:translateX(0); } }

/* ════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .categories-grid { grid-template-columns: repeat(4,1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-6px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card { min-width: calc(50% - 12px); }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: rgba(13,13,13,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center;
    gap: 32px; padding: 40px;
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    border-left: 1px solid var(--border); z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; }
  .hamburger { display: flex; z-index: 1000; }
  .hero { padding: 100px 24px 60px; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-subtitle { margin: 0 auto 36px; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-logo-img { width: 160px; height: 160px; }
  .hero-logo-wrap { width: 220px; height: 220px; }
  .features-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2,1fr); }
  .testimonial-card { min-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .modal-box { padding: 28px 20px; }
  .admin-header { flex-direction: column; gap: 12px; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.5rem; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 1.6rem; }
  .songs-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2,1fr); }
  .mini-player { min-width: 92vw; border-radius: 16px; }
}