:root {
    --bg-color: #121214;
    --text-primary: #e0e0e0;       /* 亮灰白，用于正文 */
    --text-secondary: #94a3b8;     /* 蓝灰色，用于时间/辅助信息，更护眼 */
    --accent-red: #ff5c5c;
    --accent-blue: #2b90ff;        /* 保持你喜欢的蓝色标题 */
    
    --font-header: "Black Ops One", system-ui;
    --font-body: "Noto Sans SC", sans-serif;
    --font-mono: "Courier New", monospace; /* 新增：用于日期的等宽字体，更有科技感 */
}

/* --- Base Settings --- */
body {
    background-color: var(--bg-color);
    background-image: linear-gradient(#1a1a1a 1px, transparent 1px), linear-gradient(90deg, #1a1a1a 1px, transparent 1px);
    background-size: 40px 40px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 400; 
    line-height: 1.6; /* 关键：增加行高，呼吸感 */
    min-height: 100vh;
    margin: 0;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

/* Font Classes */
body.lang-en { font-family: var(--font-body); }
body.lang-zh { font-family: "Noto Sans SC", sans-serif; }

/* --- Draggable Tag & Buttons (保持不变) --- */
#language-tag {
    position: fixed;
    top: 40px;
    right: 40px;
    width: 140px;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid #444;
    z-index: 1000;
    cursor: move;
    box-shadow: 0 0 10px rgba(0,0,0,0.8);
}
.tag-header { background: #222; padding: 5px 10px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid #444; }
.led-light { width: 6px; height: 6px; background-color: var(--accent-red); border-radius: 50%; box-shadow: 0 0 5px var(--accent-red); }
.tag-title { font-family: var(--font-header); font-size: 10px; color: #888; letter-spacing: 1px; }
.tag-display { text-align: center; padding: 10px 0; font-size: 14px; color: #fff; letter-spacing: 1px; }
.tag-controls { display: flex; border-top: 1px solid #444; }
.lang-btn { flex: 1; background: none; border: none; color: #666; padding: 8px 0; font-size: 10px; cursor: pointer; transition: 0.2s; font-family: var(--font-header); }
.lang-btn:hover { background: rgba(255, 92, 92, 0.2); color: #fff; }
.divider { width: 1px; background: #444; }

/* --- CV Container --- */
.cv-container {
    max-width: 900px; /* 稍微加宽一点 */
    width: 100%;
    background: rgba(18, 18, 20, 0.9); 
    border: 1px solid #333;
    padding: 60px;
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
    position: relative;
}

/* --- Header Area --- */
.back-link {
    position: absolute;
    top: 20px; left: 20px;
    font-family: var(--font-header);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}
.back-link:hover { color: var(--accent-red); }

.main-title {
    font-family: var(--font-header);
    font-size: 48px;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

/* Portrait */
.portrait-wrapper {
    width: 180px;
    height: 180px;
    margin: 0 auto 50px auto;
    position: relative;
}
.artist-portrait {
    width: 100%; height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    border: 2px solid #333; /* 增加边框 */
}

/* --- Sections Style --- */
.cv-section {
    margin-bottom: 50px;
    border-left: 2px solid rgba(43, 144, 255, 0.2); /* 左侧装饰线，增加层级感 */
    padding-left: 20px;
}

h2 {
    font-family: var(--font-header);
    font-size: 24px;
    color: var(--accent-blue);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}
/* 标题前的小方块装饰 */
h2::before {
    content: '';
    display: inline-block;
    width: 8px; height: 8px;
    background: var(--accent-blue);
    margin-right: 10px;
    box-shadow: 0 0 8px var(--accent-blue);
}

/* --- Artist Statement (Readable Style) --- */
.statement p {
    font-size: 16px;
    line-height: 1.8; /* 增加行距 */
    font-weight: 400; 
    color: #ddd;      /*稍微柔和的白色 */
    text-align: justify;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    background: rgba(255,255,255,0.03); /* 极淡的背景衬托文字 */
    border-radius: 4px;
}

/* --- Grid Layout for Lists (The Key to Legibility) --- */
/* 这将创建一个 左右分栏 的布局：左边时间，右边内容 */
.cv-grid-item {
    display: grid;
    grid-template-columns: 140px 1fr; /* 左侧固定宽度，右侧自适应 */
    gap: 20px;
    margin-bottom: 15px;
    align-items: baseline;
}

/* 时间列样式 */
.time-col {
    font-family: var(--font-mono); /* 科技感字体 */
    font-size: 13px;
    color: var(--text-secondary);
    text-align: right;
    font-weight: bold;
    opacity: 0.8;
}

/* 内容列样式 */
.content-col {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 400;
}

.content-col strong {
    font-weight: 600;
    color: #fff;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cv-container { padding: 20px; }
    .cv-grid-item { 
        grid-template-columns: 1fr; /* 手机上变回单列 */
        gap: 5px;
        margin-bottom: 20px;
    }
    .time-col { text-align: left; color: var(--accent-blue); }
}