
.genre-landing-page{
  padding-top: calc(var(--header-height, 64px) + 18px);

  padding-bottom: 0;
  background: transparent;
}
.genre-landing-page .container{
  width:100%;
  max-width: var(--container-max-width, 1600px);
  margin:0 auto;
  padding:0 var(--container-padding, 20px);
  padding-right: calc(var(--container-padding, 20px) + 8px);
}

.genre-hero{
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0;
  overflow: visible;
  box-shadow: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.genre-hero-inner{
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:flex-start;
  gap: 12px;
}
.genre-hero-title{
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0 0 14px 0;
  color: var(--text-primary);
  line-height: 1.1;
  text-shadow: none;
  text-transform: uppercase;
}
.genre-hero-desc{
  margin: 0 0 20px 0;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  text-align: center;
}
.genre-hero-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content:center;
}
.genre-action-btn{
  height: 28px;
  padding: 0 10px;
  border-radius: 6px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size: 12px;
  text-decoration:none;
  color: #e5eef9;
  border: 1px solid rgba(148,163,184,.22);
  background: rgba(2,6,23,.55);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.genre-action-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(148,163,184,.36);
  background: rgba(2,6,23,.60);
}
.genre-action-btn.primary{
  border-color: rgba(34,197,94,.55);
  background: rgba(34,197,94,.14);
  color: #93f1be;
}

.genre-shell{
  display:grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, .6fr);
  gap: 14px;
  margin-top: 0;
}
.main-panel, .side-panel{
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.main-panel::before,
.side-panel::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:4px;
  background: var(--genre-color, #4ECDC4);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  z-index: 0;
}
.main-panel:hover::before,
.side-panel:hover::before{
  transform: scaleX(1);
}
.panel-head{
  padding: 12px 14px;
  border-bottom: none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.main-panel > .panel-head{
  padding: 14px 16px 10px;
  background: transparent;
  border-bottom: none;
}
.genre-landing-page .main-panel > .panel-head.genre-main-head{
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  line-height: 1;
}
.genre-landing-page .main-panel{
  border: none;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
.genre-landing-page .main-panel::before{
  display: none;
}
.genre-head-stack{
  display:flex;
  flex-direction: column;
  align-items:flex-start;
  gap: 10px;
  min-width: 0;
  width: 100%;
}
.genre-head-title{
  margin: 0;
  padding: 0;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
  color: rgba(231,238,247,.98);
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  text-align: left;
}
.genre-head-tabs{
  display:flex;
  align-items:center;
  gap: 16px;
  margin: 0;
  padding: 0;
  width: 100%;
}
.genre-head-tab{
  position: relative;
  display:inline-flex;
  align-items:center;
  height: 28px;
  margin: 0;
  padding: 0;
  font-size: 13px;
  font-weight: 800;
  color: rgba(226,232,240,.82);
  text-decoration:none;
}
.genre-head-tab:hover{ color: rgba(255,255,255,.96); }
.genre-head-tab.active{
  color: rgba(255,255,255,.98);
}
.genre-head-tab.active::after{
  content:'';
  position:absolute;
  left:0;
  right:0;
  bottom:-6px;
  height: 3px;
  border-radius: 999px;
  background: var(--genre-color, #22c55e);
}

.genre-landing-page .genre-shell{
  gap: 18px;
}

.featured-carousel{
  margin: 0;
}
.featured-slide{
  border: none !important;
  box-shadow: none;
}

@media (max-width: 768px){
  .genre-head-title{ font-size: 20px; }
  .genre-head-tabs{ gap: 12px; }
}
.panel-head-left{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 0;
}
.panel-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap: 10px;
  flex-wrap: wrap;
}
.panel-actions .genre-action-btn{
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .2px;
  border-color: rgba(148,163,184,.28);
  background: rgba(2,6,23,.42);
}
.panel-actions .genre-action-btn:hover{
  background: rgba(2,6,23,.60);
  border-color: rgba(148,163,184,.44);
}
.panel-actions .genre-action-btn.primary{
  border-color: rgba(34,197,94,.55);
  background: rgba(34,197,94,.16);
  color: #93f1be;
}
.panel-actions .genre-action-btn.primary:hover{
  background: rgba(34,197,94,.22);
  border-color: rgba(34,197,94,.70);
}
.panel-actions .genre-action-btn:focus-visible{
  outline: 2px solid rgba(34,197,94,.55);
  outline-offset: 2px;
}
.panel-title{
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .2px;
  color: #f8fafc;
}
.panel-link{
  color: rgba(138,240,181,.95);
  font-size: 12px;
  text-decoration:none;
  white-space: nowrap;
}
.panel-link:hover{ text-decoration: underline; }

.featured-card{
  display:flex;
  flex-direction: column;
  align-items:center;
  gap: 10px;
  padding: 24px 18px 18px;
  text-decoration:none;
  color: inherit;
  border-radius: 0;
  position: relative;
  z-index: 1;
  text-align: center;
}
.featured-card:hover .featured-cover{ transform: scale(1.02); }
.featured-cover{
  width: 180px;
  height: 180px;
  border-radius: 16px;
  object-fit: cover;
  background: #0b0f14;
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .25s ease;
}
.featured-info{ width: 100%; min-width: 0; }
.featured-badge{
  display:inline-flex;
  align-items:center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(34,197,94,.14);
  border: 1px solid rgba(34,197,94,.40);
  color: #93f1be;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .3px;
}
.featured-title{
  margin-top: 6px;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.featured-artist{
  margin-top: 4px;
  font-size: 14px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.featured-meta{
  margin-top: 6px;
  font-size: 10.5px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display:flex;
  align-items:center;
  justify-content:center;
}
.featured-meta .sep{
  margin: 0 8px;
  opacity: .6;
}

.featured-carousel{
  padding: 0;
  position: relative;
  z-index: 1;
}
.featured-slide{
  position: relative;
  height: clamp(320px, 36vw, 400px);
  overflow: hidden;
  display:flex;
  align-items:stretch;
  justify-content:center;
  padding: 0;
  border-radius: 0;
  --slide-tint: rgba(120,120,120,1);
  background: linear-gradient(180deg,
      rgba(245,246,248,0.96) 0%,
      rgba(230,232,236,0.92) 60%,
      rgba(22,24,30,0.55) 100%);
  transition: all 0.3s ease;
}
.featured-carousel .featured-slide > .carousel-nav{
  top: 50% !important;
  transform: translateY(-50%) scale(0.98) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 64px !important;

  border: none !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: rgba(255,255,255,0.88) !important;
  font-size: 34px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-shadow: 0 10px 22px rgba(0,0,0,0.55);
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.22s ease, transform 0.22s ease, background .2s ease, border-color .2s ease, visibility 0.22s ease;
}
.featured-carousel .featured-slide:hover > .carousel-nav,
.featured-carousel .featured-slide:focus-within > .carousel-nav{
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(-50%) scale(1) !important;
}
.featured-carousel .featured-slide > .carousel-nav:hover{
  color: rgba(255,255,255,0.98) !important;
  transform: translateY(-50%) scale(1.06) !important;
}
.featured-carousel .featured-slide > .carousel-nav:active{
  transform: translateY(-50%) scale(0.98) !important;
}

.featured-carousel .featured-slide > .carousel-prev{
  left: 10px !important;
}
.featured-carousel .featured-slide > .carousel-next{
  right: 10px !important;
}
.featured-slide-link{
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display:block;
  text-decoration:none;
  color: inherit;
}
.featured-slide-art-stack{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(260px, 28vw, 340px);
  height: clamp(260px, 28vw, 340px);
  z-index: 2;
}
.featured-slide-art-stack .featured-slide-art{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
  background: #0b0f14;
  border: 1px solid rgba(0,0,0,0.18);
  box-shadow:
    0 16px 26px rgba(0,0,0,0.38),
    0 50px 120px rgba(0,0,0,0.28);
}
.genre-landing-page .featured-slide-art-stack .preorder-badge{
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 4;
  padding: 0 5px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 500;
  color: #111;
  background: #f59e0b;
  line-height: 1.2;
  pointer-events: none;
}

.featured-slide-link::before{
  content:'';
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(300px, 34vw, 480px);
  height: clamp(90px, 10vw, 150px);
  transform: translate(-50%, calc(-50% + 220px));
  background: radial-gradient(closest-side,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.22) 42%,
    rgba(0,0,0,0.0) 72%);
  filter: blur(10px);
  opacity: 0.55;
  z-index: 1;
  pointer-events: none;
}
.featured-slide-info{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  min-width: 0;
  padding: 0;
  box-sizing: border-box;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s cubic-bezier(.2,.8,.2,1), opacity 0.22s ease;
}
.featured-slide:hover .featured-slide-info,
.featured-slide:focus-within .featured-slide-info{
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.featured-info-bar{
  width: 100%;
  padding: 16px 18px 14px;
  background: rgba(10, 12, 16, 0.74);
  border-top: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.featured-info-title{
  font-size: 18px;
  font-weight: 900;
  color: rgba(248,250,252,0.98);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 0 6px 0;
}
.featured-info-sub{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 0;
  margin-bottom: 12px;
}
.featured-info-artist{
  font-size: 13px;
  color: rgba(203,213,225,0.95);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.featured-info-meta{
  font-size: 12px;
  color: rgba(186,198,214,0.90);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.featured-info-actions{
  display:flex;
  align-items:center;
  gap: 10px;
}
.featured-action-play{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.95);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor: pointer;
  transition: transform .14s ease, background .14s ease, border-color .14s ease;
}
.featured-action-play:hover{
  transform: translateY(-1px) scale(1.03);
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.18);
}
.featured-action-icon{
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.92);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor: pointer;
  transition: background .14s ease, border-color .14s ease, transform .14s ease;
}
.featured-action-icon:hover{
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.16);
  transform: translateY(-1px);
}
.featured-action-icon.js-add-to-cart{
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255,255,255,0.92);
}
.featured-action-icon.js-add-to-cart:hover{
  background: transparent;
  border-color: transparent;
  transform: translateY(-1px);
  color: rgba(255,255,255,0.98);
}
.featured-action-icon.js-add-to-cart i{
  font-size: 14px;
  text-shadow: 0 6px 14px rgba(0,0,0,0.45);
}
.featured-price-dd{
  height: 34px;
  padding: 0 10px 0 12px;
  border-radius: 8px;
  border: 0;
  background: rgba(255, 58, 115, 0.92);
  color: rgba(255,255,255,0.98);
  font-weight: 900;
  letter-spacing: .2px;
  display:inline-flex;
  align-items:center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0,0,0,0.28);
}
.featured-price-dd .caret{
  font-size: 12px;
  opacity: 0.95;
  transform: translateY(-1px);
}
.featured-badge{
  position: absolute;
  top: 24px;
  left: 18px;
  z-index: 4;
  margin: 0 !important;
}

.new-track-card{
  position: relative;
}
.genre-landing-page .new-track-art-wrap{
  position: relative;
  display: block;
}
.genre-landing-page .new-track-art-wrap .preorder-badge{
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 4;
  padding: 0 5px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 500;
  color: #111;
  background: #f59e0b;
  line-height: 1.2;
}
.new-track-card .card-hover-price--preorder{
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  line-height: 1.15;
  font-size: 13px;
}
.new-track-card .card-hover-price-old{
  font-size: 11px;
  font-weight: 600;
  text-decoration: line-through;
  opacity: 0.88;
}
.new-track-card .card-hover-actions{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  height: 40px;
  padding: 0 8px;
  border-radius: 0;
  border: 0;
  background: rgba(0,0,0,0.62);
  box-shadow: 0 -1px 0 rgba(255,255,255,0.08) inset;
  transform: translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.new-track-card:hover .card-hover-actions{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.new-track-card .card-hover-left{
  display: flex;
  align-items: center;
  gap: 0;
}
.new-track-card .card-hover-btn{
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.new-track-card .card-hover-btn + .card-hover-btn{
  border-left: 1px solid rgba(255,255,255,0.10);
}
.new-track-card .card-hover-btn:hover{
  background: rgba(255,255,255,0.10);
  transform: translateY(-1px);
}
.new-track-card .card-hover-btn i{
  font-size: 15px;
}
.new-track-card .card-hover-price{
  height: 40px;
  padding: 0 12px;
  border-radius: 0;
  border: 0;
  background: rgba(255, 58, 115, 0.92);
  color: rgba(255,255,255,0.98);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: .2px;
}
.new-track-card::after{
  content:'';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);
  opacity: 0;
  transition: opacity .18s ease;
  pointer-events: none;
  z-index: 3;
}
.new-track-card:hover::after{ opacity: 1; }

.featured-price-pill{
  height: 26px;
  padding: 0 10px;
  border-radius: 6px;
  background: rgba(255,61,86,.16);
  border: 1px solid rgba(255,61,86,.35);
  color: rgba(255,187,197,.95);
  font-weight: 900;
  display:flex;
  align-items:center;
  justify-content:center;
}

.featured-slide::before{
  content:'';
  position:absolute;
  inset:0;
  background:
    radial-gradient(120% 85% at 50% 18%,
      rgba(255,255,255,0.28) 0%,
      color-mix(in srgb, var(--slide-tint) 22%, rgba(255,255,255,0)) 35%,
      rgba(255,255,255,0) 65%),
    radial-gradient(110% 90% at 50% 58%,
      rgba(0,0,0,0.10) 0%,
      rgba(0,0,0,0.45) 72%,
      rgba(0,0,0,0.62) 100%);
  z-index: 0;
}
.featured-slide::after{
  content:'';
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height: 42%;
  background: linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.38) 100%);
  z-index: 1;
  pointer-events: none;
}

.featured-exclusive{ display:none !important; }

.featured-slide:hover .featured-slide-info,
.featured-slide:focus-within .featured-slide-info{
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.featured-thumbs{
  margin-top: 0;
  display:flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  justify-content: center;
  scrollbar-width: none;
  background: rgba(0,0,0,0.12);
  padding: 10px 14px 12px;
  display: none !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.featured-thumbs::-webkit-scrollbar{ display:none; }
.featured-thumb{
  position: relative;
  width: 64px;
  flex: 0 0 auto;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
  padding: 4px;
  opacity: .75;
  text-decoration:none;
  color: inherit;
  transition: opacity .2s ease, border-color .2s ease, transform .2s ease;
}
.genre-landing-page .featured-thumb .preorder-badge{
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 3;
  padding: 0 4px;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 600;
  color: #111;
  background: #f59e0b;
  line-height: 1.2;
  max-width: calc(100% - 8px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.featured-thumb:hover{
  opacity: 1;
  border-color: rgba(255,255,255,.16);
  transform: translateY(-2px);
}
.featured-thumb.active{
  opacity: 1;
  border-color: var(--primary-color);
}
.featured-thumb-art{
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  object-fit: cover;
  background: #0b0f14;
}
.featured-carousel .carousel-prev{ left: 6px; }
.featured-carousel .carousel-next{ right: 6px; }
.featured-carousel .carousel-nav{ top: 50%; }

.section-divider{
  height: 1px;
  background: rgba(148,163,184,.12);
}
.new-charts-wrap{
  padding: 12px 14px 16px;
}
.new-charts-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.new-charts-carousel{
  position: relative;
}

.new-charts-slide{
  position: relative;
  height: 280px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(2,6,23,0.45);
  overflow: hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px 64px;
}

.new-charts-slide-link{
  width: 100%;
  height: 100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 20px;
  text-decoration:none;
  color: inherit;
}

.new-charts-slide-art{
  width: 240px;
  height: 240px;
  border-radius: 12px;
  object-fit: cover;
  background: #0b0f14;
  border: 1px solid rgba(255,255,255,0.08);
  flex: 0 0 auto;
}

.new-charts-slide-info{
  min-width: 0;
  flex: 1;
}

.new-charts-slide-title{
  font-size: 18px;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 6px;
}

.new-charts-slide-artist{
  font-size: 13px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}

.new-charts-slide-meta{
  font-size: 12.5px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.new-charts-thumbs{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px 6px;
  scrollbar-width: none;
}
.new-charts-thumbs::-webkit-scrollbar{ display:none; }

.new-charts-thumb{
  flex: 0 0 120px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  text-decoration:none;
  color: inherit;
  padding: 8px;
  opacity: 0.75;
  transition: opacity .2s ease, border-color .2s ease, transform .2s ease;
}
.new-charts-thumb:hover{
  opacity: 1;
  border-color: rgba(255,255,255,0.16);
}
.new-charts-thumb.active{
  opacity: 1;
  border-color: var(--primary-color);
  transform: translateY(-2px);
}
.new-charts-thumb-art{
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  object-fit: cover;
  background: #0b0f14;
}

.new-charts-slide .carousel-prev{ left: 14px; }
.new-charts-slide .carousel-next{ right: 14px; }

.new-charts-viewport{
  overflow: hidden;
  padding: 14px 0 10px;
}

.new-charts-row{
  display:flex;
  flex-wrap: nowrap;
  gap: 0;
  align-items: stretch;
  transition: transform .35s ease;
  will-change: transform;
}

.carousel-nav{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(2,6,23,0.55);
  color: var(--text-primary);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor: pointer;
  z-index: 6;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.carousel-nav:hover{
  background: rgba(2,6,23,0.72);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-50%) scale(1.03);
}
.carousel-prev{ left: 0; }
.carousel-next{ right: 0; }
.carousel-prev{ left: 6px; }
.carousel-next{ right: 6px; }
.new-track-card{
  flex: 0 0 340px;
  text-decoration:none;
  color: inherit;
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease;
  position: relative;
  min-height: 250px;
}
.new-track-card:hover{
  transform: translateY(-8px);
  border-color: rgba(255,255,255,.2);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.new-track-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:4px;
  background: var(--genre-color, #4ECDC4);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  z-index: 1;
}
.new-track-card:hover::before{
  transform: scaleX(1);
}
.new-track-art{
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #0b0f14;
  display:block;
}
.new-track-info{ padding: 14px 14px 16px; position: relative; z-index: 2; }
.new-track-meta{
  margin-top: 6px;
  font-size: 10.5px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.new-track-meta .sep{
  margin: 0 8px;
  opacity: .6;
}
.new-track-title{
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
  height: 34px;
  overflow: hidden;
}
.new-track-artist{
  margin-top: 5px;
  font-size: 11px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.new-updates-carousel{
  position: relative;
  padding: 6px 0 0;
}
.new-updates-carousel .carousel-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(2,6,23,0.55);
  color: rgba(255,255,255,.92);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor: pointer;
  z-index: 8;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.new-updates-carousel .carousel-nav:hover{
  background: rgba(2,6,23,0.75);
  border-color: rgba(255,255,255,0.24);
  transform: translateY(-50%) scale(1.03);
}
.new-updates-carousel .carousel-prev{ left: 8px; }
.new-updates-carousel .carousel-next{ right: 8px; }
.new-updates-viewport{
  overflow: hidden;
  width: 100%;
}
.new-updates-track{
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.38s ease;
  will-change: transform;
}
.new-updates-page{
  flex-shrink: 0;
  box-sizing: border-box;
  width: 100%;
}
.new-updates-grid{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.new-updates-segments{
  display: flex;
  gap: 4px;
  margin-top: 16px;
  padding: 0 2px;
  align-items: center;
  width: 100%;
}
.new-updates-segment{
  flex: 1;
  height: 7px;
  border-radius: 4px;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(255,255,255,.22);
  transition: background 0.2s ease, transform 0.2s ease;
}
.new-updates-segment:hover{
  background: rgba(255,255,255,.35);
}
.new-updates-segment.active{
  background: rgba(255,255,255,.95);
}
.new-charts-cards{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  padding: 6px 0 0;
}
.new-charts-card{
  flex: none !important;
  min-height: 220px !important;
}
.new-charts-card .new-track-info{
  padding: 14px 14px 16px;
}
@media (max-width: 1200px){
  .new-updates-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 900px){
  .new-updates-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 600px){
  .new-updates-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.top10-list{
  padding: 10px 10px 14px;
  position: relative;
  z-index: 2;
}
.top10-row{
  display:flex;
  align-items:center;
  gap: 6px;
  padding: 8px 6px;
  border-radius: 12px;
  text-decoration:none;
  color: inherit;
  position: relative;
  transition: background .18s ease;
}
.top10-row:hover,
.top10-row:focus-within{
  background: rgba(148,163,184,.10);
}
.top10-hover-left{
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0;
  min-width: 0;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity .18s ease, min-width .2s ease, max-width .2s ease;
}
.top10-row:hover .top10-hover-left,
.top10-row:focus-within .top10-hover-left{
  width: 32px;
  min-width: 32px;
  max-width: 32px;
  opacity: 1;
  pointer-events: auto;
}
.top10-play{
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(231,238,247,.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .12s ease, color .15s ease, opacity .15s ease;
  opacity: .92;
}
.top10-play:hover{
  color: rgba(255,255,255,0.98);
  transform: scale(1.08);
  opacity: 1;
}
.top10-play i{
  font-size: 14px;
  margin-left: 1px;
  text-shadow: 0 6px 14px rgba(0,0,0,0.35);
}
.top10-trail{
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity .18s ease, max-width .22s ease;
}
.top10-row:hover .top10-trail,
.top10-row:focus-within .top10-trail{
  max-width: 140px;
  opacity: 1;
  pointer-events: auto;
}
.top10-cart{
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: #e7eef7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .15s ease;
}
.top10-cart:hover{
  background: rgba(255,255,255,.14);
}
.top10-cart i{
  font-size: 12px;
}
.top10-price-pill{
  flex-shrink: 0;
  height: 30px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,.96);
  background: rgba(255, 58, 115, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
@media (hover: none){
  .top10-hover-left{
    width: 32px;
    min-width: 32px;
    max-width: 32px;
    opacity: 1;
    pointer-events: auto;
  }
  .top10-trail{
    max-width: 140px;
    opacity: 1;
    pointer-events: auto;
  }
}
.top10-rank{
  width: 22px;
  text-align:center;
  font-weight: 900;
  color: #94a3b8;
  font-size: 12px;
  flex-shrink: 0;
}
.top10-thumb-link{
  position: relative;
  flex-shrink: 0;
  display: block;
  line-height: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
}
.genre-landing-page .top10-thumb-link .preorder-badge{
  position: absolute;
  top: 2px;
  left: 2px;
  z-index: 2;
  padding: 0 4px;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 600;
  color: #111;
  background: #f59e0b;
  line-height: 1.2;
}
.top10-thumb{
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  background: #0b0f14;
  border: 0;
  display: block;
}
.top10-text{
  min-width: 0;
  flex: 1;
}
.top10-title-link{
  display: block;
  font-size: 12.5px;
  font-weight: 900;
  color: #e7eef7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
}
.top10-title-link:hover{
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.top10-artist-link{
  display: block;
  margin-top: 3px;
  font-size: 11px;
  color: #8d9eb5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
}
.top10-artist-link:hover{
  color: #b8c7db;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.top10-artist{
  display: block;
  margin-top: 3px;
  font-size: 11px;
  color: #8d9eb5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top10-extra{
  margin-top: 4px;
  font-size: 10.5px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top10-extra .sep{
  margin: 0 8px;
  opacity: .6;
}

@media (max-width: 1200px){
  .genre-hero-title{ font-size: 34px; }
  .featured-cover{ width: 160px; height: 160px; }
  .new-track-card{ min-height: 220px; }
}
@media (max-width: 1024px){
  .genre-shell{ grid-template-columns: 1fr; }
}
@media (max-width: 768px){
  .genre-hero-inner{ flex-direction: column; align-items:flex-start; }
  .genre-hero-actions{ justify-content:flex-start; }
  .genre-hero-title{ font-size: 26px; }
  .featured-card{ padding: 18px 12px; }
  .featured-cover{ width: 100%; height: auto; aspect-ratio: 1/1; }
  .featured-info{ width: 100%; }
  .new-charts-viewport{ padding: 12px 42px 10px; }
  .new-track-card{ flex-basis: 280px; min-height: 210px; }
}

.genre-panel-empty{
  padding: 14px;
  color: rgba(226, 232, 240, 0.88);
  font-size: 13px;
}
.genre-panel-empty--muted{
  color: rgba(226, 232, 240, 0.8);
}

.pagination-controls .page-btn.page-ellipsis {
  pointer-events: none;
  opacity: 0.5;
  padding: 0 6px;
  min-width: auto;
  border: none;
  background: transparent;
  cursor: default;
  box-shadow: none;
}