@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
  --bg-color: #0b0b0f;
  --bg-secondary: #13141c;
  --text-main: #ffffff;
  --text-muted: #a0a0b5;
  --neon-cyan: #00f3ff;
  --neon-purple: #9d00ff;
  --neon-blue: #003cff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAVIGATION */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 40px;
  background: rgba(11, 11, 15, 0.85);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: 120px 1fr 120px;
  align-items: center;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 243, 255, 0.1);
}

.header-left { display: flex; align-items: center; justify-content: flex-start; }
.header-center { display: flex; align-items: center; justify-content: center; }
.header-right { display: flex; align-items: center; justify-content: flex-end; }

.home-btn {
    display: none; /* Hidden on Desktop */
    color: var(--text-main);
    font-size: 1.4rem;
    text-decoration: none;
    transition: 0.3s;
    opacity: 0.8;
}

.home-btn:hover {
    color: var(--neon-cyan);
    opacity: 1;
    text-shadow: 0 0 10px var(--neon-cyan);
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-main);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

nav a:hover, nav a.active {
  color: var(--neon-cyan);
  text-shadow: 0 0 15px var(--neon-cyan);
}

/* HERO SECTION */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at center, rgba(157, 0, 255, 0.15) 0%, rgba(11, 11, 15, 1) 70%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('../images/hero-bg.png') center/cover;
  opacity: 0.15;
  z-index: -1;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 20px;
  background: linear-gradient(to right, var(--neon-cyan), var(--neon-purple));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(157, 0, 255, 0.5));
}

.hero-content p {
  font-size: 1.5rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-logo {
    max-width: 500px;
    width: 90%;
    margin-bottom: 40px;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.2));
    animation: fadeIn 2s ease;
}

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

.btn {
  display: inline-block;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bg-color);
  background: var(--neon-cyan);
  border-radius: 30px;
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
  transition: all 0.3s ease;
}

.btn:hover {
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 243, 255, 0.8);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--neon-cyan);
  border: 2px solid var(--neon-cyan);
}

.btn-outline:hover {
  background: var(--neon-cyan);
  color: var(--bg-color);
}

/* SECTIONS COMMON */
section {
  padding: 100px 50px;
}

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

h2.section-title {
  font-size: 3.5rem;
  text-transform: uppercase;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  display: block;
}

h2.section-title::after {
  content: '.';
  color: #ff0000;
}

.section-underline {
  width: 100px;
  height: 4px;
  background: var(--neon-cyan);
  margin: -40px auto 50px;
  border-radius: 2px;
  box-shadow: 0 0 15px var(--neon-cyan);
}

/* ABOUT SECTION REDESIGN */
.about {
  padding: 0;
  background: #000;
  overflow: hidden;
}

.about-container {
  display: flex;
  min-height: 90vh;
  flex-wrap: wrap;
}

.about-content {
  flex: 1;
  min-width: 50%;
  padding: 8% 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-image {
  flex: 1;
  min-width: 50%;
  background: url('../images/about.png') center/cover no-repeat;
  min-height: 600px;
}

.about-title {
  font-size: 4rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 30px;
  letter-spacing: 2px;
  color: #fff;
  line-height: 1.1;
}

.about-title::after {
  content: '.';
  color: #ff0000;
}

.about p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 25px;
  line-height: 1.8;
}

.btn-red {
  display: inline-block;
  background: #ff0000;
  color: #fff;
  padding: 18px 45px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  margin-top: 30px;
  transition: all 0.3s ease;
  align-self: flex-start;
  border-radius: 2px;
}

.btn-red:hover {
  background: #cc0000;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
}

/* DISCOGRAPHY GRID */
.discography-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 30px;
  margin-top: 40px;
}

.album-card {
  background: var(--bg-secondary);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.album-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(157, 0, 255, 0.2);
  border-color: rgba(157, 0, 255, 0.3);
}

.album-iframe-container {
  width: 100%;
  height: 352px; /* Spotify standard size */
}

/* LATEST RELEASES GRID (HOME) */
.latest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
    gap: 40px;
    margin-top: 50px;
}

#latest-album-container, #latest-single-container {
    background: rgba(19, 20, 28, 0.8);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 243, 255, 0.1);
    box-shadow: 0 0 50px rgba(0, 243, 255, 0.05);
    transition: all 0.4s ease;
}

#latest-album-container:hover, #latest-single-container:hover {
    border-color: rgba(0, 243, 255, 0.4);
    box-shadow: 0 0 60px rgba(0, 243, 255, 0.15);
    transform: translateY(-5px);
}

/* FOOTER */
footer {
  background: #000;
  padding: 100px 50px 50px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
    text-align: left;
}

.footer-col h4 {
    color: #fff;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 25px;
    letter-spacing: 3px;
    font-weight: 800;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 2;
    margin: 0;
}

.footer-social-text {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
}

.footer-social-text a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.footer-social-text a:hover {
    color: var(--neon-cyan);
    opacity: 1;
}

.footer-bottom {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 40px;
}

/* LOADER */
#loader {
  text-align: center;
  padding: 50px;
  color: var(--neon-cyan);
  font-size: 1.2rem;
  letter-spacing: 2px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { opacity: 0.5; }
  50% { opacity: 1; text-shadow: 0 0 15px var(--neon-cyan); }
  100% { opacity: 0.5; }
}

/* FILTER BAR */
.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.filter-btn {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(0, 243, 255, 0.3);
  padding: 10px 25px;
  border-radius: 20px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.filter-btn:hover {
  color: var(--neon-cyan);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

.filter-btn.active {
  background: var(--neon-cyan);
  color: var(--bg-color);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
}

/* SOCIAL SIDEBAR */
.social-sidebar {
    position: fixed;
    right: 30px; /* Moved to right like the original site */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2000;
}

.social-sidebar a {
    width: 50px;
    height: 50px;
    background: rgba(11, 11, 15, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    font-size: 1.2rem;
}

.social-sidebar a:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px var(--neon-cyan);
    transform: scale(1.1) translateX(-5px);
    color: var(--neon-cyan);
}

/* GALLERY SECTION */
.impressions {
    background: var(--bg-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 243, 255, 0.2));
    opacity: 0;
    pointer-events: none; /* Add this to allow clicks to pass to the image */
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .social-sidebar {
        right: 15px;
    }
}

@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
  .social-sidebar {
    right: 15px;
    gap: 15px;
  }
  .social-sidebar a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 20px;
  }

  .hero {
    padding-top: 100px;
    height: auto;
    min-height: 100vh;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }
  
  .hero-content p {
    font-size: 1.1rem;
    padding: 0 20px;
  }

  section {
    padding: 60px 15px;
  }

  h2.section-title {
    font-size: 2rem;
    width: 90%;
  }

  .discography-grid {
    grid-template-columns: 1fr; /* Stack on small mobile */
    gap: 20px;
  }

  .filter-bar {
    gap: 10px;
    padding: 0 10px;
  }

  .filter-btn {
    padding: 8px 15px;
    font-size: 0.8rem;
  }
  
  .latest-container {
      width: 95%;
      padding: 10px;
  }

  .footer-container {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 30px;
  }

  .about-container {
      flex-direction: column;
  }

  .about-content {
      min-width: 100%;
      padding: 60px 25px;
      order: 1;
  }

  .about-image {
      min-width: 100%;
      height: 400px;
      order: 2;
  }

  .about-title {
      font-size: 2.5rem;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
}

/* LIGHTBOX OVERLAY */
.lightbox {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.lightbox.active {
    display: flex;
}

#lightbox-img {
    max-width: 85%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 0 60px rgba(0, 243, 255, 0.4);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox.active #lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    color: #fff;
    font-size: 3.5rem;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s;
}

.lightbox-close:hover {
    color: var(--neon-cyan);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.8rem;
    transition: all 0.3s;
    user-select: none;
}

.lightbox-nav:hover {
    background: var(--neon-cyan);
    color: var(--bg-color);
    box-shadow: 0 0 25px var(--neon-cyan);
}

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

@media (max-width: 768px) {
    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    .lightbox-prev { left: 15px; }
    .lightbox-next { right: 15px; }
    .lightbox-close { top: 20px; right: 20px; font-size: 2.5rem; }
}

/* =========================
   HERO UPGRADE (WOW EFFECT)
========================= */

.hero::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,243,255,0.08) 0%, transparent 70%);
  animation: rotateBg 25s linear infinite;
  z-index: -1;
}

@keyframes rotateBg {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-content h1 {
  animation: glowPulse 3s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  from {
    filter: drop-shadow(0 0 10px rgba(157, 0, 255, 0.4));
  }
  to {
    filter: drop-shadow(0 0 30px rgba(0, 243, 255, 0.9));
  }
}

.hero-content p {
  opacity: 0;
  animation: fadeUp 1.5s ease forwards;
  animation-delay: 0.5s;
}

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


/* =========================
   BUTTONS MÁS PRO
========================= */

.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255,255,255,0.2);
  transition: width 0.3s ease;
}

.btn:hover::after {
  width: 100%;
}


/* =========================
   CARDS MÁS PREMIUM
========================= */

.album-card {
  position: relative;
}

.album-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(120deg, transparent, rgba(0,243,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 1;
}

.album-card:hover::before {
  opacity: 1;
}


/* =========================
   SECTIONS ANIMADAS
========================= */

.fade-in-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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


/* =========================
   SCROLL REVEAL JS HOOK
========================= */

/* (esto lo usa el JS que te dejo abajo) */


/* =========================
   SOCIAL ICONS MÁS PRO
========================= */

.social-sidebar a {
  backdrop-filter: blur(20px);
}

.social-sidebar a:hover {
  transform: scale(1.15) translateX(-8px);
}


/* =========================
   FOOTER MÁS LEGIBLE
========================= */

.footer-bottom {
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  line-height: 1.6;
}


/* =========================
   SKELETON LOADER
========================= */

.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 30px;
  margin-top: 40px;
}

.skeleton-card {
  background: var(--bg-secondary);
  border-radius: 12px;
  height: 352px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.skeleton-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.07), transparent);
  animation: shimmer 1.8s ease-in-out infinite;
}

@keyframes shimmer {
  to { left: 100%; }
}


/* =========================
   CARD STAGGER ANIMATION
========================= */

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

.album-card {
  animation: cardFadeIn 0.45s ease both;
}


/* =========================
   EMPTY STATE
========================= */

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
}

.empty-state .empty-icon {
  font-size: 3rem;
  color: rgba(0, 243, 255, 0.2);
  margin-bottom: 20px;
  display: block;
}

.empty-state p {
  color: var(--text-muted);
  font-size: 1rem;
  letter-spacing: 1px;
  opacity: 0.6;
}


/* =========================
   LATEST RELEASE BADGE
========================= */

.latest-badge {
  display: inline-block;
  background: linear-gradient(to right, var(--neon-cyan), var(--neon-purple));
  color: #000;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}


/* =========================
   BACK TO TOP BUTTON
========================= */

.back-to-top {
  position: fixed;
  bottom: 40px;
  left: 40px;
  width: 50px;
  height: 50px;
  background: rgba(11, 11, 15, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 243, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 1999;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease,
              border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  pointer-events: none;
  text-decoration: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
  color: var(--neon-cyan);
}

@media (max-width: 992px) {
  .back-to-top {
    bottom: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
  }
}


/* =========================
   MOBILE MENU (ROBUST)
========================= */

/* Hidden by default on Desktop */
.mobile-nav-controls {
    display: none;
}

.menu-toggle {
    display: none !important;
}

@media (max-width: 768px) {
    header {
        grid-template-columns: 50px 1fr 50px !important;
        padding: 5px 15px !important;
        height: 65px !important;
    }

    .header-left, .header-center, .header-right {
        display: flex !important;
        align-items: center !important;
    }

    .header-left { justify-content: flex-start !important; }
    .header-center { justify-content: center !important; }
    .header-right { justify-content: flex-end !important; }

    .menu-toggle {
        display: block !important;
        cursor: pointer;
        font-size: 1.5rem;
        color: var(--text-main);
        z-index: 2001;
        position: relative;
    }

    .home-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem !important;
    }

    .mobile-nav-controls {
        display: none !important;
    }

    .logo {
        margin-bottom: 0 !important;
        font-size: 1.4rem !important;
        position: relative;
        z-index: 2001;
    }

    /* Target the nav specifically within header on mobile */
    header nav {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 100% !important;
        height: 100vh !important;
        background: rgba(11, 11, 15, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1) !important;
        z-index: 2000 !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }

    /* Menu open state via body class */
    body.menu-open header nav {
        right: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Hide social sidebar ONLY when menu is open to avoid overlapping */
    body.menu-open .social-sidebar {
        display: none !important;
    }

    header nav ul {
        flex-direction: column !important;
        gap: 30px !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
    }

    header nav a {
        font-size: 1.8rem !important;
        color: #fff !important;
        text-decoration: none !important;
        text-transform: uppercase !important;
        font-weight: 800 !important;
        letter-spacing: 2px !important;
    }
}

/* =========================
   OFFLINE STATES
========================= */

.offline-placeholder {
    width: 100%;
    height: 352px;
    background: rgba(19, 20, 28, 0.6);
    border: 1px dashed rgba(0, 243, 255, 0.3);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: var(--text-muted);
}

.offline-placeholder i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--neon-cyan);
    opacity: 0.5;
}

.offline-placeholder p {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 8px;
}

.offline-placeholder span {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* =========================
   SINGLE PLAYER ACTIVE STATE
========================= */

.album-card.playing-active {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
    transform: scale(1.02);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.album-card.playing-active iframe {
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}