/* ====== 基础样式 ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Noto Sans JP", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.7;
    overflow-x: hidden;
}

/* ====== 回退按钮 ====== */
.back-button {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 1000;
}

.back-button a {
    color: #c9a96e;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 4px;
}

.back-button a:hover {
    color: #fff;
    background: rgba(201, 169, 110, 0.1);
}

/* ====== 主容器 ====== */
#profile {
    min-height: 100vh;
    background: 
        linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)),
        url('../../Background/Cloud.jpg') center/cover fixed;
    position: relative;
}

.full-profile-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px 40px;
}

.profile-layout {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 等比例分割 */
    gap: 40px;
    align-items: start;
}

/* ====== 左侧完整简介 ====== */
.full-profile-content {
    background: rgba(20, 20, 20, 0.8);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

/* 艺术家照片 - 左侧简介顶部 */
.artist-photo-main {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #c9a96e;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    margin-bottom: 30px;
    display: block;
}

.artist-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.artist-photo-main {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #c9a96e;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    flex-shrink: 0; /* 防止图片被压缩 */
}

.artist-header h2 {
    color: #f8f5ef;
    font-size: 2.5rem;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #fff9fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.full-profile-content h3 {
    color: #c9a96e;
    font-size: 1.6rem;
    margin: 30px 0 20px 0;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
}

.full-profile-content h3:first-child {
    margin-top: 0;
}

.full-profile-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #c9a96e, transparent);
}

.full-profile-content hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, #c9a96e, transparent);
    margin: 15px 0;
}

.full-profile-content p {
    margin-bottom: 25px;
    color: #e0e0e0;
    font-size: 1.05rem;
    text-align: justify;
}

.full-profile-content b {
    color: #c9a96e;
    font-weight: 600;
}

.full-profile-content a {
    color: #c5a4ff;
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.full-profile-content a:hover {
    color: #fff;
    border-bottom-color: #c5a4ff;
}

/* 特殊样式 */
.full-profile-content p[style*="color:red"] b,
.full-profile-content p[style*="color:rgb(255, 255, 255)"] b {
    color: inherit;
    margin: 0 8px;
}

.full-profile-content p[style*="transform: translateX"] {
    color: #c5a4ff;
    font-style: italic;
    text-align: right;
    margin: -10px 0 30px 0;
    font-size: 1rem;
}

/* ====== 右侧流媒体简介 ====== */
.media-profile-sidebar {
    background: rgba(25, 25, 25, 0.9);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 100px;
}

.media-profile-header {
    background: linear-gradient(135deg, #8c2f4d 0%, #1a1a1a 100%);
    padding: 30px;
    text-align: center;
    border-bottom: 2px solid #c9a96e;
}

.media-profile-header h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.media-profile-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.media-profile-content {
    padding: 30px;
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.8;
}

.media-profile-section {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.media-profile-section:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.media-profile-section h4 {
    color: #c9a96e;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

/* 艺术家照片 - 右侧流媒体简介 */
.artist-photo-streaming {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    margin: 0 auto 15px;
    display: block;
}

.media-profile-header h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.media-profile-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.media-profile-content {
    padding: 30px;
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.8;
    flex: 1;
}

.media-profile-section {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.media-profile-section:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.media-profile-section h4 {
    color: #c9a96e;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

/* 流媒体平台链接 */
.streaming-platforms {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.platform-item:hover {
    background: rgba(201, 169, 110, 0.1);
    transform: translateY(-2px);
}

.platform-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0.9);
}

.platform-name {
    color: #e0e0e0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ====== 底部信息面板 ====== */
.bottom-info-panel {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    background: rgba(20, 20, 20, 0.8);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* 艺术家照片 - 底部信息面板 */
.artist-photo-bottom {
    position: absolute;
    top: -25px;
    right: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #c9a96e;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.info-panel-section h4 {
    color: #c9a96e;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
    border-left: 3px solid #c9a96e;
    padding-left: 12px;
}

.info-panel-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-panel-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.info-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
    flex-shrink: 0;
    margin-right: 20px;
}

.info-value {
    color: #fff;
    font-size: 0.95rem;
    text-align: right;
    flex: 1;
}

/* ====== 页脚 ====== */
.profile-footer {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ====== 响应式设计 ====== */
@media (max-width: 1024px) {
    .profile-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .full-profile-content,
    .bottom-info-panel {
        padding: 30px;
    }
    
    .artist-photo-bottom {
        position: static;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .full-profile-container {
        padding: 70px 20px 30px;
    }
    
    .back-button {
        top: 20px;
        left: 20px;
    }
    
    .bottom-info-panel {
        grid-template-columns: 1fr;
        padding: 25px;
    }
    
    .streaming-platforms {
        grid-template-columns: 1fr;
    }
    
    .info-panel-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .info-value {
        text-align: left;
        margin-top: 5px;
    }
    
    .artist-photo-main {
        width: 100px;
        height: 100px;
        margin: 0 auto 25px;
    }
}

@media (max-width: 480px) {
    .full-profile-content,
    .media-profile-sidebar,
    .bottom-info-panel {
        padding: 20px;
    }
    
    .full-profile-content h3 {
        font-size: 1.4rem;
    }
    
    .media-profile-header {
        padding: 20px;
    }
    
    .artist-photo-main {
        width: 80px;
        height: 80px;
    }
    
    .artist-photo-streaming {
        width: 60px;
        height: 60px;
    }
}