/* =======================================================
   HOME GLOBAL THEME — colores, fuentes y márgenes base
   ======================================================= */
:root {
  --theme-bg: linear-gradient(135deg, #1a0f00 0%, #994407 60%, #1a0f00 100%);
  --theme-text: #ffffff;
  --secondary-bar-height: 70px;
  --font-primary: 'Poppins', sans-serif;
}

/* =======================================================
   BASE DEL BODY
   ======================================================= */
body {
  background: linear-gradient(135deg, #1a0f00 0%, #471e01 60%, #1a0f00 100%);
  color: var(--theme-text);
  font-family: var(--font-primary);
  margin: 0;
  padding-top: var(--secondary-bar-height);
}

/* =======================================================
   MAIN HEADER
   ======================================================= */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--secondary-bar-height);
  background: var(--theme-bg);
  color: var(--theme-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  z-index: 1000;
}

/* LOGO */
.header-logo {
  text-decoration: none !important;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header-logo:hover {
  transform: scale(1.05);
  opacity: 0.8;
}
.logo-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: url('logo.png') center/cover no-repeat;
  border: 2px solid #f8f5f3;
}
.logo-text {
  color: var(--theme-text);
  text-decoration: none;
}
.header-logo:hover .logo-text {
  text-decoration: underline;
  text-decoration-color: #ffffff;
}

/* =======================================================
   ICONO HOME 2D
   ======================================================= */
.home-icon-2d {
  --icon-color: #fff;
  --icon-size: 30px;
  --icon-move-x: -10px;
  --icon-move-y: 5px;
  width: 22px;
  height: 22px;
  position: relative;
  margin-left: 1.5rem;
  top: -10px;
  color: var(--icon-color);
  transform: translate(var(--icon-move-x), var(--icon-move-y)) scale(calc(var(--icon-size) / 22px));
  transform-origin: left top;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.home-icon-2d::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-bottom: 11px solid currentColor;
}
.home-icon-2d::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 3px;
  width: 16px;
  height: 11px;
  background: currentColor;
}
.home-icon-2d:hover {
  transform: scale(1.1) rotate(8deg);
  opacity: 0.85;
}

/* =======================================================
   BOTÓN HOME
   ======================================================= */
.language-selector {
  margin-left: 1rem;
}
.lang-btn {
  background: linear-gradient(180deg, #eb4411 0%, #000000 50%, #6b2205 100%);
  border: 2px solid #faf6f6;
  color: var(--theme-text);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  top: 2px;
}
.lang-btn:hover {
  background: #fffdfc;
  color: #000;
}

/* =======================================================
   HOME CONTROLS
   ======================================================= */
.home-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-right: 990px;
}

/* =======================================================
   BLOQUE DERECHO DE LA BARRA SUPERIOR
   ======================================================= */
.header-right {
  position: absolute;
  top: 0;
  right: 6rem;
  height: 100%;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  padding: 0 1rem;
  box-sizing: border-box;
  z-index: 1200;
}

/* AVATARES */
.user-avatar,
.curator-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.95);
  background: rgba(0,0,0,0.12);
  flex: 0 0 auto;
  cursor: pointer;
}
.user-avatar img,
.curator-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .18s ease, opacity .18s ease;
}
.user-avatar img:hover,
.curator-avatar img:hover {
  transform: scale(1.08);
  opacity: 0.95;
}

/* SELECTOR DE IDIOMA */
.lang-selector {
  padding: 6px 12px;
  border: 2px solid #fff;
  border-radius: 25px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s ease;
}
.lang-selector:hover {
  background: #fff;
  color: #000;
}

/* BOTONES DEL BLOQUE DERECHO */
.nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-btn i {
  font-size: 1.3rem;
  margin-bottom: 0.15rem;
}
.nav-btn:hover {
  transform: scale(1.1);
  opacity: 0.85;
}

/* ============================================================
   MENÚ EXPLORAR — NUEVO DISEÑO COMPACTO Y VISTOSO
   ============================================================ */
.explorar-dropdown {
  position: absolute;
  top: 50px;                   /* justo debajo del botón */
  right: 140px;                /* alineado al botón */
  width: 360px;                /* compacto y elegante */

  background: #120700;
  border: 2px solid #ff9a3c;
  border-radius: 14px;

  padding: 15px 0;

  display: flex;
  flex-direction: column;
  gap: 8px;

  max-height: 0;               /* 🔥 colapsado al inicio */
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.35s ease, opacity 0.35s ease, transform 0.35s ease;

  box-shadow: 0 6px 18px rgba(0,0,0,0.65),
              0 0 10px rgba(255,120,0,0.55);

  z-index: 99999;
}

#user-menu {
  right: 140px !important;   /* alineado al avatar */
  top: 50px !important;
}

.explorar-dropdown.show {
  max-height: 200px;  /* ajusta si quieres más alto */
  opacity: 1;
  transform: translateY(0);
}


.explorar-item {
  width: 90%;
  padding: 3px 0;
  text-align: center;

  font-weight: 800;
  font-size: 0.95rem;
  color: #ffd79e;

  border-bottom: 2px solid rgba(255,150,50,0.35);

  background: linear-gradient(180deg, #4a1a00, #2a0c00);
  cursor: pointer;
  transition: all .2s ease;

  border-radius: 10px;   /* 🔥 ESQUINAS REDONDEADAS */
  margin: 3px auto;       /* 🔥 SEPARA DEL BORDE PARA CALZAR CON EL MENÚ */
}


.explorar-item:last-child {
  border-bottom: none;
}

.explorar-item:hover {
  background: linear-gradient(180deg, #ff7c11, #b93f00);
  color: #fff;
  transform: scale(1.03);
}




/* =======================================================
   RESPONSIVE
   ======================================================= */
@media (max-width: 880px) {
  .header-right {
    max-width: calc(100% - 120px);
    right: 0.6rem;
    gap: 0.6rem;
  }
  .user-avatar,
  .curator-avatar {
    width: 36px;
    height: 36px;
  }
  .nav-btn i {
    font-size: 1.1rem;
  }
  .nav-btn .nav-label {
    font-size: 0.72rem;
  }
}

/* === Barra Secundaria Ajustada (importada de Landing Page) === */
.secondary-bar {
  width: 100%;
  background: linear-gradient(180deg, rgba(97, 13, 2, 0.9) 0%, rgba(11,11,11,0.8) 100%);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  position: relative;
  z-index: 9;
  border-bottom: 0px solid rgb(41, 19, 1);
  backdrop-filter: blur(6px);
}

/* Contenedor interno */
.secondary-bar .container {
  width: 100%;
  max-width: 1400px;
  padding: 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Grupo de elementos */
.sb-group {
  display: flex;
  align-items: center;
  gap: 20px;
  transform: translateX(70px);
}

/* Título */
.language-selector {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 26px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 25px;
  background: rgba(207, 94, 14, 0.678);
  box-shadow: 0 3px 8px rgba(255,107,0,0.28);
  font-weight: 800;
  color: #fff;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
  margin-left: -35px;
}
.language-selector:hover {
  background: rgba(255, 106, 0, 0.959);
  transform: translateY(-1px);
}

/* =======================================================
   BOTÓN DE DIRECCIÓN
   ======================================================= */
.direction-btn {
  --scale: 1;
  --arrow-ratio: 0.50;

  background-color: #220b01;
  border: 2px solid #ffffff;
  border-radius: 10px;
  width: calc(35px * var(--scale));
  height: calc(35px * var(--scale));
  position: absolute;
  top: 21.8px;
  left: 400px;
  margin-left: 13px;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.direction-btn .arrow-icon {
  position: absolute;
  top: calc(50% + var(--offset-y, 0px));
  left: calc(50% + var(--offset-x, 0px));
  transform: translate(-50%, -50%) scale(var(--scale, 1));
  width: 0;
  height: 0;
  border-left: calc(12px * var(--scale, 1)) solid transparent;
  border-right: calc(12px * var(--scale, 1)) solid transparent;
  border-bottom: calc(15px * var(--scale, 1)) solid var(--arrow-color, #fff);
  filter: drop-shadow(0 0 2px rgba(0,0,0,0.4));
  transition: all 0.3s ease;
}

.direction-btn.down .arrow-icon {
  transform: translateX(-50%) rotate(180deg);
}

.direction-btn:hover {
  background-color: #f70b0b;
  transform: scale(1.05);
}

.direction-btn:active {
  transform: scale(0.80);
  opacity: 0.85;
}

.direction-btn {
  transform: scale(var(--btn-scale, 1));
  transform-origin: center center;
}


/* =======================================================
   BARRA SECUNDARIA: REDES / PLATAFORMAS
   ======================================================= */

.artist-badge{
  display:flex;
  align-items:center;
  gap:8px;
  padding:6px 14px;
  border:2px solid rgba(255,255,255,.85);
  border-radius:30px;
  background:rgba(0,0,0,.35);
  text-decoration:none;
  color:#fff;
  font-weight:800;
  transition:all .2s ease;
  margin-left: 10px;
}

.artist-badge img{
  width:34px;
  height:34px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid #fff;
}

.artist-badge:hover{
  background:#c7470c;
  color:#000;
  transform:scale(1.05);
}

.social-bar {
  height: 70px;
  display: flex;
  align-items: center;
  overflow: hidden;

}

/* ===== ITEM ===== */
.social-item {
  min-width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.7rem;
  gap: 6px;
  transition: transform .2s ease, opacity .2s ease;
  margin-left: -20px;
}

.social-item img {
  width: 28px;
  height: 28px;
}

.social-item:hover {
  transform: scale(1.1);
  opacity: 0.85;
}

/* ================= TERCERA BARRA — PERSONALIZACIÓN ================= */

/* CONTENEDOR GENERAL */
.tertiary-bar,
.secondary-bar + .secondary-bar {
  width: 60%;
  margin-top: 15px;        /* separación vertical */
  background: transparent;/* cambia fondo aquí */
  margin-left: 470px;
  border-radius: 40px;

}

/* GRUPO DE LINKS */
.tertiary-bar .sb-group,
.secondary-bar + .secondary-bar .sb-group {
  display: flex;
  flex-wrap: wrap;        /* quita si la quieres en una sola línea */
  justify-content: center;/* left | center | right */
  gap: 16px;              /* espacio entre ítems */
  margin-left: -15px;
}

/* ITEM */
.tertiary-bar .social-item,
.secondary-bar + .secondary-bar .social-item {
  padding: 6px 10px;      /* tamaño del botón */
  border-radius: 8px;     /* bordes */
  background: transparent;/* fondo del botón */
  font-size: 13px;        /* texto */
}

/* ICONO */
.tertiary-bar .social-item img,
.secondary-bar + .secondary-bar .social-item img {
  width: 18px;            /* tamaño icono */
  height: 18px;
}

/* HOVER */
.tertiary-bar .social-item:hover,
.secondary-bar + .secondary-bar .social-item:hover {
  opacity: 0.8;
  transform: translateY(-4px);
}




/* ================= MINI BARRA SPOTIFY ================= */
/* ================= MINI BARRA SPOTIFY ================= */
.mini-spotify-bar{
  width:30%;
  height:45px;
  margin-left:30px;
  margin-top:-67px;
  display:flex;
  align-items:center;
  gap:14px;
  padding:10px 18px;
  border-radius:40px;
  background:linear-gradient(135deg,#052e16,#000);
  cursor:pointer;
  transition:all .25s ease;
  text-decoration:none;
  color:#fff;
}
.mini-spotify-bar:hover{
  transform:scale(1.03);
  box-shadow:0 0 18px rgba(0,255,120,.45);
}

.sp-avatar{
  width:45px;
  height:45px;
  border-radius:50%;
  border:2px solid #e8f717;
  object-fit:cover;
}

.sp-meta{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.sp-name{
  font-weight:800;
  font-size:.95rem;
  margin-left: 6px;
}

.sp-stats{
  display:flex;
  gap:14px;
  font-size:.75rem;
  font-weight:750;
  animation:blink 1.2s infinite;
  padding:2px 6px;
  border-radius:12px;
}
  
/* HOVER: borde amarillo fosforescente */
.sp-stats:hover{
  box-shadow:0 0 0 1.5px #e7ff14;
}

/* FLECHA junto a 20K+ */
.sp-stat.followers::after{
  content:" ↑";
  color:#ffe714;
  font-weight:900;
}

/* MISMO PARPADEO.
   SOLO MÁS TIEMPO EN BLANCO DESPUÉS */
@keyframes blink{
  /* PARPADEO (NO MODIFICADO) */
  0%{
    opacity:1;
    color:#ffffff;
  }
  50%{
    opacity:0.6;
    color:#e7ff14;
  }
  70%{
    opacity:1;
    color:#e7ff14;
  }

  /* BLANCO ESTÁTICO HASTA EL PRÓXIMO CICLO */
  70.01%{
    opacity:1;
    color:#ffffff;
  }
  100%{
    opacity:1;
    color:#ffffff;
  }
}



/* === PERGAMINO === */
.bio-scroll-paper {
  position: relative;
  width: 85%;
  margin-left: 98px;
  margin-top: -80px;
  padding: 40px 80px;
  color: #fff;
  background: linear-gradient(180deg, #200f05, #5c2605);
  border-top: 4px solid #031804;
  border-bottom: 4px solid #010e02;
  font-family: "Times New Roman", serif;
  box-sizing: border-box;
}

/* === ROLLOS LATERALES (FORMA REAL DE PERGAMINO) === */
.bio-scroll-paper::before,
.bio-scroll-paper::after {
  content: "";
  position: absolute;
  top: -20px;
  width: 80px;
  height: calc(100% + 40px);
  background: linear-gradient(
  180deg,
  #410606 0%,
  #470101 20%,
  #5a0606 40%,
  #250101 65%,
  #3a2a00 85%,
  #000000 100%
);

border-radius: 60px;

box-shadow:
  inset 0 0 25px rgba(2, 48, 10, 0.9),
  inset 0 -10px 25px rgba(0, 0, 0, 0.8),
  0 0 30px rgb(3, 58, 3);

}

.bio-scroll-paper::before {
  left: -70px;
}

.bio-scroll-paper::after {
  right: -70px;
  box-shadow: inset 10px 0 20px rgba(0,0,0,.4);
}

/* === TEXTO === */
.bio-scroll-paper h2 {
  text-align: center;
  margin: 45px 0 25px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.bio-scroll-paper p {
  text-align: justify;
  line-height: 1.9;
  margin-bottom: 22px;
}

.bio-scroll-paper .bio-intro {
  text-align: center;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 40px;
}

.bio-list {
  margin-bottom: 24px;
}

.bio-scroll-paper .bio-line {
  text-align: left;
  line-height: 1.75;
  margin-bottom: 10px;
}

/* TÍTULOS A LA IZQUIERDA */
.bio-scroll-paper h2 {
  text-align: left;
}


.bio-end {
  text-align: center;
  margin-top: 50px;
  font-style: italic;
  font-weight: bold;
}

html, body {
  overflow-x: hidden !important;
}

/* aislar overflow SOLO de esta sección */
.bio-scroll-wrap {
  overflow: hidden;
}
/* DAR MÁS ESPACIO VERTICAL A LA SECCIÓN */
.bio-scroll-wrap {
  padding-top: 120px;
  padding-bottom: 120px;
}

/* =======================================================
   MARCOS DE FOTOS DE LA BIOGRAFÍA
   FORMATO 1:1 - DOS MARCOS POR FILA
   ======================================================= */
.bio-photo-gallery {
  width: 85%;
  margin-left: 98px;
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  box-sizing: border-box;
}

.bio-photo-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  border: 3px solid rgba(255, 255, 255, 0.85);
  background:
    linear-gradient(180deg, rgba(255, 174, 91, 0.16), rgba(29, 10, 2, 0.72)),
    linear-gradient(135deg, #2a1205 0%, #5d2403 100%);
  box-shadow:
    inset 0 0 24px rgba(0, 0, 0, 0.35),
    0 0 18px rgba(255, 139, 45, 0.14);
  overflow: hidden;
}

.bio-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 50px;
  display: block;
}

.bio-photo-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1.5px dashed rgba(255, 244, 220, 0.45);
  border-radius: 16px;
}

.bio-photo-frame__index {
  position: absolute;
  right: 16px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(22, 7, 1, 0.58);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.bio-photo-frame.is-loaded::before,
.bio-photo-frame.is-loaded .bio-photo-frame__index {
  opacity: 0;
  pointer-events: none;
}

/* =======================================================
   PANEL CURADOR - BARRA FINAL MOBILE REDES REAL-LIVE
   ======================================================= */
.curator-mobile-final-bar {
  display: none;
}

/* =======================================================
   PANEL CURADOR - RESPONSIVE MOBILE VERTICAL / HORIZONTAL REAL-LIVE
   ======================================================= */
@media (max-width: 768px),
       (hover: none) and (pointer: coarse) and (max-width: 1024px),
       (orientation: landscape) and (max-height: 540px) and (max-width: 1024px) {
  body {
    padding-top: var(--secondary-bar-height);
  }

  .main-header {
    min-height: var(--secondary-bar-height);
    height: var(--secondary-bar-height);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 10px 12px;
    box-sizing: border-box;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.42);
    overflow: hidden;
  }

  .header-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-width: 0;
    flex: 0 1 auto;
    color: #fff;
    font-size: clamp(0.92rem, 3.6vw, 1.04rem);
    font-weight: 900;
  }

  .logo-circle {
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
  }

  .logo-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .home-controls {
    position: static;
    z-index: 1100;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 0 0 auto;
    margin-right: 0;
    transform: none;
  }

  .home-icon-2d,
  .lang-btn {
    display: none !important;
  }

  .language-selector-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .header-right {
    display: none !important;
  }

  #lang-selector {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    margin-left: 0;
    padding: 7px 10px;
    border: 2px solid #fff;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: none;
    color: #fff;
    font-weight: 900;
  }

  .direction-btn {
    --scale: 1;
    position: static;
    top: auto;
    left: auto;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    margin-left: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: none;
  }

  .direction-btn .arrow-icon {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 13px solid #fff;
  }

  .direction-btn.down .arrow-icon {
    transform: rotate(180deg);
  }

  .secondary-bar {
    height: auto;
    min-height: 70px;
    justify-content: center;
    overflow: visible;
    padding: 8px 0;
    box-sizing: border-box;
  }

  .secondary-bar .container {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .sb-group {
    width: 100%;
    justify-content: center;
    gap: 8px;
    transform: none;
  }

  #galeria-playlists {
    margin-left: 0;
    padding: 8px 14px;
    font-size: 0.78rem;
    line-height: 1.1;
  }

  .secondary-bar.social-bar {
    width: auto;
    min-height: 0;
    height: auto;
    margin-left: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    backdrop-filter: none;
    overflow: visible;
  }

  .social-item {
    min-width: 58px;
    margin-left: 0;
    gap: 4px;
    font-size: 0.58rem;
    line-height: 1.05;
    text-align: center;
  }

  .social-item img {
    width: 22px;
    height: 22px;
  }

  .secondary-bar.curator-artist-bar-shell {
    width: calc(100% - 18px);
    min-height: 0;
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 10px auto 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    backdrop-filter: none;
  }

  .secondary-bar.curator-artist-bar {
    width: auto !important;
    max-width: max-content;
    min-width: 122px;
    min-height: 54px;
    margin: 0 !important;
    padding: 6px 12px;
    border-radius: 40px;
    background: linear-gradient(180deg, rgba(97, 13, 2, 0.9) 0%, rgba(11,11,11,0.8) 100%);
  }

  .secondary-bar.curator-artist-bar .container {
    width: auto;
    max-width: max-content;
    padding: 0;
  }

  .secondary-bar.curator-artist-bar .sb-group {
    width: auto;
    flex-wrap: nowrap;
    gap: 0;
    margin-left: 0;
  }

  .secondary-bar.curator-artist-bar .artist-badge {
    margin-left: 0;
    padding: 8px 18px;
    gap: 7px;
    font-size: 0.82rem;
  }

  .secondary-bar.curator-artist-bar .artist-badge img {
    width: 34px;
    height: 34px;
  }

  .curator-mobile-final-bar:not([hidden]) {
    width: calc(100% - 20px);
    min-height: 70px;
    display: flex;
    margin: 18px auto 0;
    padding: 10px 8px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(97, 13, 2, 0.9) 0%, rgba(11,11,11,0.8) 100%);
  }

  .curator-mobile-final-bar .container {
    padding: 0;
  }

  .curator-mobile-final-bar .sb-group {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 8px;
    margin-left: 0;
    transform: none;
  }

  .curator-mobile-final-bar .social-item {
    min-width: 68px;
    padding: 6px 4px;
    border-radius: 8px;
    background: transparent;
  }

  .mini-spotify-bar {
    width: fit-content;
    min-width: 0;
    max-width: calc(100vw - 150px);
    min-height: 54px;
    height: auto;
    margin: 0;
    gap: 8px;
    padding: 10px 10px;
    box-sizing: border-box;
  }

  .sp-avatar {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
  }

  .sp-meta {
    min-width: 0;
    flex: 1 1 auto;
  }

  .sp-name {
    margin-left: 0;
    font-size: 0.74rem;
    line-height: 1.05;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .sp-stats {
    flex-wrap: wrap;
    gap: 2px 6px;
    padding: 0;
    font-size: 0.54rem;
    line-height: 1.15;
  }

  .sp-stat {
    white-space: nowrap;
  }

  #sp-following {
    display: none !important;
  }

  .bio-scroll-wrap {
    padding-top: 8px;
    padding-bottom: 42px;
  }

  .bio-scroll-paper {
    width: calc(100% - 56px);
    margin: 8px auto 0;
    padding: 26px 20px;
  }

  .bio-scroll-paper::before,
  .bio-scroll-paper::after {
    top: -12px;
    width: 26px;
    height: calc(100% + 24px);
    border-radius: 30px;
  }

  .bio-scroll-paper::before {
    left: -20px;
  }

  .bio-scroll-paper::after {
    right: -20px;
  }

  .bio-scroll-paper h2 {
    margin: 24px 0 16px;
    font-size: 0.92rem;
    letter-spacing: 1px;
  }

  .bio-scroll-paper p,
  .bio-scroll-paper .bio-line {
    font-size: 0.84rem;
    line-height: 1.55;
    margin-bottom: 9px;
  }

  .bio-scroll-paper .bio-intro {
    margin-bottom: 24px;
  }

  .bio-photo-gallery {
    width: calc(100% - 24px);
    margin: 22px auto 0;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bio-photo-frame {
    border-radius: 16px;
  }

  .bio-photo-frame img {
    border-radius: 18px;
  }
}

/* =======================================================
   PANEL CURADOR - DASHBOARD MENU MOBILE BASE OCULTA PC REAL-LIVE
   ======================================================= */
.mobile-dashboard-menu-shell,
.mobile-dashboard-menu-btn,
#mobile-dashboard-menu {
  display: none;
}

/* =======================================================
   PANEL CURADOR - BARRA DASHBOARD MOBILE REAL-LIVE
   ======================================================= */
@media (max-width: 768px),
       (hover: none) and (pointer: coarse) and (max-width: 1024px),
       (orientation: landscape) and (max-height: 540px) and (max-width: 1024px) {
  .main-header,
  .main-header * {
    box-sizing: border-box;
  }

  .main-header {
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: var(--secondary-bar-height);
    min-height: var(--secondary-bar-height);
    padding: 10px;
    gap: 0;
    justify-content: flex-start;
    align-items: center;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.42);
    overflow: visible;
  }

  .header-logo {
    gap: 0.6rem;
    min-width: 0;
    max-width: calc(100vw - 238px);
    margin-right: 0;
    font-size: clamp(0.84rem, 3.4vw, 0.9rem);
    font-weight: 900;
    flex: 0 1 auto;
    transform: none;
  }

  .header-logo:hover {
    transform: none;
    opacity: 0.88;
  }

  .logo-circle {
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
  }

  .logo-text {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .home-icon-2d,
  .header-right > :not(.lang-selector):not(.mobile-dashboard-menu-shell) {
    display: none !important;
  }

  .home-controls {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    z-index: 1202;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 0 0 auto;
    margin-left: 6px;
    margin-right: 0;
    transform: none;
  }

  .language-selector-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .lang-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    top: 0;
    min-width: 54px;
    min-height: 34px;
    padding: 6px 11px;
    border-radius: 25px;
    font-size: 0.84rem;
    line-height: 1;
    text-transform: uppercase;
  }

  .direction-btn {
    --scale: 1;
    position: relative;
    top: auto;
    left: auto;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    margin-left: 0;
  }

  .direction-btn .arrow-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 13px solid #fff;
  }

  .direction-btn.down .arrow-icon {
    transform: translate(-50%, -50%) rotate(180deg);
  }

  .header-right {
    position: relative;
    top: auto;
    right: auto;
    height: auto;
    max-width: none;
    z-index: 1201;
    display: inline-flex !important;
    flex: 0 0 auto;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    padding: 0;
    transform: none;
    gap: 6px;
  }

  .header-right .lang-selector {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    min-height: 34px;
    padding: 6px 9px;
    border-radius: 25px;
    font-size: 0.84rem;
    font-weight: 900;
    line-height: 1;
  }

  .mobile-dashboard-menu-shell {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }

  .mobile-dashboard-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 62px;
    min-height: 34px;
    padding: 6px 10px;
    border: 2px solid #fff;
    border-radius: 25px;
    background: linear-gradient(180deg, #4a1a00, #120700);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 0.84rem;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    list-style: none;
    transition: transform .2s ease, opacity .2s ease, background .2s ease;
  }

  .mobile-dashboard-menu-btn::-webkit-details-marker {
    display: none;
  }

  .mobile-dashboard-menu-btn:hover,
  .mobile-dashboard-menu-btn:focus-visible {
    background: linear-gradient(180deg, #ff7c11, #7a2600);
    opacity: 0.95;
    outline: none;
    transform: scale(1.03);
  }

  #mobile-dashboard-menu.mobile-dashboard-dropdown {
    position: fixed;
    top: calc(var(--secondary-bar-height) + 8px);
    left: 50%;
    right: auto;
    width: min(310px, calc(100vw - 32px));
    max-height: 0;
    display: flex;
    padding: 12px 0;
    transform: translate(-50%, -10px);
    z-index: 99999;
  }

  #mobile-dashboard-menu.mobile-dashboard-dropdown .explorar-item {
    min-height: 36px;
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
  }

  .mobile-dashboard-menu-shell[open] #mobile-dashboard-menu.mobile-dashboard-dropdown,
  #mobile-dashboard-menu.mobile-dashboard-dropdown.show {
    max-height: min(520px, calc(100vh - var(--secondary-bar-height) - 24px));
    overflow-y: auto;
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 360px) {
  .mobile-dashboard-menu-btn {
    min-width: 56px;
    padding-right: 8px;
    padding-left: 8px;
  }
}
