:root{
  --yellow:#f6c21a;
  --cream:#fff8d9;
  --ink:#122033;
  --shadow:0 22px 52px rgba(0,0,0,.24);
}

*{box-sizing:border-box}

html,body{
  margin:0;
  min-height:100%;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  color:#fff;
  overflow:hidden;
}

body{
  min-height:100dvh;
  position:relative;
  background:#050014;
}

.bg-fixed{
  position:fixed;
  inset:0;
  z-index:0;
  pointer-events:none;
  background:url('../../css/img/fondonew5.png') center center / cover no-repeat;
  transform:scale(1.03);
}

.kids-bg{
  position:fixed;
  inset:0;
  z-index:1;
  pointer-events:none;
  overflow:hidden;
}

.planet-img{
  position:absolute;
  object-fit:contain;
  filter:
    drop-shadow(0 0 34px rgba(255,255,255,.25))
    drop-shadow(0 24px 44px rgba(0,0,0,.28));
}

.planet-one{
  width:min(360px,28vw);
  left:14vw;
  bottom:44vh;
  animation:planetFloatOne 9s ease-in-out infinite;
}

.planet-two{
  width:min(300px,24vw);
  right:3vw;
  top:12vh;
  animation:planetFloatTwo 11s ease-in-out infinite;
}

.orbit{
  position:absolute;
  width:min(880px,70vw);
  height:220px;
  right:-12vw;
  top:8vh;
  border:3px dashed rgba(255,255,255,.24);
  border-left-color:transparent;
  border-bottom-color:rgba(255,255,255,.12);
  border-radius:50%;
  transform:rotate(-18deg);
}

.star-shape{
  position:absolute;
  color:rgba(255,255,255,.68);
  font-size:28px;
  text-shadow:0 8px 18px rgba(63,33,120,.18);
  animation:starTwinkle 2.8s ease-in-out infinite;
}

.s1{left:13vw;top:20vh}
.s2{right:28vw;top:22vh;animation-delay:-.9s}
.s3{right:18vw;bottom:18vh;animation-delay:-1.6s}
.s4{left:36vw;bottom:12vh;animation-delay:-2.2s}

@keyframes planetFloatOne{
  0%,100%{transform:translateY(0) rotate(-8deg) scale(1);}
  50%{transform:translateY(-26px) rotate(4deg) scale(1.04);}
}

@keyframes planetFloatTwo{
  0%,100%{transform:translateY(0) rotate(8deg) scale(1);}
  50%{transform:translateY(22px) rotate(-6deg) scale(1.05);}
}

@keyframes starTwinkle{
  0%,100%{opacity:.42;transform:scale(.9) rotate(0deg);}
  50%{opacity:1;transform:scale(1.12) rotate(12deg);}
}

/* Header */
.header{
  position:fixed;
  z-index:30;
  top:22px;
  left:28px;
  right:28px;
  height:66px;
  padding:0 18px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:rgba(255,255,255,.20);
  border:1px solid rgba(255,255,255,.55);
  box-shadow:0 18px 45px rgba(0,0,0,.20);
  backdrop-filter:blur(16px);
}

.brand{
  height:100%;
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
  text-decoration:none;
}

.avatar{
  width:48px;
  height:48px;
  border-radius:50%;
  padding:3px;
  background:linear-gradient(135deg,#fff,#f6c21a);
  box-shadow:0 8px 18px rgba(0,0,0,.24);
}

.avatar img{
  width:100%;
  height:100%;
  border-radius:50%;
  object-fit:cover;
  display:block;
}

.brand-title{
  font-size:21px;
  font-weight:900;
  line-height:1;
  text-shadow:0 6px 16px rgba(0,0,0,.22);
}

.header-actions{
  height:100%;
  display:flex;
  align-items:center;
  gap:12px;
}

.icon-btn,
.header .back{
  width:46px;
  height:46px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(246,194,26,.58);
  border:1px solid rgba(255,255,255,.48);
  box-shadow:0 10px 22px rgba(0,0,0,.22);
  text-decoration:none;
}

.header .back{
  color:#744b00;
  background:rgba(255,255,255,.78);
  font-size:34px;
  font-weight:900;
}

.icon-btn img{
  width:28px;
  height:28px;
  object-fit:contain;
  display:block;
}

/* Layout */
.page{
  position:relative;
  z-index:2;
  height:100vh;
  padding:108px 28px 104px;
  overflow:hidden;
}

.shell{
  width:min(1460px,100%);
  height:100%;
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(300px,390px) minmax(500px,1fr) minmax(260px,330px);
  gap:22px;
  align-items:stretch;
}

.left-panel{
  min-height:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  width:max-content;
  height:36px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(246,194,26,.88);
  color:#432b00;
  font-size:13px;
  font-weight:900;
  box-shadow:0 12px 28px rgba(0,0,0,.20);
}

.left-panel h1{
  margin:16px 0 12px;
  font-size:clamp(44px,5vw,76px);
  line-height:.88;
  letter-spacing:-.065em;
  font-weight:900;
  text-shadow:0 18px 36px rgba(0,0,0,.30);
}

.left-panel p{
  margin:0;
  max-width:360px;
  color:rgba(255,255,255,.88);
  font-size:16px;
  line-height:1.28;
  font-weight:800;
}

.main-cta{
  margin-top:24px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.cta{
  height:54px;
  padding:0 22px;
  border-radius:999px;
  border:0;
  color:#322000;
  background:linear-gradient(135deg,#fff5b1,#f6c21a);
  font-size:16px;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 18px 36px rgba(0,0,0,.26);
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.cta.ghost{
  background:rgba(255,255,255,.78);
}

/* Center carousel */
.center-panel{
  min-height:0;
  display:flex;
  align-items:center;
}

.music-stage{
  position:relative;
  width:100%;
  height:min(100%, 560px);
  border-radius:34px;
  padding:18px;
  background:
    radial-gradient(circle at 24% 18%, rgba(255,255,255,.24), transparent 24%),
    linear-gradient(135deg, rgba(255,196,39,.34), rgba(255,255,255,.14) 40%, rgba(139,92,246,.22));
  border:1px solid rgba(255,255,255,.44);
  box-shadow:0 24px 54px rgba(0,0,0,.24);
  backdrop-filter:blur(16px);
  overflow:hidden;
}

.music-stage::before{
  content:"♪";
  position:absolute;
  right:24px;
  top:8px;
  font-size:96px;
  font-weight:900;
  color:rgba(255,255,255,.12);
  transform:rotate(14deg);
}

.stage-top{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:14px;
}

.stage-title{
  font-size:22px;
  font-weight:900;
  text-shadow:0 10px 24px rgba(0,0,0,.22);
}

.stage-pill{
  height:38px;
  padding:0 14px;
  border-radius:999px;
  color:#f0f0f0;
  background:rgb(160 160 107 / 27%);
  display:flex;
  align-items:center;
  font-size:13px;
  font-weight:900;
}

.carousel-area{
  position:relative;
  height:calc(100% - 58px);
  min-height:0;
  display:grid;
  place-items:center;
}

.covers{
  width:100%;
  height:100%;
  display:grid;
  grid-template-columns:.42fr .74fr 1.74fr .74fr .42fr;
  gap:12px;
  align-items:center;
}

.cov{
  position:relative;
  overflow:hidden;
  border-radius:26px;
  background:rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.36);
  box-shadow:0 18px 36px rgba(0,0,0,.26);
  backdrop-filter:blur(8px);
  cursor:pointer;
}

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

.cov.tiny{
  height:42%;
  opacity:.58;
  filter:saturate(.85) brightness(.82);
}

.cov.side{
  height:64%;
  opacity:.78;
  filter:saturate(.92) brightness(.90);
}

.cov.center{
  height:86%;
  border-radius:32px;
  box-shadow:0 28px 64px rgba(0,0,0,.42);
  border:3px solid rgba(255,255,255,.84);
}

.cov.center::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 45%, rgba(0,0,0,.66));
}

.center-info{
  position:absolute;
  z-index:5;
  left:50%;
  bottom:48px;
  transform:translateX(-50%);
  width:min(450px,62%);
  text-align:center;
  pointer-events:none;
}

.center-info h2{
  margin:0;
  font-size:clamp(28px,4vw,54px);
  line-height:.95;
  letter-spacing:-.05em;
  font-weight:900;
  text-shadow:0 18px 34px rgba(0,0,0,.40);
}

.center-info p{
  margin:8px 0 0;
  font-size:15px;
  font-weight:800;
  color:rgba(255,255,255,.88);
}

.play-center{
  position:absolute;
  z-index:6;
  left:50%;
  top:47%;
  transform:translate(-50%,-50%);
  width:82px;
  height:82px;
  border-radius:50%;
  border:0;
  color:#332100;
  background:linear-gradient(145deg,#fff,#fff6de);
  font-size:30px;
  font-weight:900;
  box-shadow:0 22px 44px rgba(0,0,0,.38);
  cursor:pointer;
}

.arrow{
  position:absolute;
  z-index:8;
  top:50%;
  transform:translateY(-50%);
  width:54px;
  height:54px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.72);
  background:rgba(255,255,255,.86);
  color:#7a5200;
  font-size:32px;
  font-weight:900;
  display:grid;
  place-items:center;
  cursor:pointer;
  box-shadow:0 16px 30px rgba(0,0,0,.22);
}

.arrow.left{left:18px}
.arrow.right{right:18px}

/* Right panel */
.right-panel{
  min-height:0;
  display:flex;
  align-items:center;
}

.music-list{
  width:100%;
  height:min(100%, 560px);
  border-radius:34px;
  padding:18px;
  /* background:rgba(255,255,255,.86); */
  border:1px solid rgba(255,255,255,.68);
  box-shadow:var(--shadow);
  backdrop-filter:blur(14px);
  color:#102033;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.list-title{
  display:inline-flex;
  align-items:center;
  width:max-content;
  height:34px;
  padding:0 12px;
  border-radius:999px;
  background:linear-gradient(135deg,#fff7a8,#f6c21a);
  color:#352900;
  font-size:13px;
  font-weight:900;
}

.trending-mini{
  min-height:104px;
  padding:12px;
  border-radius:24px;
  background:rgba(255,255,255,.72);
  display:grid;
  grid-template-columns:70px 1fr;
  gap:12px;
  align-items:center;
}

.trend-cover{
  width:70px;
  height:70px;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 12px 24px rgba(0,0,0,.18);
}

.trend-cover img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.trend-name{
  font-size:18px;
  line-height:1;
  font-weight:900;
}

.trend-sub{
  margin-top:4px;
  color:#64748b;
  font-size:12px;
  font-weight:800;
}

.trend-play{
  margin-top:8px;
  width:42px;
  height:34px;
  border-radius:999px;
  border:0;
  color:#332100;
  background:#f6c21a;
  font-weight:900;
  cursor:pointer;
}

.albums{
  flex:1;
  min-height:0;
  display:grid;
  gap:10px;
  overflow:hidden;
}

.album{
  min-height:86px;
  display:grid;
  grid-template-columns:74px 1fr 42px;
  gap:10px;
  align-items:center;
  padding:8px;
  border-radius:22px;
  background:rgb(192 179 65 / 16%);
  cursor:pointer;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.72);
}

.a-cover{
  position:relative;
  width:74px;
  height:70px;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 20px rgba(0,0,0,.16);
}

.a-cover img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.a-play{
  width:42px;
  height:42px;
  border-radius:50%;
  background:#f6c21a;
  display:grid;
  place-items:center;
  color:#352900;
  font-weight:900;
}

.a-name{
  color:#eff5fc;
  font-size:15px;
  line-height:1.05;
  font-weight:900;
}

.a-sub{
  color:#64748b;
  font-size:12px;
  line-height:1.1;
  font-weight:800;
  margin-top:4px;
}

/* Footer */
.footer{
  position:fixed;
  z-index:30;
  left:28px;
  right:28px;
  bottom:18px;
  height:78px;
  padding:0 44px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  /* background:rgba(255,253,240,.78); */
  border:1px solid rgba(255,255,255,.72);
  box-shadow:0 -10px 34px rgba(0,0,0,.16);
  backdrop-filter:blur(16px);
}

.tab{
  width:70px;
  height:62px;
  border-radius:22px;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;

  text-decoration:none;
  color:#fff;
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.28);
  backdrop-filter:blur(8px);
}

.tab-icon{
  width:34px;
  height:34px;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-size:20px;
  background:rgba(255,255,255,.82);
  color:#5f4a20;
}

.tab-label{
  font-size:10px;
  font-weight:900;
  line-height:1;
  color:#fff;
  text-shadow:0 2px 6px rgba(0,0,0,.6);
}

.tab.active{
  background:rgba(246,194,26,.95);
}

.tab.active{
  background:#f6c21a;
  box-shadow:0 12px 24px rgba(142,99,0,.18);
}

@media (max-width:1100px){
  html,body{overflow:auto}

  .page{
    height:auto;
    min-height:100vh;
    overflow:visible;
  }

  .shell{
    height:auto;
    grid-template-columns:1fr;
  }

  .left-panel{
    justify-content:flex-start;
  }

  .music-stage,
  .music-list{
    height:auto;
  }

  .carousel-area{
    height:520px;
  }

  .albums{
    overflow:visible;
  }
}

@media (max-width:760px){
  .header{
    top:12px;
    left:14px;
    right:14px;
    height:58px;
  }

  .brand-title{font-size:18px}
  .avatar{width:42px;height:42px}
  .icon-btn,.header .back{width:40px;height:40px}
  .icon-btn img{width:24px;height:24px}

  .page{
    padding:88px 14px 112px;
  }

  .left-panel h1{
    font-size:40px;
  }

  .left-panel p{
    font-size:14px;
  }

  .carousel-area{
    height:390px;
  }

  .covers{
    grid-template-columns:.65fr 1.6fr .65fr;
  }

  .cov.tiny{
    display:none;
  }

  .cov.side{
    height:62%;
  }

  .cov.center{
    height:84%;
  }

  .center-info{
    width:80%;
    bottom:38px;
  }

  .arrow{
    width:46px;
    height:46px;
    font-size:28px;
  }

  .footer{
    left:12px;
    right:12px;
    bottom:10px;
    height:72px;
    padding:0 14px;
  }

  .tab{
    width:50px;
    height:50px;
  }
}
.kids-bg{
  position:fixed;
  inset:0;
  z-index:0;
  pointer-events:none;
  overflow:hidden;
}

.planet{
  position:absolute;
  width:min(520px,38vw);
  aspect-ratio:1;
  left:-8vw;
  bottom:-13vw;
  border-radius:50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255,255,255,.88) 0 8%, transparent 9%),
    radial-gradient(circle at 64% 42%, rgba(255,255,255,.32) 0 8%, transparent 9%),
    linear-gradient(135deg,#2ee6a6 0%, #16bde2 36%, #6478ff 72%, #9f68ff 100%);
  box-shadow:
    inset -38px -42px 0 rgba(50,31,116,.16),
    0 28px 80px rgba(44,48,142,.24);
  opacity:.92;
}

.planet::before{
  content:"";
  position:absolute;
  inset:22%;
  border:16px solid rgba(255,255,255,.48);
  border-left-color:transparent;
  border-right-color:transparent;
  border-radius:50%;
  transform:rotate(-18deg) scaleX(1.55);
}

.planet::after{
  content:"";
  position:absolute;
  width:22%;
  height:22%;
  right:18%;
  top:22%;
  border-radius:50%;
  background:rgba(255,255,255,.28);
  box-shadow:
    -120px 100px 0 rgba(255,255,255,.18),
    70px 128px 0 rgba(255,255,255,.16);
}
.orbit{
  position:absolute;
  width:min(880px,70vw);
  height:220px;
  right:-12vw;
  top:8vh;
  border:3px dashed rgba(255,255,255,.34);
  border-left-color:transparent;
  border-bottom-color:rgba(255,255,255,.18);
  border-radius:50%;
  transform:rotate(-18deg);
}

.star-shape{
  position:absolute;
  color:rgba(255,255,255,.78);
  font-size:28px;
  text-shadow:0 8px 18px rgba(63,33,120,.18);
  animation:twinkle 2.8s ease-in-out infinite;
}

.s1{left:13vw;top:20vh}
.s2{right:28vw;top:22vh;animation-delay:-.9s}
.s3{right:18vw;bottom:18vh;animation-delay:-1.6s}
.s4{left:36vw;bottom:12vh;animation-delay:-2.2s}

.blob{
  position:absolute;
  border-radius:38% 62% 55% 45%;
  opacity:.30;
  filter:blur(.2px);
  animation:floaty 7s ease-in-out infinite;
}

.blob.b1{width:130px;height:130px;left:8%;top:34%;background:#ffec6e;}
.blob.b2{width:92px;height:92px;right:6%;top:44%;background:#ffb347;animation-delay:-2s;}
.blob.b3{width:120px;height:120px;left:24%;bottom:18%;background:#ffe66d;animation-delay:-4s;}
.blob.b4{width:86px;height:86px;right:28%;bottom:16%;background:#ff7043;animation-delay:-1s;}

@keyframes floaty{
  0%,100%{transform:translateY(0) rotate(0deg);}
  50%{transform:translateY(-18px) rotate(8deg);}
}

@keyframes rocketFloat{
  0%,100%{transform:translateY(0) rotate(18deg);}
  50%{transform:translateY(-18px) rotate(24deg);}
}

@keyframes twinkle{
  0%,100%{opacity:.42;transform:scale(.9) rotate(0deg);}
  50%{opacity:1;transform:scale(1.12) rotate(12deg);}
}

.artist-intro-modal{
  position:fixed;
  inset:0;
  z-index:99999;
  background:rgba(0,0,0,.88);
  display:none;
  place-items:center;
}

.artist-intro-modal.active{
  display:grid;
}

.artist-intro-modal video{
  width:100%;
  height:100%;
  object-fit:cover;
}

.skip-intro{
  position:absolute;
  right:28px;
  bottom:158px;
  height:52px;
  padding:0 24px;
  border:0;
  border-radius:999px;
  background:#f6c21a;
  color:#302000;
  font-weight:900;
  font-size:16px;
  cursor:pointer;
}

/* Magic Music Carousel */
.cov.center img{
  animation:centerAlive 4.8s ease-in-out infinite;
}

@keyframes centerAlive{
  0%,100%{
    transform:scale(1) rotate(0deg);
  }
  50%{
    transform:scale(1.045) rotate(1.5deg);
  }
}

.play-center{
  animation:playPulse 2.8s ease-in-out infinite;
}

@keyframes playPulse{
  0%,100%{
    transform:translate(-50%,-50%) scale(1);
    box-shadow:0 22px 44px rgba(0,0,0,.38);
  }
  50%{
    transform:translate(-50%,-50%) scale(1.08);
    box-shadow:0 28px 60px rgba(246,194,26,.42);
  }
}

.center-info{
  animation:titleFloat .55s ease both;
}

@keyframes titleFloat{
  from{
    opacity:0;
    transform:translateX(-50%) translateY(12px);
  }
  to{
    opacity:1;
    transform:translateX(-50%) translateY(0);
  }
}

@keyframes centerPop{

  0%{
    transform:scale(.82) rotate(-4deg);
    opacity:0;
  }

  70%{
    transform:scale(1.08) rotate(2deg);
    opacity:1;
  }

  100%{
    transform:scale(1);
    opacity:1;
  }

}
