* {
    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: normal;
}

.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: 900; /* 加粗 */
    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;
}

/* Replace track list play button icons with image */
/* .play-btn svg {
    display: none; 

.play-btn::before {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url('./images/icons8-play-50.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
} */

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

    background-color: #F0F0F5;
    margin-top: 27.5vh;
}
/* 确保CHINA EDM LIVE标题与Vol.1标题大小一致 */
.china-edm-live-left .section-title {
    font-size: 1.8rem !important;
    font-weight: bold;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
    color: #00b894;
    margin-bottom: 0;
}

.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: 3%;
    width: 68%;
}

.live-description ul{
    list-style-type: square;     /* 保留方点 */
    list-style-position: inside; /* 方点不外凸，和段落左边齐 */
    margin: 0;                   /* 清掉默认外边距 */
    padding: 0;                  /* 清掉默认内边距 */
}

.live-description li {
    font-size: 0.9rem;
      line-height: 2;
    color: #585858;
    margin-left: 1vw;
    font-family: "Noto Sans SC", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
}

.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;
}

/* ICP Footer Styles */
.icp-footer {
    text-align: center;
    margin-bottom: 4vh;
    padding-top: 2vh;
   
}

.icp-footer p {
    font-size: 0.8rem;
    font-family: "Noto Sans SC", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
    margin: 0;
    line-height: 1.5;
}

/* 移动端响应式设计 */
@media screen and (max-width: 768px) {
    /* 基础样式调整 - 统一左右margin */
    .container {
        
        max-width: calc(100vw - 18vw); /* 总宽度减去左右各7vw的margin */
        margin: 0 9vw; /* 固定左右各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: 4vh;
    right: 12vw;
    font-size: 0.8rem;
    font-weight: 600;
     font-family: "Noto Sans SC", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
}


.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.6rem;
    top: 58%;
    transform: translate(-50%, -50%);
    /* 使用Inter作为主要字体，更饱满的显示效果 */
    font-family: 'Inter', 'Noto Sans SC', 'Source Han Sans SC', Arial, sans-serif !important;
    font-weight: 700 !important;
    /* 添加字母间距增加饱满感 */
    letter-spacing: 0.02em !important;
    /* 使用字体拉伸让文字更饱满 */
    font-stretch: expanded;
    text-shadow: 0.1px 0 0 currentColor, -0.1px 0 0 currentColor !important;
}

.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,
.mobile-vol-title {
    font-size: 1.4rem !important; 
    margin-bottom: 5.5vh;
    /* 使用Inter作为主要字体 */
    font-family: 'Inter', 'Noto Sans SC', 'Source Han Sans SC', sans-serif !important;
    font-weight: 700 !important;
    flex-shrink: 0;
    /* 增加字母间距让字体看起来更饱满 */
    letter-spacing: 0.01em !important;
    -webkit-font-smoothing: antialiased; 
    text-rendering: optimizeLegibility;
    /* 使用更轻微的阴影效果 */
    text-shadow: 0.1px 0 0 currentColor, -0.1px 0 0 currentColor !important;
}


/* Releases section 特殊标题样式 */
.section-title.centered {
    font-size: 1rem !important;
    margin-bottom: 30px;
    text-align: center;
    gap: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', 'Noto Sans SC', 'Source Han Sans SC', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 0.01em !important;
    text-shadow: 0.1px 0 0 currentColor, -0.1px 0 0 currentColor !important;
}

/* 其他移动端样式保持不变 */
.about-text p,
.profile-description p,
.profile-location p,
.profile-details p,
.china-edm-description p,
.vol-description p,
.live-description p {
     color: #383838;
    font-size: 0.72rem;
    line-height: 1.8;
    margin-bottom: 2.3vh;
    text-align: justify;
    margin-right: 0;
     font-family: "Noto Sans SC", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
}
    .live-description li {
        color: #383838;
        font-size: 0.67rem;
        line-height: 1.2;
        margin-bottom: 2.3vh;
        text-align: start;
        margin-right: 0;
        font-family: "Noto Sans SC", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
        font-weight: 300;
    }
.about-section {
    padding: 16vh 0;
}
.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.5rem !important; /* 改为1.5rem */
    text-align: left;
    font-family: 'Inter', 'Noto Sans SC', 'Source Han Sans SC', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 0.01em !important;
    text-shadow: 0.1px 0 0 currentColor, -0.1px 0 0 currentColor !important;
}

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

.profile-role {
    font-size: 0.72rem;
    color: #383838;
    margin-bottom: 18px;
    text-align: left;
    line-height: 1.2;
}

/* 将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.72rem;
    padding: 6px 12px;
    margin-right: 0;
    padding: 4px 0;
    border-bottom: 0.5px solid #00b894;
    margin-left: 6.5vw;
    font-family: "Noto Sans SC", "PingFang SC", "Helvetica Neue", Arial, sans-serif;

}

.nav-btn.active {

    padding: 6px 12px;
    margin-right: 0;
    padding: 4px 0;
    font-size: 0.72rem;
    border-bottom: 0.5px solid #00b894;
    margin-left: 0;
     font-family: "Noto Sans SC", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
}

/* 隐藏右侧原有的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.7vh;
   
}

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

.profile-details {
    font-size: 0.72rem;
    line-height: 1.9;
    margin-bottom: 0;
    margin-right: 0;
      font-family: "Noto Sans SC", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
   
}
.releases-section {
    padding: 5.5vh 0;
    background-color: #F0F0F5;
}

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

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

}

.release-image img {
    height: 27.5vw;
    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 {
    color: #383838;
    font-size: 0.55rem;
    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 {
    color: #383838;
    font-size: 0.55rem;
    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: 4.5vh;
    margin-right: 2.5vh; /* 使用负margin向左移动 */
    font-family: "Noto Sans SC", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
}

.more-link {
    font-size: 0.7rem;
    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;
    color: #383838;
}

.track-artist {
    font-size: 0.8rem;
    color: #383838;
     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;
}


.china-edm-section {
    padding-top: 21vh;
    padding-bottom: 0;
    background-color: #F0F0F5;
    
    margin-right: 0;
}

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

.contact-info h3 {
   font-size: 1rem;
    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: 1rem;
    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: 1vh;
    text-align: center;
    margin-bottom: 9vh;
}

.china-edm-left {
    min-width: 100%;
    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;
    margin-right: -4vw; /* 向左移动一点以对齐 */
}

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

.mobile-vol-title {
    font-size: 1.2rem !important; /* 从0.9rem改为1.2rem */
    font-family: 'Inter', 'Noto Sans SC', 'Source Han Sans SC', sans-serif !important;
    font-weight: 700 !important;
    color: #00b894;
    margin-bottom: 30px;
    text-align: left;
    letter-spacing: 0.01em !important;
    text-shadow: 0.1px 0 0 currentColor, -0.1px 0 0 currentColor !important;
}

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

.mobile-album-info p {
    font-size: 0.72rem;
    color: #383838;
    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: 40%;
    flex-shrink: 0;
    text-align: center;
    margin-top: 1vh;
}

.mobile-album-image {
    width: 70%; /* 从70%进一步缩小到35% */

    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    margin: 0 auto; /* 居中显示 */
}

.china-edm-live-left .section-title {
    font-size: 1.1rem !important;
    font-family: 'Inter', 'Noto Sans SC', 'Source Han Sans SC', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 0.01em !important;
    text-shadow: 0.1px 0 0 currentColor, -0.1px 0 0 currentColor !important;
    margin-bottom: 3vh;
    }

/* 隐藏原有的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;
}
.china-edm-vol-content {
    margin-top: 11vh;
}
.vol-description p { 
    margin-bottom: 3.7vh;
}
.vol-description p:last-child {
    margin-bottom: 7vh;
}
.track-number, .track-artist {
    font-size: 0.72rem;
}
.china-edm-live-section {

    margin-top: 10vh;
}

.china-edm-live-content {

    gap: 0;
    align-items: flex-start;
    margin-bottom: 10vh;
}

.contact-section {
    border-top: 1px solid #a0a0a0;
    margin-top: 13vh;
    margin-bottom: 1vh;
}

.contact-info h3 {
    font-size: 0.72rem;
   
    margin-top: 4vh;
    margin-bottom: 1vh;
    margin-left: 0;
      color: #383838;
}

.contact-item {
  
   font-size: 0.72rem;
     color: #383838;
}

/* Mobile ICP Footer */
.icp-footer {
    margin-top: 8vh;
    margin-bottom: 2vh;
   
    text-align: center;
}

.icp-footer p {
    font-size: 0.75rem;
    
    line-height: 1.4;
}
}
/* iPad版本响应式设计 */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    /* 基础样式调整 */
    .container {
        max-width: calc(100vw - 16vw);
        margin: 0 8vw;
    }

    /* 单独覆盖桌面版的section-title样式 */
    .section-title {
        font-size: 2rem !important; /* 改为1.5rem */
        margin-bottom: 4vh;
        font-family: 'Inter', 'Noto Sans SC', 'Source Han Sans SC', sans-serif !important;
        font-weight: 700 !important;
        letter-spacing: 0.01em !important;
        text-shadow: 0.1px 0 0 currentColor, -0.1px 0 0 currentColor !important;
        text-align: left !important; /* 强制左对齐 */
        min-width: auto;
        flex-shrink: 1;
        display: block !important; /* 确保不是flex布局 */
        justify-content: flex-start !important;
        align-items: flex-start !important;
        margin-left: 0 !important;
        margin-right: auto !important;
    }

    /* Releases section */
    .section-title.centered {
        font-size: 1.2rem !important;
        margin-bottom: 6vh;
        gap: 50px;
        text-align: center;
        position: relative !important; /* 确保保留定位 */
        display: flex !important; /* 确保保留flex布局 */
        align-items: center !important; /* 确保垂直居中 */
        justify-content: center !important; /* 确保水平居中 */
    }

    /* 确保iPad版本也有两边横线效果 */
    .section-title.centered::before,
    .section-title.centered::after {
        content: '' !important;
        flex: 1 !important;
        height: 2px !important;
        background-color: #00b894 !important;
        max-width: 15vw !important; /* 调整iPad版本的横线长度 */
    }

    /* 修复专辑封面大小 - 进一步缩小 */
    .mobile-album-image {
        width: 70%; /* 从70%进一步缩小到35% */
        max-width: 240px; 
        height: auto;
        aspect-ratio: 1/1;
        object-fit: cover;
        display: block;
        margin: 0 auto; /* 居中显示 */
    }

    /* 调整专辑信息容器比例 */
    .mobile-album-left {
        width: 60%; /* 从50%增加到60% */
        text-align: left;
    }

    .mobile-album-right {
        width: 35%; /* 从45%减少到35% */
    }

    /* 移除所有右侧内容的额外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: 30px;
        text-align: left !important; /* 强制左对齐 */
        align-items: flex-start !important; /* 确保子元素左对齐 */
    }

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

    .language-toggle {
        top: 5vh;
        right: 8vw;
        font-size: 1.1rem;
        font-weight: normal;
    }

    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3vh;
        margin-top: 13.5vh;
    }

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

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

    .logo-main-image {
        width: 28vw;
        height: auto;
        object-fit: contain;
        display: block;
    }

    .logo-text-overlay {
        position: absolute;
        top: 62%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #000000;
        font-family: 'Inter', 'Noto Sans SC', 'Source Han Sans SC', Arial, sans-serif !important;
        font-size: 4.2vw;
        font-weight: 700 !important;
        text-align: center;
        letter-spacing: 0.02em !important;
        line-height: 1.2;
        z-index: 2;
        pointer-events: none;
        white-space: nowrap;
        text-shadow: 0.1px 0 0 currentColor, -0.1px 0 0 currentColor !important;
    }

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

    .hero-subtitle-image {
        width: 12vw;
        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;
    }

    /* 所有section样式 */
    .about-section,
    .profile-section,
    .releases-section,
    .china-edm-section,
    .china-edm-live-section {
        padding: 10vh 0;
        text-align: left;
    }

    /* 其他标题样式 */
    .vol-title,
    .mobile-vol-title {
        font-size: 2rem !important; /* 改为1.5rem */
        margin-bottom: 4vh;
        font-family: 'Inter', 'Noto Sans SC', 'Source Han Sans SC', sans-serif !important;
        font-weight: 700 !important;
        letter-spacing: 0.01em !important;
        text-shadow: 0.1px 0 0 currentColor, -0.1px 0 0 currentColor !important;
        text-align: left;
        min-width: auto;
        flex-shrink: 1;
        color: #00b894;
    }

    /* 统一文字内容居左并移除右边空白 */
    .about-text,
    .profile-right,
    .china-edm-right,
    .china-edm-vol-right,
    .china-edm-live-right {
        width: 100%;
        text-align: left;
        max-width: 100% !important; /* 确保不超出容器宽度 */
        margin-right: 0 !important;
        padding-right: 0 !important;
    }

    /* 确保所有P段落占满可用宽度 */
    .about-text p,
    .profile-description p,
    .profile-location,
    .profile-details,
    .china-edm-description p,
    .vol-description p,
    .live-description p,
    .mobile-album-info p {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 3vh;
        color: #585858;
        text-align: left !important;
        margin-left: 0;
        padding-left: 0;
        margin-right: 0 !important; /* 移除右边距 */
        padding-right: 0 !important; /* 移除右边内边距 */
        width: 100% !important; /* 确保占满可用宽度 */
        box-sizing: border-box !important;
    }

    /* 特别处理段落容器 */
    .vol-description,
    .china-edm-description,
    .live-description,
    .profile-description {
        width: 100% !important;
        max-width: 100% !important;
        margin-right: 0 !important;
        padding-right: 0 !important;
    }

    /* Profile section */
    .profile-left {
        display: flex;
        flex-direction: row;
        gap: 4%;
        align-items: flex-start;
        min-width: 100%;
        margin-bottom: 40px;
    }

    .profile-left-content {
        width: 60%;
        text-align: left;
    }

    .profile-left-content .section-title {
        margin-bottom: 20px;
        font-size: 2rem !important; /* 改为2rem */
        text-align: left;
    }

    .profile-roles {
        display: block;
        margin-bottom: 20px;
    }

    .profile-role {
        font-size: 1rem;
        color: #585858;
        margin-bottom: 6px;
        line-height: 1.6;
        text-align: left;
    }

    .profile-left-content .profile-nav {
        display: flex;
        justify-content: flex-start;
        gap: 20px;
        margin-top: 0;
    }

    .profile-image-container {
        width: 36%;
        text-align: center;
    }

    .profile-image {
        width: 100%;
        border-radius: 12px;
        margin: 0;
    }

    .profile-image-container .profile-nav {
        display: none;
    }

    .nav-btn {
        font-size: 1rem;
        padding: 6px 0;
        margin-left: 0;
        margin-right: 5vw;
    }

    .profile-right .profile-info {
        display: none;
    }

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

    /* Releases section */
    .section-title.centered {
        font-size: 1.2rem !important; /* 从0.9rem改为1.2rem */
        margin-bottom: 6vh;
        gap: 50px;
        text-align: center;
    }

    .releases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2vw 3vh;
        margin-bottom: 3vh;
        margin-left: -4vw;
        margin-right: -4vw;
    }

    .release-image img {
        height: 35vw;
        width: 100%;
    }

    .play-button {
        width: 38px;
        height: 38px;
        bottom: 2.5vh;
        left: 8vw;
    }

    .release-info .artist,
    .release_info .track {
        font-size: 1rem; /* 从0.7rem改为1rem */
        color: #585858;
        text-align: center;
    }

    .more-button {
        margin-top: 5vh;
        margin-right: 4vh;
    }

    .more-link {
        font-size: 1rem;
    }

    /* CHINA EDM section */
    .china-edm-section {
        padding-top: 18vh;
    }

    .mobile-album-container {
        display: flex;
        flex-direction: row;
        gap: 5%;
        margin-bottom: 6vh;
        margin-right: -2vw;
    }

    .mobile-album-left {
        width: 50%;
        text-align: left;
    }

    .mobile-vol-title {
        font-size: 1.2rem !important; /* 从0.9rem改为1.2rem */
        margin-bottom: 25px;
        text-align: left;
    }

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

    .mobile-album-info p {
        font-size: 1rem;
        margin-bottom: 8px;
        text-align: left !important;
    }

    .mobile-album-right {
        width: 45%;
    }

    .china-edm-vol-left {
        display: none;
    }

    .album-section {
        flex-direction: column;
        margin-top: 0;
    }

    .album-left {
        display: none;
    }

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

    /* Track list */
    .track-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 0;
        gap: 10px;
        position: relative;
        padding-right: 60px;
    }

    .track-number,
    .track-artist {
        font-size: 1rem;
        color: #585858;
        text-align: left;
    }

    .play-btn {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 38px;
        height: 32px;
    }

    /* Contact section */
    .contact-section {
        margin-top: 15vh;
        margin-bottom: 6vh;
    }

    .contact-info h3 {
        font-size: 1rem;
        margin-top: 4vh;
        text-align: left;
    }

    .contact-item {
        font-size: 1rem;
        text-align: left;
    }

    /* ICP Footer */
    .icp-footer {
        margin-top: 6vh;
        margin-bottom: 3vh;
    }

    .icp-footer p {
        font-size: 1rem;
    }
     .china-edm-live-left .section-title {
        font-size: 2rem !important;
        font-family: 'Inter', 'Noto Sans SC', 'Source Han Sans SC', sans-serif !important;
        font-weight: 700 !important;
        letter-spacing: 0.01em !important;
        text-shadow: 0.1px 0 0 currentColor, -0.1px 0 0 currentColor !important;
    }
}
@media screen and (max-width: 390px) {
    .mobile-vol-title {
        font-size: 1.1rem !important;
    }
}
