:root {
  --primary: #00f2ff;
  --secondary: #bd00ff;
  --accent: #ff006e;
  --dark: #030310;
  --dark2: #0a0a1a;
  --gray: #0f0f1e;
  --card-bg: rgba(15, 15, 30, 0.8);
  --light: #ffffff;
  --text: #c8cce8;
  --text-muted: #5a6080;
  --font-main: 'Inter', sans-serif;
  --font-display: 'Orbitron', monospace;
  --border: rgba(0, 242, 255, 0.1);
  --glow-cyan: 0 0 20px rgba(0, 242, 255, 0.4);
  --glow-purple: 0 0 20px rgba(189, 0, 255, 0.4);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

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

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Lang Switch ─── */
.lang-switch {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-muted);
  padding: 0.22rem 0.6rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.75rem;
  font-family: var(--font-main);
  transition: all 0.3s;
  letter-spacing: 0.05em;
}

.lang-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.lang-btn.active {
  background: var(--primary);
  color: var(--dark);
  border-color: var(--primary);
  font-weight: 700;
}

/* ─── Nav App Button ─── */
.nav-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.4rem 1.1rem;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 50px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: all 0.3s;
  animation: navBtnPulse 3s ease-in-out infinite;
  box-shadow: 0 0 18px rgba(189, 0, 255, 0.35);
}

.nav-app-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(189, 0, 255, 0.7);
  color: #fff;
}

@keyframes navBtnPulse {
  0%, 100% { box-shadow: 0 0 18px rgba(189, 0, 255, 0.35); }
  50% { box-shadow: 0 0 30px rgba(189, 0, 255, 0.65), 0 0 50px rgba(255, 0, 110, 0.2); }
}

/* ─── Header ─── */
.site-header {
  background: rgba(3, 3, 16, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 242, 255, 0.07);
  padding: 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-family: var(--font-display);
  font-size: 1.1rem;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: 0.05em;
}

.logo-img {
  height: 110px;
  width: auto;
  aspect-ratio: 16/9;
  object-fit: contain;
  max-width: 100%;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav > a:not(.nav-app-btn) {
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}

.nav > a:not(.nav-app-btn)::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s;
}

.nav > a:not(.nav-app-btn):hover {
  color: var(--primary);
}

.nav > a:not(.nav-app-btn):hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--light);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  padding: 1.5rem 0 6rem;
  text-align: center;
  overflow: hidden;
  background: var(--dark);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 242, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 242, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridScroll 25s linear infinite;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 242, 255, 0.05) 0%, rgba(189, 0, 255, 0.03) 40%, transparent 70%);
  pointer-events: none;
  animation: heroGlow 7s ease-in-out infinite;
}

@keyframes gridScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(60px); }
}

@keyframes heroGlow {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

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

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, var(--primary) 50%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: titleShift 6s ease-in-out infinite;
}

@keyframes titleShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 2rem;
  padding: 0.4rem 1rem;
  background: rgba(0, 242, 255, 0.06);
  border: 1px solid rgba(0, 242, 255, 0.15);
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: badgePulse 2s ease-in-out infinite;
  box-shadow: 0 0 6px var(--primary);
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
  transition: all 0.3s;
  cursor: pointer;
  letter-spacing: 0.02em;
}

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

.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  color: var(--dark);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 242, 255, 0.5);
  color: var(--dark);
}

/* ★ Hero App Launch Button */
.btn-app-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  background: linear-gradient(135deg, #ff006e 0%, #bd00ff 50%, #7c3aed 100%);
  background-size: 200% 200%;
  border: none;
  color: #fff !important;
  font-size: 1rem;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  animation: appBtnPulse 2.5s ease-in-out infinite, appBtnGrad 4s ease infinite;
  box-shadow:
    0 0 35px rgba(189, 0, 255, 0.5),
    0 0 70px rgba(255, 0, 110, 0.2),
    inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn-app-hero .btn-icon-wrap {
  font-size: 1.2rem;
  animation: rocketBounce 1.5s ease-in-out infinite;
}

@keyframes rocketBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.btn-app-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 2.5s ease-in-out infinite;
}

.btn-app-hero:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow:
    0 0 55px rgba(189, 0, 255, 0.75),
    0 0 90px rgba(255, 0, 110, 0.4);
  color: #fff !important;
}

@keyframes appBtnPulse {
  0%, 100% { box-shadow: 0 0 35px rgba(189, 0, 255, 0.5), 0 0 70px rgba(255, 0, 110, 0.2), inset 0 1px 0 rgba(255,255,255,0.25); }
  50% { box-shadow: 0 0 55px rgba(189, 0, 255, 0.8), 0 0 100px rgba(255, 0, 110, 0.4), inset 0 1px 0 rgba(255,255,255,0.25); }
}

@keyframes appBtnGrad {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes shimmer {
  0% { left: -100%; }
  50%, 100% { left: 150%; }
}

/* ─── App CTA Section ─── */
.app-cta-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.app-cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(189, 0, 255, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.app-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  background: rgba(10, 10, 26, 0.7);
  border: 1px solid rgba(189, 0, 255, 0.2);
  border-radius: 24px;
  padding: 3rem 3.5rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 0 0 1px rgba(189, 0, 255, 0.08),
    0 30px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.app-cta-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.app-cta-text h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.75rem;
  text-align: left;
  line-height: 1.2;
}

.app-cta-text p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 380px;
}

.app-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.app-cta-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* Big App Button */
.btn-app-mega {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 1.2rem 2.75rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #ff006e, #bd00ff);
  border: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  animation: megaGlow 3s ease-in-out infinite;
  box-shadow: 0 0 40px rgba(189, 0, 255, 0.4), 0 10px 30px rgba(0,0,0,0.3);
}

.btn-app-mega::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

.btn-app-mega span { position: relative; z-index: 1; }

.btn-app-mega:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 0 65px rgba(189, 0, 255, 0.7), 0 15px 40px rgba(0,0,0,0.4);
  color: #fff;
}

@keyframes megaGlow {
  0%, 100% { box-shadow: 0 0 40px rgba(189, 0, 255, 0.4), 0 10px 30px rgba(0,0,0,0.3); }
  50% { box-shadow: 0 0 65px rgba(189, 0, 255, 0.7), 0 10px 30px rgba(0,0,0,0.3), 0 0 80px rgba(255, 0, 110, 0.2); }
}

/* ─── Sections ─── */
.section {
  padding: 5rem 0;
  position: relative;
}

.section.alt {
  background: rgba(0,0,0,0.25);
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-align: center;
  background: linear-gradient(135deg, #fff 30%, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
}

/* ─── Grid / Cards ─── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  position: relative;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 242, 255, 0.3);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.4),
    0 0 30px rgba(0, 242, 255, 0.08);
}

.card-media {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}

.card:hover .card-media {
  transform: scale(1.04);
}

.card-body {
  padding: 1.5rem;
}

.card-body h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.06em;
}

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

/* Studio Cards */
.studio-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 242, 255, 0.08);
}

.studio-icon {
  font-size: 2.5rem;
  padding: 2rem 1.5rem 0.5rem;
  display: block;
  filter: drop-shadow(0 0 15px rgba(0, 242, 255, 0.5));
}

/* ─── Video Container ─── */
.video-container {
  position: relative;
  padding-bottom: 28.125%;
  height: 0;
  margin-top: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}

/* Artist card videos: fixed 215px height */
.card .video-container {
  padding-bottom: 0;
  height: 215px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ─── Releases List ─── */
.list {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.list li {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s;
}

.list li::before {
  content: '♪';
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px var(--primary));
}

.list li:hover {
  border-color: rgba(0, 242, 255, 0.25);
  background: rgba(0, 242, 255, 0.04);
  transform: translateX(5px);
}

.list li a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.list li a:hover {
  color: var(--primary);
}

/* ─── Floating Player ─── */
.float-player {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 285px;
  background: linear-gradient(135deg, rgba(10, 10, 26, 0.96) 0%, rgba(3, 3, 16, 0.98) 100%);
  border: 1px solid rgba(0, 242, 255, 0.25);
  border-radius: 20px;
  padding: 14px;
  z-index: 9999;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow:
    0 25px 60px rgba(0,0,0,0.7),
    0 0 40px rgba(0, 242, 255, 0.12),
    inset 0 1px 0 rgba(0, 242, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-origin: bottom right;
}

.float-player.hidden {
  opacity: 0;
  transform: scale(0.5) translateY(50px);
  pointer-events: none;
}

.float-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 24px;
  height: 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.85rem;
  box-shadow: 0 2px 10px rgba(255, 0, 110, 0.5);
  transition: 0.2s;
  z-index: 1;
}

.float-close:hover {
  transform: scale(1.15);
  background: #ff0044;
}

.float-content {
  background: rgba(0,0,0,0.45);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,0.04);
}

.float-visual {
  width: 54px;
  height: 54px;
  background: rgba(0,0,0,0.5);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(0, 242, 255, 0.18);
  position: relative;
  flex-shrink: 0;
}

.float-album-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.float-equalizer {
  display: flex;
  gap: 2px;
  align-items: flex-end;
  height: 18px;
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: rgba(0,0,0,0.35);
  padding: 2px 4px;
  border-radius: 4px;
  backdrop-filter: blur(2px);
}

.float-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
}

.float-label {
  font-size: 0.6rem;
  color: var(--primary);
  letter-spacing: 2px;
  font-weight: 800;
  margin-bottom: 2px;
}

.float-track-container {
  overflow: hidden;
  white-space: nowrap;
  mask-image: linear-gradient(90deg, transparent, #fff 5%, #fff 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #fff 5%, #fff 95%, transparent);
}

.float-song-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  display: inline-block;
  padding-left: 100%;
  animation: marquee 10s linear infinite;
}

@keyframes marquee {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-100%, 0); }
}

.float-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 50px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.04);
}

.float-ctrl-btn {
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 5px;
  transition: all 0.2s;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.float-ctrl-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.float-ctrl-btn:hover {
  color: var(--primary);
  background: rgba(0, 242, 255, 0.08);
  transform: scale(1.1);
}

.float-ctrl-btn:hover svg {
  filter: drop-shadow(0 0 5px rgba(0, 242, 255, 0.8));
}

/* ─── Mute Button ─── */
.mute-btn {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(3, 3, 16, 0.85);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 15px rgba(0, 242, 255, 0.2), inset 0 0 10px rgba(0, 242, 255, 0.05);
  font-family: var(--font-main);
  letter-spacing: 1px;
  text-transform: uppercase;
  clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
}

.mute-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

.mute-btn.warping {
  transition: top 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55), left 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.mute-btn:hover {
  background: rgba(0, 242, 255, 0.12);
  color: #fff;
  border-color: #fff;
  box-shadow: 0 0 25px rgba(0, 242, 255, 0.5), inset 0 0 15px rgba(0, 242, 255, 0.1);
  text-shadow: 0 0 8px rgba(255,255,255,0.8);
  transform: scale(1.08);
}

.mute-btn.active {
  bottom: 30px !important;
  right: 30px !important;
  top: auto !important;
  left: auto !important;
  border-color: var(--secondary);
  color: var(--secondary);
  box-shadow: 0 0 15px rgba(189, 0, 255, 0.3);
  transform: none !important;
}

.mute-btn.active:hover {
  background: rgba(189, 0, 255, 0.15);
  color: #fff;
  border-color: #fff;
  box-shadow: 0 0 25px rgba(189, 0, 255, 0.5);
  transform: scale(1.05) !important;
}

.equalizer-icon {
  display: flex;
  gap: 3px;
  height: 14px;
  align-items: flex-end;
}

.equalizer-icon span {
  width: 3px;
  background-color: currentColor;
  animation: equalize 1s infinite ease-in-out alternate;
}

.equalizer-icon span:nth-child(1) { height: 60%; animation-delay: -0.4s; }
.equalizer-icon span:nth-child(2) { height: 100%; animation-delay: -0.2s; }
.equalizer-icon span:nth-child(3) { height: 40%; animation-delay: -0.6s; }
.equalizer-icon span:nth-child(4) { height: 80%; animation-delay: -0.1s; }

.mute-btn.active .equalizer-icon span { animation-play-state: running; }
.mute-btn:not(.active) .equalizer-icon span { height: 3px !important; animation: none; }

@keyframes equalize {
  0% { height: 20%; }
  100% { height: 100%; }
}

.mute-text {
  font-weight: 700;
  font-size: 0.8rem;
}

/* ─── Contact ─── */
.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

input, textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  color: var(--light);
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: all 0.3s;
  margin-top: 0.25rem;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(0, 242, 255, 0.03);
  box-shadow: 0 0 0 3px rgba(0, 242, 255, 0.07);
}

textarea { resize: vertical; }

.contact-info {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.contact-info p {
  margin: 0.5rem 0;
  color: var(--text-muted);
}

.contact-info a {
  color: var(--primary);
  font-weight: 600;
}

.contact-info a:hover { text-decoration: underline; }

/* ─── Footer ─── */
.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.15em;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--primary); }

.footer-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.55rem 1.5rem;
  background: rgba(189, 0, 255, 0.08);
  border: 1px solid rgba(189, 0, 255, 0.25);
  border-radius: 50px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.3s;
  letter-spacing: 0.05em;
}

.footer-app-btn:hover {
  background: rgba(189, 0, 255, 0.18);
  border-color: rgba(189, 0, 255, 0.5);
  transform: translateY(-2px);
  color: var(--primary);
}

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

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ─── Hidden ─── */
.hidden { display: none !important; }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .app-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 2rem;
  }

  .app-cta-text h2 { text-align: center; }
  .app-cta-text p { margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(3, 3, 16, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem;
    text-align: center;
    gap: 1.2rem;
    border-bottom: 1px solid rgba(0, 242, 255, 0.08);
  }

  .nav.active { display: flex; }
  .nav-toggle { display: block; }

  .hero { padding: 1.5rem 0 4rem; }

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

  .btn-app-hero {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .float-player {
    bottom: 16px;
    right: 16px;
    width: 258px;
  }
}

@media (max-width: 480px) {
  .logo-img { height: 80px; }
  .section { padding: 3.5rem 0; }
  .app-cta-inner { padding: 1.75rem 1.5rem; }
  .btn-app-mega { font-size: 0.9rem; padding: 1rem 2rem; }
}
