/* ==========================================================================
   40.200 RADIO VILLA - HOJA DE ESTILOS OFICIAL & DESIGN SYSTEM
   Diseño ultraoptimizado, modo oscuro moderno, glassmorphism y neón
   ========================================================================== */

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

:root {
  /* Paleta de Colores Principal */
  --bg-dark: #0a0b10;
  --bg-card: rgba(18, 20, 29, 0.75);
  --bg-card-hover: rgba(26, 29, 43, 0.9);
  --border-color: rgba(255, 255, 255, 0.1);
  --border-glow: rgba(0, 240, 255, 0.3);
  
  /* Colores de Acento y Neón */
  --accent-pink: #ff007f;
  --accent-purple: #8b5cf6;
  --accent-cyan: #00f0ff;
  --accent-orange: #ff8800;
  --accent-green: #10b981;

  /* Gradientes de Impacto */
  --grad-hero: linear-gradient(135deg, rgba(255, 0, 127, 0.15) 0%, rgba(139, 92, 246, 0.2) 50%, rgba(0, 240, 255, 0.15) 100%);
  --grad-accent: linear-gradient(135deg, var(--accent-pink), var(--accent-purple), var(--accent-cyan));
  --grad-orange: linear-gradient(135deg, #ff5100, #ff8800);
  --grad-btn: linear-gradient(90deg, #ff007f 0%, #7c3aed 100%);

  /* Tipografía */
  --font-heading: 'Outfit', 'Kanit', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Sombras y Efectos */
  --shadow-neon: 0 0 25px rgba(255, 0, 127, 0.35);
  --shadow-cyan: 0 0 20px rgba(0, 240, 255, 0.3);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
  --glass-backdrop: blur(16px) saturate(180%);
}

/* Reset Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: #f1f5f9;
  font-family: var(--font-body);
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  background: radial-gradient(circle at 50% 0%, #151828 0%, var(--bg-dark) 70%);
}

/* Tipografía Básica */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-pink);
}

/* Contenedor Principal */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   NAVEGACIÓN / HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 11, 16, 0.85);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(10, 11, 16, 0.98);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.header-logo-img {
  height: 52px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(255, 136, 0, 0.3);
  transition: transform 0.3s ease;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  border-radius: 6px;
}

.brand-logo:hover .header-logo-img {
  transform: scale(1.06);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(90deg, #ffffff 30%, var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-subtitle {
  font-size: 0.72rem;
  color: #94a3b8;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Menú de Navegación */
.nav-menu {
  display: flex;
  align-items: center;
  flex-wrap: nowrap !important;
  gap: 0.75rem !important;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  white-space: nowrap !important;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem !important;
  color: #cbd5e1;
  white-space: nowrap !important;
  display: inline-block;
  letter-spacing: 0.2px;
  position: relative;
  padding: 0.4rem 0.2rem;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-accent);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link:hover::after {
  width: 100%;
}

/* Menú Desplegable (Dropdown) */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  cursor: pointer;
}

.nav-dropdown-toggle i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 195px;
  background: rgba(15, 23, 42, 0.98) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glow);
  border-radius: 14px;
  padding: 8px !important;
  list-style: none !important;
  list-style-type: none !important;
  margin: 0 !important;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  z-index: 1100;
}

.dropdown-menu li {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
  display: flex !important;
}

.nav-dropdown:hover .nav-dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  color: #cbd5e1;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-item:hover {
  background: rgba(255, 136, 0, 0.15);
  color: var(--accent-orange);
}

/* Iconos Neón de Redes Sociales en la Cabecera (Facebook e Instagram) */
.header-social-group {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-left: 6px !important;
}

.social-header-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.social-header-icon.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: #ffffff;
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 4px 18px rgba(24, 119, 242, 0.6);
}

.social-header-icon.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #e1306c;
  color: #ffffff;
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 4px 18px rgba(225, 48, 108, 0.6);
}

/* Tarjeta Destacada del Nº 1 Top 20 (Diseño Cristalino Neón) */
.song-card-number-one {
  background: linear-gradient(135deg, rgba(255, 136, 0, 0.15) 0%, rgba(255, 0, 127, 0.2) 50%, rgba(15, 23, 42, 0.98) 100%);
  border: 2px solid #ffd700;
  border-radius: 24px;
  padding: 1.8rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 35px rgba(255, 215, 0, 0.35);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  transition: all 0.3s ease;
}

.song-card-number-one:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 45px rgba(255, 215, 0, 0.5);
}

.no1-header-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.2rem;
}

.badge-no1-gold {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #ffd700 0%, #ff8800 100%);
  color: #000000;
  font-weight: 900;
  font-size: 0.78rem;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
  white-space: nowrap !important;
}

.badge-no1-green {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  font-weight: 900;
  font-size: 0.78rem;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.4);
  white-space: nowrap !important;
}

.no1-body-layout {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.no1-cover-wrap {
  position: relative;
  flex-shrink: 0;
}

.no1-rank-num {
  position: absolute;
  top: -12px;
  left: -12px;
  background: linear-gradient(135deg, #ffd700 0%, #ff8800 100%);
  color: #000000;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.2rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.no1-cover-img {
  width: 140px !important;
  height: 140px !important;
  max-width: 140px !important;
  max-height: 140px !important;
  border-radius: 18px;
  object-fit: cover;
  border: 3px solid #ffd700;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  flex-shrink: 0;
  display: block;
}

.no1-details-wrap {
  flex-grow: 1;
}

.no1-song-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 4px;
}

.no1-song-artist {
  font-size: 1.05rem;
  color: var(--accent-orange);
  font-weight: 800;
  margin-bottom: 8px;
}

/* Tarjetas Secundarias #2 al #20 */
.song-card-item {
  background: var(--bg-card);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 1.2rem 1.4rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}

.song-card-item:hover {
  transform: translateY(-3px);
  border-color: var(--border-glow);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* Carátulas HD más grandes (100px) */
.song-thumb-small {
  width: 100px !important;
  height: 100px !important;
  min-width: 100px !important;
  max-width: 100px !important;
  min-height: 100px !important;
  max-height: 100px !important;
  border-radius: 16px !important;
  object-fit: cover !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5) !important;
  flex-shrink: 0 !important;
  display: block !important;
}

.song-details-box {
  flex-grow: 1;
  min-width: 0;
}

.song-actions-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Botón Escuchar Muestra (Degradado Cian Neón a Azul Real) */
.btn-preview-audio {
  background: linear-gradient(135deg, #00f2fe 0%, #0077ff 100%) !important;
  color: #000000 !important;
  border: none !important;
  padding: 8px 16px !important;
  border-radius: 12px !important;
  font-weight: 900 !important;
  font-size: 0.85rem !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.45) !important;
}

.btn-preview-audio:hover {
  transform: translateY(-2px) scale(1.03) !important;
  box-shadow: 0 6px 20px rgba(0, 242, 254, 0.6) !important;
}

/* Botón Votar (+3 Puntos) (Degradado Magenta Neón a Naranja Fuego con Letras Blancas) */
.btn-vote-song {
  background: linear-gradient(135deg, #ff007f 0%, #ff7700 100%) !important;
  color: #ffffff !important;
  border: none !important;
  padding: 8px 16px !important;
  border-radius: 12px !important;
  font-weight: 900 !important;
  font-size: 0.85rem !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 4px 15px rgba(255, 0, 127, 0.45) !important;
  text-decoration: none !important;
}

.btn-vote-song:hover {
  background: linear-gradient(135deg, #e60073 0%, #e66b00 100%) !important;
  color: #ffffff !important;
  transform: translateY(-2px) scale(1.03) !important;
  box-shadow: 0 6px 20px rgba(255, 0, 127, 0.65) !important;
}

.btn-vote-song.voted, .btn-vote-song:disabled {
  background: rgba(255, 0, 127, 0.2) !important;
  color: #ff77b4 !important;
  border: 1px solid rgba(255, 0, 127, 0.4) !important;
  box-shadow: none !important;
  cursor: default !important;
  transform: none !important;
}

.external-music-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.external-music-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

/* Adaptación Responsive y Corrección de Descuadre en Móviles */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .container, .header-container {
    padding-left: 12px !important;
    padding-right: 12px !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .badge-no1-gold, .badge-no1-green, .badge-no1-pill {
    white-space: normal !important;
    text-align: center !important;
    font-size: 0.72rem !important;
    padding: 6px 12px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  .song-card-number-one {
    padding: 1.2rem 1rem !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .no1-header-badges {
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .no1-body-layout {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 1.2rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .no1-cover-wrap {
    margin: 0 auto !important;
  }

  .no1-details-wrap {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .song-card-item {
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 1rem 0.9rem !important;
    overflow: hidden !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .song-details-box {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .song-meta-stats {
    justify-content: center !important;
    flex-wrap: wrap !important;
    max-width: 100% !important;
  }

  .song-info-paragraph {
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
  }

  .song-actions-row {
    justify-content: center !important;
    flex-wrap: wrap !important;
    max-width: 100% !important;
  }
}

@media (max-width: 600px) {
  .song-card-item {
    flex-direction: column !important;
    text-align: center !important;
    gap: 1rem !important;
  }
  .song-rank-badge {
    margin-bottom: 2px !important;
  }
  .song-thumb-small {
    width: 110px !important;
    height: 110px !important;
    min-width: 110px !important;
    max-width: 110px !important;
    min-height: 110px !important;
    max-height: 110px !important;
    margin: 0 auto !important;
  }
}
.live-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
  padding: 6px 14px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 10px #ef4444;
  animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
  transition: all 0.3s ease;
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.5);
  color: #ffffff;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION & REPRODUCTOR PRINCIPAL
   ========================================================================== */
.hero-section {
  padding-top: 135px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

/* Banner de Advertencia 'En Obras' Parpadeante */
.under-construction-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(245, 158, 11, 0.14);
  border: 2px solid #f59e0b;
  border-radius: 16px;
  padding: 14px 24px;
  margin-bottom: 2.2rem;
  color: #fef08a;
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.25);
  animation: blink-yellow 1.8s infinite ease-in-out;
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  text-align: center;
}

.construction-icon {
  font-size: 1.4rem;
  color: #fbbf24;
  flex-shrink: 0;
}

.construction-text {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.2px;
}

@keyframes blink-yellow {
  0% {
    border-color: #f59e0b;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.25);
    opacity: 0.88;
  }
  50% {
    border-color: #facc15;
    box-shadow: 0 0 35px rgba(250, 204, 21, 0.7);
    opacity: 1;
  }
  100% {
    border-color: #f59e0b;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.25);
    opacity: 0.88;
  }
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 0, 127, 0.2) 0%, rgba(0,0,0,0) 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, rgba(0,0,0,0) 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.hero-content h1 span.gradient-text {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-tagline {
  font-size: 1.2rem;
  color: #94a3b8;
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 1.7;
}

.features-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 2rem;
}

.badge-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #e2e8f0;
}

.badge-item i {
  color: var(--accent-cyan);
}

/* Tarjeta del Reproducción Principal Pro */
.player-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 2.2rem;
  box-shadow: var(--shadow-card), 0 0 35px rgba(0, 240, 255, 0.12);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.player-card.playing {
  border-color: rgba(0, 240, 255, 0.5);
}

.player-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.quality-tag {
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: var(--accent-cyan);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.direct-link-badge {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-cyan);
  background: rgba(0, 240, 255, 0.1);
  padding: 5px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 240, 255, 0.3);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.direct-link-badge:hover {
  background: rgba(0, 240, 255, 0.25);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Área de Carátula y Titulo de Canción */
.track-display {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}

.cover-wrapper {
  position: relative;
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.7);
  background: #1e293b;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.album-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.player-card.playing .album-cover {
  animation: none !important;
  transform: none !important;
}

.track-info {
  flex-grow: 1;
  overflow: hidden;
}

.now-playing-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-cyan);
  font-weight: 700;
  margin-bottom: 4px;
}

.song-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}

.song-artist {
  font-size: 0.95rem;
  color: #94a3b8;
  font-weight: 500;
}

/* Canvas del Espectro Visualizador */
.visualizer-container {
  width: 100%;
  height: 48px;
  margin-bottom: 1.5rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

#audioVisualizer {
  width: 100%;
  height: 100%;
  display: block;
}

/* Controles de Reproducción */
.player-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.btn-play-master {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--grad-btn);
  border: none;
  color: #ffffff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-neon);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-play-master:hover {
  transform: scale(1.08);
  box-shadow: 0 0 35px rgba(255, 0, 127, 0.6);
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-grow: 1;
  max-width: 180px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 14px;
  border-radius: 30px;
  border: 1px solid var(--border-color);
}

.btn-icon {
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  font-size: 1.1rem;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
}

.btn-icon:hover {
  color: #ffffff;
}

.volume-slider {
  width: 100%;
  accent-color: var(--accent-cyan);
  cursor: pointer;
}

/* Reproductores Externos Grid */
.external-players {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-color);
}

.external-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
  margin-bottom: 0.8rem;
  text-align: center;
}

.players-icons-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.player-app-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 0.75rem;
  color: #cbd5e1;
  transition: all 0.2s ease;
}

.player-app-link:hover {
  background: rgba(0, 240, 255, 0.12);
  border-color: rgba(0, 240, 255, 0.3);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Box Historial de Canciones */
.track-history-box {
  margin-top: 1.2rem;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.history-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-orange);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.track-history-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.history-item {
  font-size: 0.8rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.history-item i {
  color: var(--accent-pink);
  font-size: 0.7rem;
}

/* ==========================================================================
   ESPACIOS PUBLICITARIOS (GOOGLE ADSENSE READY)
   ========================================================================== */
.ad-banner-section {
  padding: 1.5rem 0;
  text-align: center;
}

.ad-slot-container {
  background: rgba(15, 23, 42, 0.4);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 15px;
  margin: 0 auto;
  max-width: 970px;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ad-placeholder-text {
  font-size: 0.75rem;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   SECCIÓN CALIDAD DE SONIDO & SONIDO HI-RES
   ========================================================================== */
.section-padding {
  padding: 90px 0;
}

.section-title-wrap {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}

.section-tag {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-orange);
  margin-bottom: 0.5rem;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: #94a3b8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--grad-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.2);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.feature-card:nth-child(2) .feature-icon {
  background: rgba(255, 0, 127, 0.1);
  border-color: rgba(255, 0, 127, 0.2);
  color: var(--accent-pink);
}

.feature-card:nth-child(3) .feature-icon {
  background: rgba(255, 136, 0, 0.1);
  border-color: rgba(255, 136, 0, 0.2);
  color: var(--accent-orange);
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.feature-text {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
}

/* ==========================================================================
   SECCIÓN SOBRE NOSOTROS & ESTUDIO DE RADIO VILLA
   ========================================================================== */
.about-section {
  background: rgba(15, 20, 32, 0.5);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
}

.about-content p {
  color: #94a3b8;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.location-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-orange);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.genres-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.5rem;
}

.pill-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-color);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pill-item i {
  color: var(--accent-cyan);
}

/* Tarjeta Visual de Estudio de Radio Villa */
.studio-card-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 30px rgba(139, 92, 246, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.studio-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.studio-card-visual:hover .studio-img {
  transform: scale(1.04);
}

.studio-badge-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(10, 11, 16, 0.85);
  backdrop-filter: var(--glass-backdrop);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.studio-badge-overlay i {
  color: var(--accent-pink);
}

/* ==========================================================================
   SECCIÓN GALERÍA DE FOTOS (CUÉLLAR, MAR DE PINARES Y TORRE)
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 280px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  background: linear-gradient(0deg, rgba(10, 11, 16, 0.95) 0%, rgba(10, 11, 16, 0.6) 70%, transparent 100%);
  color: #ffffff;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.gallery-caption h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery-caption h4 i {
  color: var(--accent-orange);
}

.gallery-caption p {
  font-size: 0.8rem;
  color: #cbd5e1;
}

.gallery-item:hover {
  transform: translateY(-6px);
  border-color: var(--accent-cyan);
  box-shadow: 0 12px 30px rgba(0, 240, 255, 0.2);
}

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

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* ==========================================================================
   PROGRAMACIÓN / FÓRMULA MUSICAL
   ========================================================================== */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.schedule-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.schedule-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-4px);
}

.schedule-time {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-cyan);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.schedule-show {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.schedule-desc {
  font-size: 0.85rem;
  color: #94a3b8;
}

/* ==========================================================================
   PIE DE PÁGINA (FOOTER)
   ========================================================================== */
.site-footer {
  background: #06070a;
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px 0;
}

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

.footer-brand p {
  color: #64748b;
  font-size: 0.95rem;
  margin-top: 1rem;
  max-width: 400px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #64748b;
  font-size: 0.85rem;
}

/* ==========================================================================
/* ==========================================================================
   SECCIÓN MERCHANDISING & TIENDA OFICIAL (WALLAPOP INTEGRATION)
   ========================================================================== */
.shop-hero-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3rem auto;
}

.shop-main-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.shop-subtitle {
  font-size: 1.1rem;
  color: #94a3b8;
  line-height: 1.7;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  margin-top: 1rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(19, 193, 172, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(19, 193, 172, 0.15);
}

.product-carousel-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #0f172a;
  overflow: hidden;
}

.product-carousel-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  pointer-events: none;
}

.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(10, 11, 16, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.carousel-arrow.prev { left: 10px; }
.carousel-arrow.next { right: 10px; }

.carousel-arrow:hover {
  background: rgba(19, 193, 172, 0.9);
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.carousel-dots-wrap {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 10;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: #13c1ac;
  width: 20px;
  border-radius: 10px;
}

.product-price-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(10, 11, 16, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 6px 14px;
  border-radius: 12px;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.product-info-wrap {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.product-desc {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.6;
}

/* BOTÓN OFICIAL DE WALLAPOP */
.btn-wallapop {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #13c1ac 0%, #0d9488 100%);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(19, 193, 172, 0.35);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-wallapop:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(19, 193, 172, 0.55);
  color: #ffffff;
}

.wallapop-logo-badge {
  width: 26px;
  height: 26px;
  background: #ffffff;
  color: #13c1ac;
  border-radius: 50%;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-family: var(--font-heading);
}

/* ==========================================================================
   MEDIA QUERIES (DISEÑO RESPONSIVO PARA MÓVILES Y TABLETS)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid, .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .products-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }

  .features-grid, .gallery-grid, .schedule-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 110px;
    padding-bottom: 40px;
  }

  .hero-grid, .about-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
    width: 100%;
  }

  .hero-content, .about-content {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .location-tag {
    justify-content: center;
    margin: 0 auto 1rem auto;
  }

  .features-badges, .genres-pills {
    justify-content: center;
  }

  .player-card {
    width: 100%;
    max-width: 100%;
    padding: 1.5rem 1.2rem;
    box-sizing: border-box;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 85px;
    left: 0;
    right: 0;
    background: rgba(10, 11, 16, 0.98);
    backdrop-filter: var(--glass-backdrop);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .features-grid, .schedule-grid, .gallery-grid, .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .track-display {
    flex-direction: column;
    text-align: center;
  }

  .cover-wrapper {
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .hero-content h1 {
    font-size: 1.85rem;
  }

  .about-content h2 {
    font-size: 1.75rem;
  }

  .studio-img {
    height: 240px;
  }

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

  .shop-main-title { 
    font-size: 2rem; 
  }

  .player-card-header {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .quality-tag, .live-badge, .direct-link-badge {
    font-size: 0.72rem;
    padding: 4px 10px;
  }
}

/* Visor Modal de Fotos a Pantalla Completa (Lightbox para PC, Tablet y Móvil) */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 7, 12, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 0 50px rgba(0, 240, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-caption {
  margin-top: 12px;
  color: #f1f5f9;
  font-size: 0.95rem;
  font-weight: 600;
  background: rgba(0,0,0,0.6);
  padding: 6px 18px;
  border-radius: 20px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.lightbox-close:hover {
  background: #ef4444;
  color: #ffffff;
  transform: scale(1.1);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

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

.lightbox-arrow:hover {
  background: #13c1ac;
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 640px) {
  .lightbox-arrow.prev { left: 10px; }
  .lightbox-arrow.next { right: 10px; }
  .lightbox-close { top: 15px; right: 15px; width: 40px; height: 40px; font-size: 1.1rem; }
}
