    .carousel-wrap { position: relative; overflow: hidden; background: #111; cursor: grab; }
    .carousel-wrap.is-hidden { visibility: hidden; }
    .carousel-wrap:active { cursor: grabbing; }
    .carousel-track { display: flex; gap: 10px; transition: transform 0.45s cubic-bezier(.4,0,.2,1); }
    .carousel-track.single { justify-content: center; }
    .slide { flex: 0 0 100%; position: relative; display: block; }
    .slide img.banner { width: 100%; aspect-ratio: 600/270; object-fit: cover; display: block; }
    .slide-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.1) 50%, transparent 100%); pointer-events: none; }
    .slide-text { position: absolute; bottom: 0; left: 0; padding: 14px 16px; pointer-events: none; }
    .slide-genres { display: flex; gap: 6px; margin-bottom: 5px; }
    .slide-genre { font-size: 10px; font-weight: 600; background: rgba(255,255,255,.2); color: #fff; padding: 2px 8px; border-radius: 99px; backdrop-filter: blur(4px); }
    .slide-title { font-size: 19px; font-weight: 700; color: #fff; line-height: 1.2; }
    .dots { display: flex; justify-content: center; gap: 6px; padding: 10px 0 6px; background: #f5f5f7; }
    .dot { height: 6px; border-radius: 99px; background: #d1d5db; transition: all .3s; border: none; cursor: pointer; padding: 0; }
    .dot.active { width: 20px; background: #4f46e5; }
    .dot:not(.active) { width: 6px; }
    @media (min-width: 640px) {
      .slide { flex: 0 0 60%; opacity: .55; }
      .slide.is-active { opacity: 1; }
    }
    .section { padding: 18px 16px 0; }
    .section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
    .section-title { font-size: 14px; font-weight: 600; }
    .see-all { font-size: 12px; color: #4f46e5; }
    .new-list { display: flex; flex-direction: column; gap: 10px; padding-bottom: 32px; }
    .new-card { background: #fff; border-radius: 14px; border: 1px solid #f0f0f0; display: flex; align-items: center; gap: 12px; padding: 12px; }
    .new-card img.icon { width: 60px; height: 60px; border-radius: 12px; flex-shrink: 0; object-fit: cover; }
    .new-info { flex: 1; min-width: 0; }
    .new-badge { display: inline-block; margin-bottom: 3px; }
    .new-name { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .new-desc { font-size: 11px; color: #9ca3af; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .new-play { flex-shrink: 0; width: 34px; height: 34px; background: #4f46e5; border-radius: 99px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 13px; }
