* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "微软雅黑", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #F0F0F5;
}

.container {
    max-width: calc(100vw - 14vw); /* 总宽度减去左右各7vw的margin */
    margin: 0 7vw; /* 固定左右各7vw的margin */
    padding: 0; /* 移除内部padding，使用margin控制 */
}



/* Section 1: Hero Section */
.hero-section {
    height: 100vh;
    background-color: #F0F0F5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.language-toggle {
    position: absolute;
    top: 5vh;
    right: 5vw;
    color: #585858;
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: bold;
}

.hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3vh;
    margin-top: 13.5vh; /* 从-8vh调整为2vh，向下移动10% */
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2vh;
}

.logo-container {
    position: relative;
    display: inline-block;
}

.logo-main-image {
    width: 21vw;
    /* max-width: 400px;
    min-width: 250px; */
    height: auto;
    object-fit: contain;
    display: block;
}

.logo-text-overlay {
    position: absolute;
    top: 62%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000000;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
    font-size: 3.5vw;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0vw; 
    line-height: 1.2;
    z-index: 2;
    pointer-events: none;
    white-space: nowrap;
}

.green-line {
    width: 8vw;
    height: 0.3vh;
    background-color: #00b894;
    margin-top: 9vh;
    margin-bottom: 1.5vh;
}

.hero-subtitle-image {
    width: 9vw;
    height: auto;
    object-fit: contain;
}

.scroll-indicator {
    position: relative;
    font-size: 2rem;
    color: transparent;
    animation: bounce 2s infinite;
    margin-top: 10.5vh;
    display: inline-block;
    left: -1vw;
}

.scroll-indicator::before {
    content: "∨";
    position: absolute;
    top: 0;
    left: 0;
    color: #c7c7c7;
    -webkit-text-stroke: 2px #c7c7c7;
}

.scroll-indicator::after {
    content: "∨";
    position: absolute;
    top: 0;
    left: 0;
    color: #c7c7c7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}



/* Section 2: About Section */
.about-section {
    padding: 28vh 0;
    background-color: #F0F0F5;
}

.about-content {
    display: flex;
    gap: 3%;
    align-items: center; /* 从flex-start改为center，使标题上下居中 */
}

.section-title {
    font-size: 2.7rem;
    font-weight: bold;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
    color: #00b894;
    margin-bottom: 40px;
    min-width: 28%;
    flex-shrink: 0;
    letter-spacing: 0;
}

/* Unified left alignment for all right-side content */
.about-text,
.profile-right,
.china-edm-right,
.china-edm-vol-right,
.album-right,
.china-edm-live-right,
.contact-right {
    padding-left: 4vw; /* 恢复为0，避免额外的左边距 */
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;

}

.about-text {
    flex: 1;
    text-align: left;
    
}

.about-text p {
    margin-bottom: 4vh;
    color: #585858;
    line-height: 2;
    font-size: 0.95rem;
     font-family: "Noto Sans SC", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
}
/* Section 3: Profile Section */
.profile-section {
    padding: 13vh 0;
    background-color: #F0F0F5;
}

.profile-content {
    display: flex;
    gap: 5vw;
    align-items: flex-start;
}

.profile-left {
    min-width: 28%;
    flex-shrink: 0;
}


.profile-left-content {
    /* Desktop: hide roles and nav in left content */
}

.profile-roles {
    display: none; /* Hide on desktop */
}

.profile-left-content .profile-nav {
    display: none; /* Hide on desktop */
}

.profile-name {
    font-size: 3.5rem;
    font-weight: bold;
    color: #00b894;
   
}

.profile-image-container {
    position: relative;
}

.profile-image {
    width: 21.5vw;
   
    height: auto;
    aspect-ratio: 1/0.99;
    object-fit: cover;
    object-position: top;
    margin-bottom: 4vh;
    border-radius: 22px;
    margin-top: 6.5vh; /* 向下移动2vh */
}

.profile-nav {
    display: flex;
    gap: 10px;
    margin-top: 3.3vh;
    margin-left:1vw;
}

.nav-btn {
    background: none;
    border: none;
    color: #585858;
    cursor: pointer;
    padding: 8px 0;
    font-size: 0.95rem;
    text-decoration: none;
    border-bottom: 2px solid #00b894;
    margin-right: 4.5vw;
    transition: all 0.3s ease;
}

.nav-btn.active {
    color: #585858;
    border-bottom: 2px solid #00b894;
}

.nav-btn:hover {
    color: #00b894;
}

.profile-right {
    flex: 1;
    text-align: left;
    margin-left: 0.5vw;
    width: 68%;
    
}

.profile-info {
    margin-bottom: 30px;
}

.profile-role {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #585858;
    margin-bottom: 5px;
     font-family: "Noto Sans SC", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
}

.profile-title {
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: normal;
    color: #585858;
     font-family: "Noto Sans SC", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
    margin-bottom: 5px;
}

.profile-subtitle {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #585858;
     font-family: "Noto Sans SC", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
    margin-bottom: 20px;
}

.profile-description {
    margin-top: 7vh;
    margin-bottom: 9.5vh;
}

.profile-description p {
    margin-bottom: 4.7vh;
    color: #585858;
    font-size: 0.95rem;
    line-height: 2;
    margin-bottom: 4.2vh;
     font-family: "Noto Sans SC", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
}

.profile-location {
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 2;
     font-family: "Noto Sans SC", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    color: #585858;
}

.profile-details {
    color: #585858;
    font-size: 0.95rem;
    line-height: 2;
     font-family: "Noto Sans SC", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
}

/* Section 4: Releases Section */
.releases-section {
    padding: 13vh 0;
    background-color: #F0F0F5;
}

.section-title.centered {
    text-align: center;
    color: #00b894;
    font-size: 1.8rem;
    font-weight: bold;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
    margin-bottom: 10vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
}

.section-title.centered::before,
.section-title.centered::after {
    content: '';
    flex: 1;
    height: 2px;
    background-color: #00b894;
    max-width: 20.4vw;
}

.releases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5vw 1vh; /* 列间距5vw，行间距2.5vh，减小上下间距 */
    margin-bottom: 5vh;
    margin-left: 6.2vw;
    margin-right: 6.2vw;
}

.release-item {
    text-align: center;
}

.release-image {
    position: relative;
    margin-bottom: 2px;
    cursor: pointer;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.release-image:hover {
    transform: scale(1.02);
}

.release-image img {
    width: 70%;
    object-fit: contain;
    /* background: #f5f5f5; */
}

/* 将play-button移到headphone-icon位置，使用耳机图标 */
.play-button {
    position: absolute;
    bottom: 2.5vh;
    left: 3.5vw;
    width: 28px;
    height: 28px;
    background-color: transparent;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    opacity: 1; /* 始终显示 */
}

.play-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.play-button::before {
    content: '';
    width: 24px;
    height: 24px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"><path d="M12 1c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h1v-8H6c-1.66 0-3 1.34-3 3v1c0-.55.45-1 1-1h1V9c0-3.87 3.13-7 7-7s7 3.13 7 7v6h1c.55 0 1 .45 1 1v-1c0-1.66-1.34-3-3-3h-1v8h1c1.66 0 3-1.34 3-3v-7c0-4.97-4.03-9-9-9z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
}

/* 播放状态时显示暂停图标 */
.play-button.playing::before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"><path d="M6 19h4V5H6v14zm8-14v14h4V5h-4z"/></svg>');
}

/* 删除headphone-icon */

.release-image:hover .play-button {
    opacity: 1;
}

.release-info .artist {
    /* font-weight: 500; */
    color: #585858;
    margin-bottom: 3px;
    font-size: 0.95rem;
    line-height: 1.8;
     font-family: "Noto Sans SC", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
}

.release-info .track {
    color: #585858;
    font-size: 0.95rem;
    line-height: 1.2;
    margin-top: 0;
    white-space: wrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: block;
    margin-bottom: 2vh;
     font-family: "Noto Sans SC", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
}

.more-button {
    text-align: right;
    margin-top: 3.5vh;
    margin-right: 15vh; /* 使用负margin向左移动 */
}

.more-link {
    display: inline-block;
    color: #333;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 300;
    border-bottom: 2px solid #00b894;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.more-link:hover {
    color: #00b894;
    border-bottom-color: #333;
}

/* Section 5: CHINA EDM Section */
.china-edm-section {
    padding-top: 33.5vh;
    padding-bottom: 0;
    background-color: #F0F0F5;
    
    margin-right: 0;
}

.china-edm-content {
    display: flex;
    gap: 4%;
    align-items: flex-start;
    margin-bottom: 80px;
}

.china-edm-left {
    min-width: 30.5%;
    flex-shrink: 0;
    margin-top: 1vh;
}

.china-edm-right {
    flex: 1;
    text-align: left;
    margin-left: 0;
    width: 68%;
}

.china-edm-description {
    margin-bottom: 0;
}

.china-edm-description p {
    color: #585858;
    line-height: 2;
    font-size: 0.95rem;
    margin-bottom: 0;
     font-family: "Noto Sans SC", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
}

/* 隐藏移动端专用容器在桌面版 */
.mobile-album-container {
    display: none;
}

.china-edm-vol-content {
    display: flex;
    margin-top: 19.5vh;
    align-items: center; /* 从flex-start改为center，使标题上下居中 */

}

.china-edm-vol-left {
    min-width: 34.5%;
    flex-shrink: 0;
}

.china-edm-vol-right {
    flex: 1;
    text-align: left;
    margin-left: 0;
    width: 65.5%;
}

.vol-title {
    font-size: 1.8rem;
    font-weight: bold;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
    color: #00b894;
    margin-bottom: 0;
    margin-top: -12vh;
}

.vol-description {
    border-top: none;
    padding-top: 0;
}

.vol-description p {
    color: #585858;
    line-height: 2;
    margin-bottom: 3.5vh;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
     font-family: "Noto Sans SC", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
}

.vol-description p:last-child {
    margin-bottom: 8.5vh;
}

.album-section {
    display: flex;
    gap: 4%;
    align-items: flex-start;
  
}

.album-left {
    min-width: 28%;
    flex-shrink: 0;

}

.album-cover {
    margin-bottom: 3vh;
    max-width: 15vw;
    
}

.album-image {
    margin-top: 3vh;
    width: 20vw;
    
    height: auto;
    aspect-ratio: 1/0.99;
    object-fit: cover;
    margin-bottom: 5vh;
   
}

.album-info p {
    color: #585858;
    font-size: 0.95rem;
    margin-bottom: 8px;
    margin-left: 1vw;
    line-height: 2;
     font-family: "Noto Sans SC", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
}

.album-right {
    flex: 1;
    text-align: left;
    margin-left: 2.1vw;
    width: 66%;
}

.track-list {
    border: none;
    border-radius: 0;
    overflow: visible;
    background: transparent;
}

.track-item {
    display: grid;
    grid-template-columns: 2.1fr 2fr 1fr;
    align-items: center;
    padding: 3.5vh 0 0.4vh 0;
    border-bottom: 1px solid #5e5e5e;
    background: transparent;
    transition: background-color 0.3s ease;
    
}

.track-item:last-child {
    border-bottom: 1px solid #5e5e5e;
}

/* .track-item:hover {
    background-color: #f9f9f9;
} */

.track-number {
    color: #585858;
    font-size: 0.95rem;
    text-align: left;
     font-family: "Noto Sans SC", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
}

.track-artist {
    color: #585858;
    font-size: 0.95rem;
    text-align: flex-start;
     font-family: "Noto Sans SC", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
}

.play-btn {
    background: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
    margin-left: auto;
    font-size: 12px;
}

.play-btn:hover {
    color: #585858;
}

/* Section 6: CHINA EDM LIVE Section */
.china-edm-live-section {

    background-color: #F0F0F5;
    margin-top: 27.5vh;
}

.china-edm-live-content {
    display: flex;
    gap: 4%;
    align-items: flex-start;
    margin-bottom: 80px;
}

.china-edm-live-left {
    min-width: 28%;
    flex-shrink: 0;
}

.china-edm-live-right {
    flex: 1;
    text-align: left;
    margin-left: 0;
    width: 68%;
}

.live-description {
    margin-bottom: 0;
}

.live-description p {
    color: #585858;
    line-height: 2;
    font-size: 0.95rem;
    margin-bottom: 0;
     font-family: "Noto Sans SC", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
}

.contact-section {
    border-top: 2px solid #a0a0a0;
    margin-top: 28.5vh;
    margin-bottom: 16vh;
}

.contact-left {
    display: none;
}

.contact-right {
    text-align: left;
    margin-left: 0; /* 确保左对齐 */
    padding-left: 0; /* 移除左边距 */
}

.contact-info h3 {
    font-size: 0.95rem;
    font-weight: normal;
    color: #585858;
    margin-top: 5vh;
    margin-bottom: 1vh;
    margin-left: 0;
     font-family: "Noto Sans SC", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
}

.contact-item {
    color: #585858;
    margin-bottom: 10px;
    font-size: 0.95rem;
    margin-left: 0;
     font-family: "Noto Sans SC", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
}



@media (min-width: 1800px) and (max-width: 2399px) {
    .container {
        margin: 0 7.5vw; /* 使用相同的margin方式 */
        max-width: none; /* 移除max-width限制 */
    }
    
    body {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 2.7rem; /* 从3rem增加到4.5rem */
    }
    
    .releases-grid {
        gap:  1% 8%;
    }
    
    .release-image img {
        height: 15vw;
        max-height: 250px;
    }
    
    .play-button {
        width: 1.8vw;
        height: 1.8vw;
    
        bottom: 1.5vw;
        left: 1.3vw;
    }
    
    .play-button::before {
        width: 1.5vw;
        height: 1.5vw;
        max-width: 28px;
        max-height: 28px;
    }
    
    /* 删除headphone-icon响应式样式 */
    
    .hero-subtitle-image {
        max-width: 15vw;
    }
    
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .container {
        margin: 0 8vw; /* 使用相同的margin方式 */
        max-width: none; /* 移除max-width限制 */
    }
    
    body {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.7rem; /* 从2.5rem增加到3rem */
    }
    
    .hero-subtitle-image {
        max-width: 12vw;
    }
    

}

@media (max-width: 768px) {
    .about-content,
    .profile-content,
    .china-edm-content,
    .china-edm-vol-content,
    .china-edm-live-content,
    .contact-section,
    .album-section {
        flex-direction: column;
        gap: 40px;
    }
    
    .releases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .play-button {
        width: 38px;
        height: 38px;
        font-size: 1rem;
        bottom: 2vh;
        left: 2vw;
    }
    
    .play-button::before {
        width: 18px;
        height: 18px;
    }
    
    /* 删除headphone-icon响应式样式 */
    
    .profile-left,
    .china-edm-left,
    .china-edm-vol-left,
    .china-edm-live-left,
    .contact-left,
    .album-left {
        min-width: auto;
    }
    
    .profile-image {
        width: 100%;
        max-width: 300px;
    }
    
    .album-image {
        width: 100%;
        max-width: 300px;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    .logo-main-image {
        max-width: 300px;
    }
    
    .logo-text-overlay {
        font-size: 3.5rem;
        letter-spacing: 0.8px;
    }
    
    .hero-subtitle-image {
        max-width: 200px;
    }
    
    .section-title {
        font-size: 2rem; /* 从1.5rem增加到2rem */
        min-width: auto;
    }
    
    .track-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 20px;
    }
    
    .track-number {
        min-width: auto;
    }
}

/* 移动端响应式设计 */
@media screen and (max-width: 768px) {
    /* 基础样式调整 - 统一左右margin */
    .container {
        
        max-width: calc(100vw - 19vw); /* 总宽度减去左右各7vw的margin */
        margin: 0 9.5vw; /* 固定左右各7vw的margin */
    }

    /* 移除所有右侧内容的额外padding */
    .about-text,
    .profile-right,
    .china-edm-right,
    .china-edm-vol-right,
    .album-right,
    .china-edm-live-right,
    .contact-right {
        padding-left: 0; /* 移除左边距 */
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
    }

    /* 统一内容布局 */
    .about-content,
    .profile-content,
    .china-edm-content,
    .china-edm-vol-content,
    .china-edm-live-content,
    .album-section {
        flex-direction: column;
        gap: 20px; /* 减少间距 */
        text-align: center;
    }

    /* 统一文字内容居左 */
    .about-text,
    .profile-right,
    .china-edm-right,
    .china-edm-vol-right,
    .china-edm-live-right {
        width: 100%;
        text-align: left;
    }

    /* Section 1: Hero Section */
.hero-section {
    height: 100vh;
}

.language-toggle {
    top: 11.5vh;
    right: 12vw;
    font-size: 0.9rem;
    font-weight: 600;
}


.logo {
    margin-top: 15.3vh; /* 向下移动20vh */
    gap: 0px;
}

.hero-content {
    gap: 0px;
    margin-top: 0px; 
}
.logo-main-image {
    width: 67vw;
}

.logo-text-overlay {
    font-size: 2.8rem;
    top: 58%;
    transform: translate(-50%, -50%);
}

.green-line {
    width: 25vw;
    height: 2px;
    margin-top: 10vh;
    margin-bottom: 2.5vh;
}

.hero-subtitle-image {
    width: 28vw;
    max-width: 150px;
}

.scroll-indicator {
    margin-top: 22.5vh; /* 调整为5vh以保持合适间距 */
    position: relative;
    font-size: 2rem;
    color: transparent;
    animation: bounce 2s infinite;
    display: inline-block;
    left: -2vw;
    transform: none;
}

/* 所有移动端section样式 */
.about-section,
.profile-section,
.releases-section,
.china-edm-section,
.china-edm-live-section {
    padding: 8vh 0;
}

/* 统一标题样式 */
.section-title,
.vol-title {
    font-size: 1.67rem; /* 移动端标题大小 */
    margin-bottom: 4.8vh;
    /* text-align: center; */
}


/* Releases section 特殊标题样式 */
.section-title.centered {
    font-size: 1rem;
    margin-bottom: 30px;
    text-align: center;
    gap: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title.centered::before,
.section-title.centered::after {
    content: '';
    flex: 1;
    height: 2px;
    background-color: #00b894;
    max-width: none;
    min-width: 80px;
}

/* 其他移动端样式保持不变 */
.about-text p,
.profile-description p,
.profile-location p,
.profile-details p,
.china-edm-description p,
.vol-description p,
.live-description p {
    font-size: 0.76rem;
    line-height: 1.8;
    margin-bottom: 2.5vh;
    text-align: justify;
    margin-right: 0;
     font-family: "Noto Sans SC", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
}

.about-content {
    display: flex;
    gap: 4%;
    align-items: flex-start;
}

/* Profile section特殊样式 */
.profile-content {
    flex-direction: column;
    text-align: flex-start;
}

/* Profile header - 标题和图片的左右布局 */
.profile-left {
    margin-top: 1vh;
    display: flex;
    flex-direction: row;
    gap: 3%;
    align-items: flex-start;
    min-width: 100%;
    margin-bottom: 30px;
}

/* 左侧标题容器 - 显示标题和角色 */
.profile-left-content {
    width: 60%;
    flex-shrink: 0;
    text-align: left;
}

.profile-left-content .section-title {
    margin-bottom: 15px;
    font-size: 1.75rem;
    text-align: left;
}

/* 显示角色信息 */
.profile-roles {
    display: block;
    margin-bottom: 15px;
}

.profile-role {
    font-size: 0.66rem;
    color: #585858;
    margin-bottom: 4px;
    text-align: left;
    line-height: 1.74;
}

/* 将nav按钮移到左侧下方 */
.profile-left-content .profile-nav {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 0;
    margin-bottom: 0;
}

/* 右侧图片容器 */
.profile-image-container {
    margin-top: 1vh;
    width: 37%;
    flex-shrink: 0;
    text-align: center;
}

.profile-image {
    width: 107%;
    aspect-ratio: 1/0.99;
    max-width: none;
    margin: 0 auto;
    display: block;
    border-radius: 8px;
    margin-left: -1vh;
   
}

/* 隐藏图片下的nav按钮 */
.profile-image-container .profile-nav {
    display: none;
}

.profile-nav {
    display: flex;
   
    margin-top: 4.3vh;
    margin-left:0vw;
}


.nav-btn {
    margin-top: 0.3vh;;
    font-size: 0.75rem;
    padding: 6px 12px;
    margin-right: 0;
    padding: 4px 0;
    font-size: 0.7rem;
    border-bottom: 0.5px solid #00b894;
    margin-left: 6.5vw;
  
 
}

.nav-btn.active {
     font-size: 0.75rem;
    padding: 6px 12px;
    margin-right: 0;
    padding: 4px 0;
    font-size: 0.7rem;
    border-bottom: 0.5px solid #00b894;
    margin-left: 0;
}

/* 隐藏右侧原有的profile-info */
.profile-right .profile-info {
    display: none;
}

/* Profile右侧内容移到下面 */
.profile-right {
    width: 100%;
    text-align: left;
    margin-top: 0;
}
.profile-description {
    margin-top: -0.5vh;
    margin-bottom: 6.2vh;
   
}

.profile-description p {
    font-size: 0.76rem;
    line-height: 1.9;
    margin-bottom: 2.5vh;
    margin-right: 0;
     font-family: "Noto Sans SC", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
}
/* 添加移动端字体大小覆盖 */
.profile-location {
    font-size: 0.76rem;
    line-height: 1.9;
  
    text-align: left;
    margin-right: 0;
}

.profile-details {
    font-size: 0.76rem;
    line-height: 1.9;
    margin-bottom: 0;
    margin-right: 0;
   
}
.releases-section {
    padding: 1.5vh 0;
    background-color: #F0F0F5;
}

.section-title.centered {
    margin-bottom: 6vh;
}

/* Releases section */
.releases-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0; /* 减少间距 */
    margin-bottom: 1vh;
    margin-left: -10vw; /* 移除左边距 */
    margin-right: -10vw; /* 秼除右边距 */

}

.release-image img {
    height: 30vw;
    width: 100%;
    margin-top: 0;
    
}

.play-button {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
    bottom: 2vh;    
    left: 12vw;
}

.release-info {
    margin-top: 0;
    text-align: center;
    margin-bottom: 0;
}

.release-info .artist {
    font-size: 0.5rem;
    line-height: 1.4;
    margin-bottom: 0.4vh;
     font-family: "Noto Sans SC", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
}

.release-info .track {
    font-size: 0.5rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 1.2vh;
     font-family: "Noto Sans SC", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
}

.more-button {
    text-align: right;
    margin-top: 8vh;
    margin-right: 2.5vh; /* 使用负margin向左移动 */
}

.more-link {
    font-size: 1rem;
    font-weight: 300;
}
/* Album section */
.album-left {
    min-width: 100%;
    text-align: center;
}

.album-image {
    width: 60vw;
    max-width: 250px;
    margin: 0 auto;
    display: block;
}

.album-info {
    margin-top: 20px;
    text-align: center;
}



.track-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #5e5e5e;
    gap: 8px;
    position: relative;
    padding-right: 50px;
}

.track-number {
    font-size: 0.9rem;
    font-weight: 500;
     font-family: "Noto Sans SC", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
}

.track-artist {
    font-size: 0.8rem;
    color: #585858;
     font-family: "Noto Sans SC", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
}

.play-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 28px;
    min-width: 35px;
    font-size: 0.9rem;
}

/* Contact section */
.contact-section {
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.contact-info h3 {
   font-size: 0.85rem;
    margin-bottom: 12px;
    text-align: left;
     font-family: "Noto Sans SC", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
}

.contact-item {
    font-size: 0.85rem;
    margin-bottom: 12px;
    text-align: left;
     font-family: "Noto Sans SC", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
}

/* CHINA EDM section 移动端特殊布局 */
.china-edm-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.china-edm-left {
    min-width: 100%;
    text-align: left;
}

.china-edm-left .section-title {
    font-size: 2rem;
    margin-bottom: 0;
    text-align: left;
}

.china-edm-right {
    width: 100%;
    text-align: left;
    margin-bottom: 30px;
}

/* 添加移动端专用的专辑信息容器 */
.mobile-album-container {
    display: flex;
    flex-direction: row;
    gap: 4%;
    align-items: flex-start;
    margin-bottom: 8vh;
}

/* 左侧：标题和发行信息 */
.mobile-album-left {
    width: 50%;
    flex-shrink: 0;
    text-align: left;
}

.mobile-vol-title {
    font-size: 1rem;
    font-weight: bold;
    color: #00b894;
    margin-bottom: 30px;
    text-align: left;
}

.mobile-album-info {
    text-align: left;
}

.mobile-album-info p {
    font-size: 0.8rem;
    color: #585858;
    margin-bottom: 8px;
    line-height: 1.4;
     font-family: "Noto Sans SC", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
}

/* 右侧：专辑封面 */
.mobile-album-right {
    width: 45%;
    flex-shrink: 0;
    text-align: center;
}

.mobile-album-image {
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    margin: 0 auto;
    display: block;
}

/* 隐藏原有的china-edm-vol-content和album-section */
.china-edm-vol-content {
    flex-direction: column;
    gap: 0;
    text-align: center;
}

.china-edm-vol-left {
    display: none; /* 隐藏原有的标题 */
}

.china-edm-vol-right {
    width: 100%;
    text-align: left;
}

/* 只隐藏album-left部分，保留track-list */
.album-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
    margin-top: 0;
}

.album-left {
    display: none; /* 隐藏左侧的专辑封面和信息 */
}

.album-right {
    width: 100%;
    text-align: left;
    margin-left: 0;
}

.album-left {
    display: none; /* 隐藏左侧的专辑封面和信息 */
}

.album-right {
    width: 100%;
    text-align: left;
    margin-left: 0;
}



.album-left {
    display: none; /* 隐藏左侧的专辑封面和信息 */
}

.album-right {
    width: 100%;
    text-align: left;
    margin-left: 0;
}
}
