/* ═══════════════════════════════════════════════
   SDC MUSIC INC — style.css
   Dark Red Premium Design System
   ═══════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --red: #E31B23;
  --red-dark: #A0121A;
  --red-glow: rgba(227, 27, 35, 0.3);
  --red-subtle: rgba(227, 27, 35, 0.08);
  --bg-primary: #080A0C;
  --bg-secondary: #0D1014;
  --bg-card: #111519;
  --bg-card-hover: #161C22;
  --text-primary: #FFFFFF;
  --text-secondary: #8A94A6;
  --text-muted: #4A5568;
  --border: rgba(255, 255, 255, 0.06);
  --border-red: rgba(227, 27, 35, 0.3);
  --nav-h: 75px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Space Grotesk', 'Outfit', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--red);
  color: #fff;
}

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: inherit;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 6px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--red-dark);
  border-radius: 3px;
}

/* ── CURSOR GLOW ── */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(227, 27, 35, 0.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}

/* ── NOISE OVERLAY ── */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─────────────────────────────────────────
   NAVBAR
───────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  overflow: visible;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
  background: linear-gradient(180deg, rgba(8, 10, 12, 0.95) 0%, rgba(8, 10, 12, 0.4) 60%, transparent 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.navbar.scrolled {
  background: rgba(8, 10, 12, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Logo en el navbar */
.navbar .logo-img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(227, 27, 35, 0.3));
  transition: transform var(--transition), filter var(--transition), opacity var(--transition);
  position: relative;
  z-index: 10;
  opacity: 0.92;
}

.navbar .logo-img:hover {
  transform: scale(1.06);
  opacity: 1;
  filter: drop-shadow(0 0 18px rgba(227, 27, 35, 0.6)) drop-shadow(0 0 6px rgba(255,255,255,0.15));
}

.logo-icon {
  display: flex;
  align-items: center;
}

.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: #fff;
}

.logo-accent {
  color: var(--red);
  margin-left: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0 auto;
}

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-nav-cta {
  padding: 0.55rem 1.3rem;
  background: var(--red);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-nav-cta:hover {
  background: #ff2128;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--red-glow);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}



/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(8, 10, 12, 0.97);
  backdrop-filter: blur(20px);
  padding: 2rem;
  z-index: 99;
  transform: translateY(-110%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid var(--border);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu ul {
  margin-bottom: 2rem;
}

.mobile-menu li {
  border-bottom: 1px solid var(--border);
}

.mobile-link {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition), padding var(--transition);
}

.mobile-link:hover {
  color: var(--red);
  padding-left: 0.5rem;
}

.btn-mobile-cta {
  display: block;
  text-align: center;
  padding: 0.9rem;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 8px;
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: var(--nav-h) 0 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(180deg, rgba(8, 10, 12, 0.2) 0%, rgba(8, 10, 12, 0.75) 75%, #080A0C 100%),
    radial-gradient(circle, transparent 40%, rgba(8, 10, 12, 0.85) 100%),
    url("assets/studio-bg.jpg");
  background-size: cover;
  background-position: center 38%;
  background-repeat: no-repeat;
  filter: brightness(0.9) saturate(1.1);
  z-index: 0;
}

.hero-scanlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(0deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.06) 2px,
      rgba(0, 0, 0, 0.06) 4px);
}

/* Decorative lines like reference */
.deco-line {
  position: absolute;
  background: var(--red);
  z-index: 2;
  pointer-events: none;
}

.deco-line-top {
  top: calc(var(--nav-h) + 20px);
  right: 0;
  width: 220px;
  height: 4px;
}

.deco-line-right {
  top: calc(var(--nav-h) + 100px);
  right: 0;
  width: 5px;
  height: 100px;
}

.deco-corner {
  position: absolute;
  border: 2px solid var(--red);
  pointer-events: none;
  z-index: 2;
}

.deco-corner-tr {
  top: calc(var(--nav-h) + 16px);
  right: 220px;
  width: 20px;
  height: 20px;
  border-left: none;
  border-bottom: none;
}

.deco-corner-bl {
  bottom: 80px;
  left: 40px;
  width: 20px;
  height: 20px;
  border-right: none;
  border-top: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--red);
  animation: floatParticle linear infinite;
  opacity: 0;
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.3;
  }

  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding: 4.5rem 2rem 3rem;
  margin-left: max(2rem, calc((100vw - 1200px)/2 + 2rem));
  animation: heroFadeIn 1s ease forwards;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  animation: blink 1.5s ease infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 8px var(--red);
  }

  50% {
    opacity: 0.4;
    box-shadow: 0 0 0px transparent;
  }
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  line-height: 0.88;
  margin-bottom: 1rem;
  overflow: hidden;
}

.title-line {
  display: block;
}

.title-line-1 {
  font-size: clamp(5rem, 12vw, 10rem);
  color: #fff;
  animation: slideInLeft 0.8s ease 0.2s both;
}

.title-line-2 {
  font-size: clamp(5rem, 12vw, 10rem);
  color: transparent;
  -webkit-text-stroke: 2px rgba(227, 27, 35, 0.8);
  animation: slideInLeft 0.8s ease 0.4s both;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-60px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.hero-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--red);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: heroFadeIn 0.8s ease 0.5s both;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2.5rem;
  animation: heroFadeIn 0.8s ease 0.6s both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: heroFadeIn 0.8s ease 0.7s both;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 1.8rem;
  background: var(--red);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 8px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-primary:hover {
  background: #ff2128;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(227, 27, 35, 0.4);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:active {
  transform: translateY(0);
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.85rem 1.8rem;
  background: transparent;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all var(--transition);
}

.btn-secondary:hover {
  border-color: var(--red);
  background: var(--red-subtle);
  color: var(--red);
}

.btn-play-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* HERO STATS */
.hero-stats {
  position: absolute;
  right: max(3rem, calc((100vw - 1200px)/2 + 2rem));
  bottom: 12%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  animation: heroFadeIn 1s ease 0.8s both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: #fff;
  line-height: 1;
}

.stat-plus {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--red);
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 2px;
}

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

/* SOCIAL SIDEBAR */
.social-sidebar {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: heroFadeIn 1s ease 0.9s both;
}

.social-link {
  color: var(--text-muted);
  transition: color var(--transition), transform var(--transition);
  display: flex;
}

.social-link:hover {
  color: var(--red);
  transform: scale(1.2);
}

.social-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--border), transparent);
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  animation: heroFadeIn 1s ease 1s both;
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid var(--text-muted);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.scroll-wheel {
  width: 3px;
  height: 6px;
  background: var(--red);
  border-radius: 2px;
  animation: scrollAnim 2s ease infinite;
}

@keyframes scrollAnim {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(10px);
    opacity: 0;
  }
}

/* ─────────────────────────────────────────
   SECTION COMMONS
───────────────────────────────────────── */
.section-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(6rem, 15vw, 14rem);
  color: rgba(255, 255, 255, 0.012);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: 0.1em;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.section-tag {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 6vw, 3.8rem);
  letter-spacing: 0.06em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

.text-red {
  color: var(--red);
}

/* ─────────────────────────────────────────
   SERVICES
───────────────────────────────────────── */
.services {
  position: relative;
  padding: 7rem 0;
  background: var(--bg-secondary);
  overflow: hidden;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  animation: fadeInUp 0.6s ease both;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-red);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px var(--red-subtle);
}

.service-card-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
  top: -60px;
  right: -60px;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.service-card:hover .service-card-glow {
  opacity: 1;
}

.service-card-featured {
  border-color: var(--border-red);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(227, 27, 35, 0.05) 100%);
}

.featured-glow {
  opacity: 0.6 !important;
}

.service-badge-featured {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #fff;
  background: var(--red);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.service-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: var(--red-subtle);
  border: 1px solid var(--border-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: background var(--transition), transform var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: rgba(227, 27, 35, 0.15);
  transform: scale(1.05);
}

.service-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.service-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-desc {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.service-features {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.service-features li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
}

.service-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--red);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--red);
  transition: gap var(--transition);
}

.service-link:hover {
  gap: 10px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─────────────────────────────────────────
   RECORDING SECTION
───────────────────────────────────────── */
.recording-section {
  padding: 7rem 0;
  background: var(--bg-primary);
  position: relative;
}

.recording-section::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  height: 60%;
  background: radial-gradient(ellipse at left, rgba(227, 27, 35, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.recording-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.recording-visual {
  position: relative;
}

.rec-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--red);
  border: 1px solid var(--border-red);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  background: var(--red-subtle);
}

.rec-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 1s ease infinite;
}

.waveform-container {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.waveform-container::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to bottom, transparent, rgba(227, 27, 35, 0.05));
  pointer-events: none;
}

.waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 100px;
}

.waveform-bar {
  width: 3px;
  border-radius: 2px;
  background: var(--red);
  animation: waveAnim ease-in-out infinite alternate;
  transform-origin: bottom;
}

@keyframes waveAnim {
  from {
    transform: scaleY(0.1);
  }

  to {
    transform: scaleY(1);
  }
}

.rec-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.rec-info-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  transition: border-color var(--transition);
}

.rec-info-card:hover {
  border-color: var(--border-red);
}

.rec-info-icon {
  font-size: 1.3rem;
}

.rec-info-card strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
}

.rec-info-card span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.recording-content {
  position: relative;
}

.recording-desc {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.recording-features {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.rec-feat {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.rec-feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--red-subtle);
  border: 1px solid var(--border-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rec-feat h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.rec-feat p {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ─────────────────────────────────────────
   BEATS
───────────────────────────────────────── */
.beats-section {
  position: relative;
  padding: 7rem 0;
  background: var(--bg-secondary);
  overflow: hidden;
}

.beats-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.beat-item {
  display: grid;
  grid-template-columns: 50px 1fr 1fr auto auto auto auto auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all var(--transition);
  cursor: pointer;
}

.beat-item:hover,
.beat-item.active {
  border-color: var(--border-red);
  background: var(--bg-card-hover);
  transform: translateX(4px);
}

.beat-play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red-subtle);
  border: 1px solid var(--border-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  transition: all var(--transition);
  flex-shrink: 0;
}

.beat-play-btn:hover,
.beat-item.active .beat-play-btn {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 20px var(--red-glow);
}

.beat-info {
  min-width: 0;
}

.beat-name {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.beat-genre {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

.beat-waveform {
  flex: 1;
}

.mini-wave {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 32px;
}

.mini-bar {
  width: 2px;
  border-radius: 1px;
  background: var(--text-muted);
  transition: background var(--transition);
}

.beat-item.active .mini-bar {
  background: var(--red);
  animation: miniWaveAnim 0.5s ease-in-out infinite alternate;
}

@keyframes miniWaveAnim {
  from {
    transform: scaleY(0.3);
  }

  to {
    transform: scaleY(1);
  }
}

.beat-key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  padding: 0.2rem 0.5rem;
  background: var(--red-subtle);
  border: 1px solid var(--border-red);
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--red);
  white-space: nowrap;
  font-family: 'Space Grotesk', monospace;
  transition: all var(--transition);
}

.beat-item.active .beat-key,
.beat-item:hover .beat-key {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.beat-duration,
.beat-bpm {
  font-size: 0.8rem;
  color: var(--text-secondary);
  white-space: nowrap;
  font-feature-settings: "tnum";
}

.beat-bpm {
  font-size: 0.72rem;
}

.beat-buy {
  padding: 0.45rem 1rem;
  background: transparent;
  border: 1px solid var(--border-red);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 6px;
  white-space: nowrap;
  transition: all var(--transition);
}

.beat-buy:hover {
  background: var(--red);
  color: #fff;
}

.beats-cta {
  text-align: center;
  position: relative;
  z-index: 1;
}

.beats-cta p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* ─────────────────────────────────────────
   ARTISTS
───────────────────────────────────────── */
.artists-section {
  position: relative;
  padding: 7rem 0;
  background: var(--bg-primary);
  overflow: hidden;
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 420px));
  justify-content: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.artist-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.artist-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-red);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px var(--red-subtle);
}

.artist-card-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
  top: -80px;
  right: -80px;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
  z-index: 0;
}

.artist-card:hover .artist-card-glow {
  opacity: 1;
}

.artist-img-wrap {
  width: 100%;
  height: 340px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: #111;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.artist-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
  filter: grayscale(40%) contrast(110%);
}

.artist-card:hover .artist-img {
  transform: scale(1.06);
  filter: grayscale(0%) contrast(105%);
}

.artist-silhouette {
  width: 100%;
  height: 100%;
  padding: 2.5rem;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.artist-card:hover .artist-silhouette {
  transform: scale(1.08);
}

.artist-info {
  padding: 2rem;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.artist-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.artist-genre {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.artist-bio {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.artist-socials {
  display: flex;
  gap: 1.25rem;
  margin-top: auto;
  align-items: center;
}

.artist-socials a {
  color: var(--text-muted);
  transition: color var(--transition), transform var(--transition);
  display: flex;
  align-items: center;
}

.artist-socials a:hover {
  color: var(--red);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────
   PORTFOLIO
───────────────────────────────────────── */
.portfolio-section {
  padding: 7rem 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.portfolio-filters {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.filter-btn {
  padding: 0.5rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: all var(--transition);
}

.filter-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.portfolio-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition);
}

.portfolio-item:hover {
  transform: scale(1.02);
}

.portfolio-item-wide {
  grid-column: span 2;
}

.port-img {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.port-img-1 {
  background: linear-gradient(135deg, #1a0508 0%, #3d0000 40%, #1a0508 100%);
}

.port-img-2 {
  background: linear-gradient(135deg, #0a0a14 0%, #1a0032 50%, #3d0000 100%);
}

.port-img-3 {
  background: linear-gradient(135deg, #001a0a 0%, #002a14 50%, #0a1a00 100%);
}

.port-img-4 {
  background: linear-gradient(135deg, #1a1000 0%, #3d2800 40%, #1a0508 100%);
}

.port-img-5 {
  background: linear-gradient(135deg, #00101a 0%, #001432 50%, #0a001a 100%);
}

.port-img-6 {
  background: linear-gradient(135deg, #0a1a00 0%, #002800 50%, #001a10 100%);
}

/* Port visual decorations */
.port-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(227, 27, 35, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(227, 27, 35, 0.1) 0%, transparent 50%);
}

.port-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(227,27,35,0.06)' stroke-width='0.5'%3E%3Cpath d='M0 0h40M0 40h40M0 0v40M40 0v40'/%3E%3C/g%3E%3C/svg%3E");
}

.port-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 10, 12, 0.95) 0%, rgba(8, 10, 12, 0.3) 50%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.portfolio-item:hover .port-overlay {
  opacity: 1;
}

.port-tag {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.port-overlay-content h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.port-overlay-content p {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* ─────────────────────────────────────────
   PRICING
───────────────────────────────────────── */
.pricing-section {
  padding: 4.5rem 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.8rem;
  position: relative;
  transition: all var(--transition);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.pricing-card-featured {
  border-color: var(--red);
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(227, 27, 35, 0.06) 100%);
  box-shadow: 0 0 40px rgba(227, 27, 35, 0.12);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  white-space: nowrap;
}

.price-header {
  margin-bottom: 1.25rem;
}

.price-tier {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.price-amount {
  display: flex;
  align-items: flex-start;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.price-currency {
  font-size: 1.2rem;
  margin-top: 0.35rem;
}

.price-period {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.price-features li {
  font-size: 0.87rem;
  color: var(--text-secondary);
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.price-features li.disabled {
  color: var(--text-muted);
  text-decoration: line-through;
}

.check {
  color: var(--red);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.btn-price-outline {
  display: block;
  text-align: center;
  padding: 0.85rem;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all var(--transition);
}

.btn-price-outline:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.contact-section {
  padding: 7rem 0;
  background: var(--bg-secondary);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  height: 80%;
  background: radial-gradient(ellipse at right, rgba(227, 27, 35, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-desc {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--red-subtle);
  border: 1px solid var(--border-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-detail-item span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.contact-link {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.contact-link:hover {
  color: var(--red);
}

/* FORM */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  z-index: 1;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(227, 27, 35, 0.12);
}

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

.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #22c55e;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 1rem;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 8px;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
}

.footer-top {
  background: var(--bg-primary);
  padding: 5rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}

.footer-social-link:hover {
  border-color: var(--red);
  color: var(--red);
}

.footer-links-group h5 {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

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

.footer-links-group a:hover {
  color: var(--red);
  padding-left: 4px;
}

.footer-newsletter h5 {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.footer-newsletter p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.newsletter-form:focus-within {
  border-color: var(--border-red);
}

.newsletter-form input {
  flex: 1;
  background: var(--bg-card);
  border: none;
  outline: none;
  padding: 0.7rem 1rem;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.85rem;
}

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

.newsletter-form button {
  background: var(--red);
  color: #fff;
  padding: 0 1rem;
  transition: background var(--transition);
  display: flex;
  align-items: center;
}

.newsletter-form button:hover {
  background: #ff2128;
}

.footer-bottom {
  background: var(--bg-secondary);
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────
   FLOATING LIVE CHAT
───────────────────────────────────────── */
.chat-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1010;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--red) 0%, #a30e12 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(227, 27, 35, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fabPop 0.5s ease 2s both;
}

.chat-fab:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 32px rgba(227, 27, 35, 0.55), 0 0 15px rgba(227, 27, 35, 0.3);
}

.chat-fab-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #fff;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  border: 2px solid var(--red);
  animation: badgePulse 2s infinite;
}

.chat-window {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  z-index: 1010;
  width: 370px;
  height: 520px;
  max-height: calc(100vh - 10rem);
  display: flex;
  flex-direction: column;
  background: rgba(10, 12, 14, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(227, 27, 35, 0.2);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(227, 27, 35, 0.1);
  overflow: hidden;
  transform: translateY(30px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-window.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}

.chat-header {
  padding: 1rem 1.25rem;
  background: linear-gradient(90deg, rgba(163, 14, 18, 0.15) 0%, rgba(227, 27, 35, 0.05) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-agent-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chat-agent-avatar-wrap {
  position: relative;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.chat-agent-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1.5px solid rgba(227, 27, 35, 0.3);
  object-fit: contain;
  background: #080a0c;
  padding: 2px;
}

.chat-status-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid #080a0c;
  box-shadow: 0 0 8px #22c55e;
}

.chat-agent-name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.chat-agent-status {
  font-size: 0.72rem;
  color: #22c55e;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 3px;
}

.chat-minimize-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.2rem;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-minimize-btn:hover {
  color: #fff;
}

.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  scroll-behavior: smooth;
}

/* Custom scrollbar for chat */
.chat-body::-webkit-scrollbar {
  width: 4px;
}

.chat-body::-webkit-scrollbar-track {
  background: transparent;
}

.chat-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.chat-body::-webkit-scrollbar-thumb:hover {
  background: rgba(227, 27, 35, 0.3);
}

.chat-messages-container {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.chat-msg {
  display: flex;
  flex-direction: column;
  max-width: 80%;
  animation: msgFadeIn 0.3s cubic-bezier(0.25, 1, 0.5, 1) both;
}

.chat-msg-received {
  align-self: flex-start;
}

.chat-msg-sent {
  align-self: flex-end;
}

.chat-msg-bubble {
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  line-height: 1.45;
  border-radius: 16px;
  position: relative;
  word-break: break-word;
}

.chat-msg-received .chat-msg-bubble {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--text-primary);
  border-top-left-radius: 4px;
}

.chat-msg-sent .chat-msg-bubble {
  background: var(--red);
  color: #fff;
  border-top-right-radius: 4px;
  box-shadow: 0 4px 12px rgba(227, 27, 35, 0.25);
}

.chat-msg-time {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  padding: 0 0.25rem;
}

.chat-msg-sent .chat-msg-time {
  align-self: flex-end;
}

/* Typing Indicator */
.chat-typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0.6rem 1rem;
  border-radius: 16px;
  border-top-left-radius: 4px;
  align-self: flex-start;
  width: fit-content;
}

.chat-typing-indicator span {
  width: 6px;
  height: 6px;
  background-color: var(--text-secondary);
  border-radius: 50%;
  display: inline-block;
  animation: typingPulse 1.4s infinite ease-in-out both;
}

.chat-typing-indicator span:nth-child(1) {
  animation-delay: -0.32s;
}

.chat-typing-indicator span:nth-child(2) {
  animation-delay: -0.16s;
}

/* Quick Replies */
.chat-quick-replies {
  padding: 0.5rem 1.25rem 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-height: 120px;
  overflow-y: auto;
}

.chat-reply-chip {
  background: rgba(227, 27, 35, 0.06);
  border: 1px solid rgba(227, 27, 35, 0.25);
  color: var(--text-secondary);
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
  font-family: 'Outfit', sans-serif;
}

.chat-reply-chip:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(227, 27, 35, 0.2);
}

/* WhatsApp action button inside bubbles */
.chat-action-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 0.5rem;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
}

.chat-action-btn-wa:hover {
  background: #20ba59;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

/* Input Area */
.chat-input-area {
  padding: 0.85rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(12, 14, 16, 0.95);
}

.chat-input-area input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.65rem 1rem;
  color: #fff;
  font-size: 0.88rem;
  font-family: inherit;
  outline: none;
  transition: all var(--transition);
}

.chat-input-area input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(227, 27, 35, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.chat-send-btn {
  background: var(--red);
  color: #fff;
  border: none;
  outline: none;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}

.chat-send-btn:hover {
  background: #ff2128;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(227, 27, 35, 0.3);
}

/* Animations */
@keyframes fabPop {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes badgePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    transform: scale(1.15);
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

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

@keyframes typingPulse {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

/* ─────────────────────────────────────────
   RESPONSIVE OVERLAY FOR MOBILE (<= 480px)
───────────────────────────────────────── */
@media (max-width: 480px) {
  .chat-window {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
    border: none;
  }
  
  .chat-window.open {
    transform: translateY(0);
  }
  
  .chat-fab {
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

/* ─────────────────────────────────────────
   SCROLL ANIMATIONS
───────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (min-width: 769px) and (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
    gap: 1.5rem;
  }
}

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

  .recording-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .recording-content .btn-primary {
    margin: 0 auto;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .contact-details {
    align-items: center;
  }

  /* Grid layout for 6 visible beat-item elements to prevent grid overflow on mobile & tablets */
  .beat-item {
    grid-template-columns: 44px auto auto 1fr auto;
    grid-template-rows: auto auto;
    gap: 0.6rem 0.8rem;
    padding: 1rem;
    align-items: center;
  }

  .beat-play-btn {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .beat-info {
    grid-column: 2 / span 3;
    grid-row: 1;
  }

  .beat-waveform {
    display: none;
  }

  .beat-key {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
  }

  .beat-duration {
    grid-column: 3;
    grid-row: 2;
    justify-self: start;
  }

  .beat-bpm {
    display: none;
  }

  .beat-buy {
    grid-column: 5;
    grid-row: 1;
    justify-self: end;
  }

  .beat-share-btn {
    grid-column: 5;
    grid-row: 2;
    justify-self: end;
  }

  /* Centered Hero for tablets & mobiles */
  .hero-content {
    padding: 4.5rem 1.5rem 3rem;
    margin: 0 auto;
    text-align: center;
  }

  .hero-btns {
    justify-content: center;
  }

  .deco-line,
  .deco-corner {
    display: none;
  }

  /* Centered Artists for tablets & mobiles */
  .artists-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
    gap: 2rem;
  }

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

  .artist-socials {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  .nav-container {
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .btn-nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
    max-width: 480px;
    margin: 0 auto;
    gap: 1.5rem;
  }

  .portfolio-item-wide {
    grid-column: span 1;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }

  .recording-section {
    padding: 4.5rem 0;
  }

  .waveform-container {
    padding: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .waveform {
    height: 80px;
  }

  .recording-features {
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .rec-feat h4 {
    font-size: 1rem;
  }

  .rec-feat p {
    font-size: 0.85rem;
  }

  /* Centered footer structure */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .footer-links-group,
  .footer-newsletter {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand .nav-logo {
    margin: 0 auto 1rem;
  }

  .footer-social {
    justify-content: center;
  }

  .newsletter-form {
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .social-sidebar {
    display: none;
  }

  .contact-section::before {
    display: none;
  }
}

@media (max-width: 576px) {
  .rec-info-cards {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 1.5rem;
  }

  .pricing-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .pricing-grid {
    max-width: 100%;
  }

  .pricing-card {
    padding: 1.2rem;
  }
}

/* ═══════════════════════════════════════════════
   LIGHTBOX MODAL
   ═══════════════════════════════════════════════ */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 12, 0.96);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--transition), transform var(--transition);
  z-index: 2001;
}

.lightbox-close:hover {
  color: var(--red);
  transform: scale(1.1);
}

.lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-modal.open .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 40px rgba(227, 27, 35, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox-caption {
  margin-top: 1.5rem;
  text-align: center;
  color: #fff;
}

.lightbox-tag {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.lightbox-caption h4 {
  font-size: 1.5rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.lightbox-caption p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════
   SHARE FAB & BUTTONS & MODAL STYLE
   ═══════════════════════════════════════════════ */

/* Global Floating Share Button */
.share-fab {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 90;
  width: 58px;
  height: 58px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px var(--red-glow);
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: #fff;
}

.share-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(227, 27, 35, 0.6);
}

/* Beat Share Button */
.beat-share-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red-subtle);
  border: 1px solid var(--border-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  transition: all var(--transition);
  flex-shrink: 0;
  cursor: pointer;
}

.beat-share-btn:hover {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 20px var(--red-glow);
}

/* Portfolio Share Button */
.port-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 0.75rem;
  padding: 0.35rem 0.75rem;
  background: var(--red-subtle);
  border: 1px solid var(--border-red);
  color: #fff;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.port-share-btn:hover {
  background: var(--red);
  border-color: var(--red);
}

/* Track Share Button inside Playlist */
.track-share-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition);
  font-size: 0.9rem;
  padding: 0.2rem;
  margin-left: auto;
  z-index: 10;
}

.track-item:hover .track-share-btn {
  color: #fff;
}

.track-share-btn:hover {
  color: var(--red) !important;
}

/* Player Bar Share Button */
.player-share-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color var(--transition);
  font-size: 0.95rem;
  padding: 0.25rem;
  margin-left: 8px;
}

.player-share-btn:hover {
  color: var(--red);
}

/* Share Modal Overlay */
.share-modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 12, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.share-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.share-modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: 16px;
  padding: 2rem;
  width: 90%;
  max-width: 400px;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px var(--red-glow);
}

.share-modal.open .share-modal-content {
  transform: translateY(0);
}

.share-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.share-modal-header h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  color: #fff;
}

.share-modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color var(--transition);
}

.share-modal-close:hover {
  color: var(--red);
}

.share-modal-subtitle {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* Share Modal Preview Card */
.share-modal-preview {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
}

.share-preview-cover {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(227, 27, 35, 0.35);
  box-shadow: 0 0 12px rgba(227, 27, 35, 0.15);
}

.share-preview-info {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.share-preview-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.share-preview-artist {
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

.share-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.share-option-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  transition: all var(--transition);
  cursor: pointer;
}

.share-option-btn:hover {
  transform: translateY(-2px);
  border-color: var(--red);
  box-shadow: 0 4px 12px rgba(227, 27, 35, 0.15);
}

.btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.12);
  border-color: #25D366;
}

.btn-telegram:hover {
  background: rgba(38, 165, 228, 0.12);
  border-color: #26A5E4;
}

.btn-x:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}

.btn-facebook:hover {
  background: rgba(24, 119, 242, 0.12);
  border-color: #1877F2;
}

.btn-instagram:hover {
  background: rgba(220, 39, 67, 0.12);
  border-color: #dc2743;
}

.btn-tiktok:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: #69C9D0;
}

.btn-email:hover {
  background: rgba(227, 27, 35, 0.12);
  border-color: var(--red);
}

.btn-copy:hover {
  background: rgba(227, 27, 35, 0.12);
  border-color: var(--red);
}

/* Navbar Share Button */
.btn-nav-share {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0.45rem 1rem;
  border: 1px solid var(--border-red);
  border-radius: 6px;
  background: var(--red-subtle);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-nav-share:hover {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 16px var(--red-glow);
}

.share-modal-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 768px) {
  .btn-nav-share {
    display: none;
  }
}

@media (max-width: 768px) {
  .share-fab {
    bottom: 2rem;
    left: 1.5rem;
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
}

@media (min-width: 769px) and (max-width: 1280px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─────────────────────────────────────────
   SHOPPING CART & MODAL STYLES
───────────────────────────────────────── */
.btn-cart-toggle {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-cart-toggle:hover {
  border-color: var(--red);
  color: var(--red);
  box-shadow: 0 0 12px var(--red-glow);
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-primary);
}

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  visibility: hidden;
  transition: visibility 0.4s;
}

.cart-drawer.open {
  visibility: visible;
}

.cart-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s;
}

.cart-drawer.open .cart-drawer-overlay {
  opacity: 1;
}

.cart-drawer-content {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  height: 100%;
  max-height: 100vh;
  min-height: 0;
  overflow: hidden;
  background: rgba(10, 10, 12, 0.98);
  border-left: 1px solid var(--border);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 2rem;
}

.cart-drawer.open .cart-drawer-content {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.cart-drawer-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

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

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

.cart-drawer-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  min-height: 0;
}

.cart-items-list {
  flex-grow: 1;
  overflow-y: auto;
  margin-bottom: 1.5rem;
  min-height: 0;
}

.empty-cart-msg {
  color: var(--text-muted);
  text-align: center;
  margin-top: 3rem;
  font-size: 0.9rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: left;
}

.cart-item-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
}

.cart-item-license {
  font-size: 0.75rem;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.cart-item-price-remove {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-item-price {
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
}

.cart-item-remove-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition);
  font-size: 0.9rem;
}

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

/* Summary */
.cart-summary {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.total-row {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.8rem;
  margin-top: 0.4rem;
}

/* License Modal */
.license-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  visibility: hidden;
  transition: visibility 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.license-modal.open {
  visibility: visible;
}

.license-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.4s;
}

.license-modal.open .license-modal-overlay {
  opacity: 1;
}

.license-modal-content {
  position: relative;
  background: rgba(15, 15, 20, 0.98);
  border: 1px solid var(--border);
  border-radius: 20px;
  width: 90%;
  max-width: 550px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  padding: 2.5rem;
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
  z-index: 10;
}

.license-modal.open .license-modal-content {
  transform: scale(1);
  opacity: 1;
}

.license-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.license-modal-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.license-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.3rem;
  cursor: pointer;
  transition: color var(--transition);
}

.license-close-btn:hover {
  color: var(--red);
}

.license-modal-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.license-options-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.license-opt-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition);
}

.license-opt-card:hover {
  border-color: rgba(227, 27, 35, 0.3);
  background: rgba(227, 27, 35, 0.02);
}

.license-opt-info {
  text-align: left;
}

.license-opt-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #fff;
}

.license-opt-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.license-opt-price-action {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.opt-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: #fff;
}

.btn-add-to-cart-opt, .btn-make-offer-opt {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-add-to-cart-opt:hover, .btn-make-offer-opt:hover {
  background: #ff2128;
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .cart-drawer-content {
    padding: 1.2rem !important;
  }
  .cart-drawer-header {
    margin-bottom: 1rem !important;
    padding-bottom: 0.8rem !important;
  }
  .cart-items-list {
    margin-bottom: 1rem !important;
  }
  .cart-summary {
    padding-top: 1rem !important;
  }
  .bank-details-box {
    padding: 0.8rem !important;
    font-size: 0.8rem !important;
  }
}

/* ═══════════════════════════════════════════════
   SDC MUSIC PLAYER SECTION
   ═══════════════════════════════════════════════ */

/* Section wrapper */
.sdc-music-section {
  position: relative;
  padding: 7rem 0 5rem;
  background: linear-gradient(180deg, #080A0C 0%, #0a0508 50%, #080A0C 100%);
  overflow: hidden;
}

.sdc-music-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(6rem, 20vw, 18rem);
  color: rgba(227, 27, 35, 0.04);
  letter-spacing: 0.15em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

/* ── PLAYER WRAPPER (agrupa reproductor + lista) ── */
.music-player-wrapper {
  max-width: 820px;
  margin: 3.5rem auto 0;
}

/* ── PLAYER CARD ── */
.music-player {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #111519 0%, #0d1014 60%, #14090a 100%);
  border: 1px solid rgba(227, 27, 35, 0.2);
  border-radius: 24px 24px 0 0;     /* redondeado solo arriba; la lista cierra abajo */
  padding: 2.5rem 2.5rem 2rem;      /* padding-bottom para que los controles no queden cortados */
  box-shadow:
    0 0 60px rgba(227, 27, 35, 0.08),
    0 -10px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255,255,255,0.05);
  overflow: visible;                /* permite que el visualizador se muestre bien */
}

/* ── VISUALIZER ── */
.player-visualizer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  display: flex;
  align-items: flex-end;
  gap: 2px;
  padding: 0 24px;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}

.player-visualizer span {
  flex: 1;
  background: var(--red);
  border-radius: 2px 2px 0 0;
  height: 3px;
  transform-origin: bottom;
  opacity: 0.6;
  transition: height 0.1s ease;
}

.music-player.playing .player-visualizer span {
  animation: vizBar 1s ease-in-out infinite alternate;
  opacity: 1;
}

.player-visualizer span:nth-child(1)  { animation-delay: 0.0s; }
.player-visualizer span:nth-child(2)  { animation-delay: 0.05s; }
.player-visualizer span:nth-child(3)  { animation-delay: 0.10s; }
.player-visualizer span:nth-child(4)  { animation-delay: 0.15s; }
.player-visualizer span:nth-child(5)  { animation-delay: 0.20s; }
.player-visualizer span:nth-child(6)  { animation-delay: 0.25s; }
.player-visualizer span:nth-child(7)  { animation-delay: 0.30s; }
.player-visualizer span:nth-child(8)  { animation-delay: 0.35s; }
.player-visualizer span:nth-child(9)  { animation-delay: 0.40s; }
.player-visualizer span:nth-child(10) { animation-delay: 0.45s; }
.player-visualizer span:nth-child(11) { animation-delay: 0.50s; }
.player-visualizer span:nth-child(12) { animation-delay: 0.45s; }
.player-visualizer span:nth-child(13) { animation-delay: 0.40s; }
.player-visualizer span:nth-child(14) { animation-delay: 0.35s; }
.player-visualizer span:nth-child(15) { animation-delay: 0.30s; }
.player-visualizer span:nth-child(16) { animation-delay: 0.25s; }
.player-visualizer span:nth-child(17) { animation-delay: 0.20s; }
.player-visualizer span:nth-child(18) { animation-delay: 0.15s; }
.player-visualizer span:nth-child(19) { animation-delay: 0.10s; }
.player-visualizer span:nth-child(20) { animation-delay: 0.05s; }

@keyframes vizBar {
  0%   { height: 3px; }
  100% { height: 32px; }
}

/* ── MAIN CONTENT AREA ── */
.player-main {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-bottom: 2rem;
}

/* ── ALBUM ART ── */
.player-art {
  flex-shrink: 0;
  width: 130px;
  height: 130px;
  position: relative;
  overflow: visible;
}

.player-art-inner {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(227, 27, 35, 0.35);
  box-shadow: 0 8px 24px rgba(227, 27, 35, 0.12), 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
  background: var(--bg-card);
}

.player-art-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}

.music-player.playing .player-art-inner {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(227, 27, 35, 0.45), 0 12px 35px rgba(0, 0, 0, 0.5);
  border-color: var(--red);
}

.music-player.playing .player-art-inner img {
  transform: scale(1.06);
}

.player-art svg {
  width: 100%;
  height: 100%;
  padding: 15%;
  background: rgba(227, 27, 35, 0.04);
}

/* ── TRACK INFO ── */
.player-info {
  flex: 1;
  min-width: 0;
  padding-bottom: 0.5rem;
}

.player-track-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.player-artist-name {
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  margin-top: 0.2rem;
}

/* ── DETAILED METADATA GRID ── */
.player-details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 0.65rem 0.85rem;
}

.player-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.detail-label {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.detail-val {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.badge-genre {
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ── PROGRESS ── */
.player-progress-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.player-time {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  min-width: 32px;
}

.player-progress {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  transition: height 0.2s;
}

.player-progress:hover {
  height: 6px;
}

.player-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  border-radius: 4px;
  transition: width 0.1s linear;
  pointer-events: none;
}

.player-progress-thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%) scale(0);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  pointer-events: none;
  transition: transform 0.2s, left 0.1s linear;
}

.player-progress:hover .player-progress-thumb {
  transform: translate(-50%, -50%) scale(1);
}

/* ── CONTROLS ── */
.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 0 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
}

.player-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color 0.2s, background 0.2s, transform 0.15s;
  padding: 0;
}

.player-btn:hover {
  color: #fff;
  transform: scale(1.1);
}

.player-btn-sm {
  width: 38px;
  height: 38px;
}

.player-btn-sm svg {
  width: 18px;
  height: 18px;
}

.player-btn-main {
  width: 54px;
  height: 54px;
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 20px rgba(227, 27, 35, 0.4);
}

.player-btn-main:hover {
  background: #ff2d36;
  box-shadow: 0 0 32px rgba(227, 27, 35, 0.65);
  transform: scale(1.08);
  color: #fff;
}

.player-btn-main svg {
  width: 22px;
  height: 22px;
}

/* playlist toggle active state */
.player-playlist-toggle.active {
  color: var(--red);
  background: rgba(227, 27, 35, 0.12);
}

/* ── VOLUME ── */
.player-volume-wrap {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
}

.player-vol-icon {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.player-volume {
  -webkit-appearance: none;
  appearance: none;
  width: 80px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

.player-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  cursor: pointer;
  box-shadow: 0 0 6px rgba(227,27,35,0.5);
}

.player-volume::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  border: none;
  cursor: pointer;
}

/* ── #playerPlaylist — usa ID para mayor especificidad sobre la regla antigua ── */
#playerPlaylist {
  position: static !important;        /* cancela position:absolute de la regla vieja */
  display: block !important;          /* cancela cualquier display:none */
  width: 100% !important;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  pointer-events: none !important;    /* inaccesible cuando cerrado */
  transform: none !important;         /* cancela el translateY de la regla vieja */
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.35s ease;
  background: linear-gradient(135deg, #0f1318 0%, #0b0e12 100%) !important;
  border: 1px solid rgba(227, 27, 35, 0.2) !important;
  border-top: none !important;
  border-radius: 0 0 20px 20px !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(227,27,35,0.04);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  right: auto !important;
  bottom: auto !important;
  margin: 0 !important;
}

#playerPlaylist.open {
  max-height: 700px !important;
  opacity: 1 !important;
  pointer-events: all !important;
  border-top: 1px solid rgba(227, 27, 35, 0.12) !important;
}

.playlist-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.playlist-count {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.playlist-list {
  list-style: none;
  padding: 0.5rem 0 1.25rem;
  margin: 0;
  max-height: 380px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(227,27,35,0.4) transparent;
}

.playlist-list::-webkit-scrollbar {
  width: 4px;
}
.playlist-list::-webkit-scrollbar-track {
  background: transparent;
}
.playlist-list::-webkit-scrollbar-thumb {
  background: rgba(227,27,35,0.4);
  border-radius: 2px;
}

.playlist-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 2.5rem;
  cursor: pointer;
  transition: background 0.2s;
  border-left: 2px solid transparent;
}

.playlist-item:hover {
  background: rgba(255,255,255,0.04);
}

.playlist-item.active {
  background: rgba(227, 27, 35, 0.08);
  border-left-color: var(--red);
}

.playlist-item-num {
  font-size: 0.75rem;
  color: var(--text-muted);
  min-width: 18px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.playlist-item.active .playlist-item-num {
  color: var(--red);
}

.playlist-item-info {
  flex: 1;
  min-width: 0;
}

.playlist-item-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.playlist-item.active .playlist-item-title {
  color: var(--red);
}

.playlist-item-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 1px;
  line-height: 1.2;
}

.playlist-item-artist {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.playlist-item-separator {
  color: var(--red);
  font-size: 0.72rem;
  opacity: 0.6;
  user-select: none;
}

.playlist-item-studio {
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Playlist Item Action Buttons (Share, Download) */
.playlist-item-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.25s, transform 0.25s;
}

.playlist-item:hover .playlist-item-actions,
.playlist-item.active .playlist-item-actions {
  opacity: 1;
  transform: translateX(0);
}

.playlist-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  transition: all var(--transition);
  cursor: pointer;
}

.playlist-action-btn:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(227, 27, 35, 0.5);
}

.playlist-action-btn svg {
  width: 14px;
  height: 14px;
}

/* Playlist Cover Thumbnail */
.playlist-item-cover {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform var(--transition);
}

.playlist-item:hover .playlist-item-cover {
  transform: scale(1.05);
}

.playlist-item-cover--default {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
}

.playlist-item-cover--default svg {
  width: 20px;
  height: 20px;
}

.playlist-item-duration {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

/* Playing indicator icon inside playlist */
.playlist-item-playing {
  display: none;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.playlist-item.active .playlist-item-playing {
  display: flex;
  align-items: flex-end;
  gap: 2px;
}

.playlist-item-playing span {
  display: block;
  width: 3px;
  background: var(--red);
  border-radius: 1px;
  animation: miniViz 0.8s ease-in-out infinite alternate;
}

.playlist-item-playing span:nth-child(1) { height: 6px;  animation-delay: 0s; }
.playlist-item-playing span:nth-child(2) { height: 10px; animation-delay: 0.2s; }
.playlist-item-playing span:nth-child(3) { height: 7px;  animation-delay: 0.4s; }

@keyframes miniViz {
  0%   { transform: scaleY(0.4); }
  100% { transform: scaleY(1); }
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .music-player-wrapper {
    margin: 2rem 1rem 0;
  }

  .music-player {
    padding: 2rem 1.25rem 0;
    border-radius: 18px;
  }

  .player-playlist {
    border-radius: 0 0 14px 14px;
  }

  .player-main {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
    padding-bottom: 1.5rem;
  }

  .player-art {
    width: 120px;
    height: 120px;
  }

  .player-track-name {
    font-size: 1.2rem;
  }

  .player-details-grid {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    padding: 0.65rem 0.85rem;
    text-align: left;
    margin-bottom: 1rem;
  }

  .player-detail-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 0.25rem;
  }

  .player-detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .player-progress-wrap {
    justify-content: space-between;
  }

  .player-volume-wrap {
    margin-left: auto;
    margin-right: auto;
    margin-top: 0.5rem;
  }

  .player-volume {
    width: 80px;
  }

  .player-controls {
    gap: 0.5rem;
    padding: 1.25rem 0 1.25rem;
  }

  .playlist-item {
    padding: 0.6rem 1.25rem;
  }

  .playlist-item-actions {
    opacity: 0.8;
    transform: none;
    gap: 0.35rem;
  }

  .playlist-header {
    padding: 0.8rem 1.25rem 0.6rem;
  }
}

/* ── CUSTOM TOAST NOTIFICATIONS ── */
#toastContainer {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.custom-toast {
  background: rgba(18, 18, 20, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--red);
  color: #fff;
  padding: 14px 20px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 280px;
  max-width: 400px;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
  opacity: 0;
  pointer-events: auto;
}
.custom-toast.show {
  transform: translateX(0);
  opacity: 1;
}
.custom-toast.toast-success {
  border-left-color: #22c55e;
}
.custom-toast.toast-error {
  border-left-color: #ef4444;
}
.custom-toast.toast-info {
  border-left-color: #3b82f6;
}

/* ── BEAT HIGHLIGHT PULSATING ANIMATION ── */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(227, 27, 35, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(227, 27, 35, 0); }
  100% { box-shadow: 0 0 0 0 rgba(227, 27, 35, 0); }
}
.beat-item.shared-highlight {
  animation: pulseGlow 1.5s infinite;
  border-color: var(--red) !important;
  background: rgba(227, 27, 35, 0.1) !important;
  transition: all 0.3s ease;
}

/* ── PERFORMANCE OPTIMIZATION (content-visibility) ── */
.services,
.sdc-music-section,
.recording-section,
.beats-section,
.artists-section,
.portfolio-section,
.pricing-section,
.contact-section {
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}