* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-drag: none;
    user-select: none;
}
body {
    font-family: 'Noto Sans SC', sans-serif;
    background: #121212;
    color: #fff;
    overflow-x: hidden;
}
img {
    -webkit-user-drag: none;
    pointer-events: auto;
    user-select: none;
}
.hero {
    width: 100vw;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7)), url('https://bu.dusays.com/2026/04/06/69d3bce1eca84.webp') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 80px;
    text-align: center;
    transition: background-image 1.2s ease;
}
.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 15px;
    letter-spacing: 3px;
}
.hero p {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: #ccc;
}
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 24px;
}
.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 3px;
    background: #ff3c57;
    border-radius: 3px;
}
.slider-container {
    width: 100%;
    overflow-x: auto;
    padding: 10px 0 40px;
    cursor: grab;
    padding-left: 16px;
    padding-right: 16px;
}
.slider-container:active {
    cursor: grabbing;
}
.slider-container::-webkit-scrollbar {
    height: 10px;
}
.slider-container::-webkit-scrollbar-thumb {
    background: #ff3c57;
    border-radius: 6px;
}
.slider-container::-webkit-scrollbar-track {
    background: #1e1e1e;
    border-radius: 6px;
}
.slider-wrapper {
    display: flex;
    gap: 28px;
    min-width: max-content;
}
.music-card {
    width: 280px;
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    cursor: pointer;
}
.music-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.4);
}
.music-cover {
    width: 100%;
    height: 280px;
    object-fit: cover;
}
.music-info {
    padding: 24px;
}
.music-title {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 500;
}
.music-artist {
    color: #aaa;
    font-size: 1rem;
}
.mv-card {
    width: 320px;
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    cursor: pointer;
}
.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.4);
}
.video-container {
    position: relative;
    width: 100%;
    height: 190px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}
.mv-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.mv-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background: rgba(255, 60, 87, 0.9);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 26px;
    transition: 0.2s;
}
.mv-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #ff3c57;
}
.mv-info {
    padding: 22px 24px;
}
.mv-info h3 {
    font-size: 1.15rem;
    line-height: 1.4;
    font-weight: 500;
}
#musicModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.music-modal-box {
    position: relative;
    width: 90%;
    max-width: 950px;
    height: 75vh;
    background: #000;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.7);
}
.bg-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.lyrics-blur {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
    padding: 50px 35px;
    overflow-y: auto !important;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
    align-items: center;
    scrollbar-width: none;
}
.lyrics-blur::-webkit-scrollbar {
    display: none;
}
.aplayer-container {
    position: absolute;
    bottom: 50px;
    left: 5%;
    width: 40%;
    z-index: 10;
}
.close-player {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    background: #ff3c57;
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
}
.lrc-line {
    padding: 14px 0;
    font-size: 1rem;
    color: rgba(255,255,255,0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    width: 100%;
    flex-shrink: 0;
}
.lrc-line.active {
    color: #ff3c57;
    font-size: 1.4rem;
    font-weight: bold;
    filter: blur(0);
    transform: scale(1.03);
}
#mvModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.dplayer-container {
    width: 92%;
    max-width: 1100px;
}
.close-mv {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    background: #ff3c57;
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 999;
}
.dplayer-menu.dplayer-menu-show {
    display: none !important;
}
