/* 白色主题配色变量 */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #f1f3f4;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #6a6a6a;
    --accent-1: #2563eb;
    --accent-2: #3b82f6;
    --accent-3: #1d4ed8;
    --accent-4: #1e40af;
    --border-light: #e5e7eb;
    --border-medium: #d1d5db;
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.1);
    --shadow-strong: rgba(0, 0, 0, 0.15);
    --font-mono: 'JetBrains Mono', monospace;
    --font-sans: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

/* 自定义滚动条 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-medium);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* 自定义光标 */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-1);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
}

.cursor-follower {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--accent-1);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s ease;
}

/* 导航点 */
.nav-dots {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: var(--accent-1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.dot.active::after,
.dot:hover::after {
    width: 8px;
    height: 8px;
}

/* 通用样式 */
.section-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 50px;
    min-height: 100vh;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.label-text {
    text-transform: uppercase;
    letter-spacing: 2px;
}

.label-line {
    width: 50px;
    height: 1px;
    background: var(--border-medium);
    margin-top: 10px;
}

/* 主页部分 */
.hero {
    background: var(--bg-primary);
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    pointer-events: none;
    overflow: hidden;
}

.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--border-light) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-light) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: grid-move 25s linear infinite;
    opacity: 0.6;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* 几何形状变换效果 */
.geometric-shapes {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    animation: rotate-slow 30s linear infinite;
}

.geo-shape {
    position: absolute;
    border: 1px solid rgba(37, 99, 235, 0.2);
    animation: shape-morph 8s ease-in-out infinite;
}

.geo-shape:nth-child(1) {
    top: 25%;
    left: 25%;
    width: 100px;
    height: 100px;
    border-radius: 20px;
    animation-delay: 0s;
}

.geo-shape:nth-child(2) {
    top: 25%;
    right: 25%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    animation-delay: 2s;
}

.geo-shape:nth-child(3) {
    bottom: 25%;
    left: 25%;
    width: 60px;
    height: 60px;
    transform: rotate(45deg);
    animation-delay: 4s;
}

.geo-shape:nth-child(4) {
    bottom: 25%;
    right: 25%;
    width: 90px;
    height: 90px;
    border-radius: 30px;
    animation-delay: 6s;
}

@keyframes rotate-slow {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes shape-morph {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.3;
        border-color: rgba(37, 99, 235, 0.2);
    }
    25% {
        transform: scale(1.2) rotate(90deg);
        opacity: 0.6;
        border-color: rgba(59, 130, 246, 0.3);
    }
    50% {
        transform: scale(0.8) rotate(180deg);
        opacity: 0.8;
        border-color: rgba(29, 78, 216, 0.4);
    }
    75% {
        transform: scale(1.1) rotate(270deg);
        opacity: 0.5;
        border-color: rgba(37, 99, 235, 0.25);
    }
}

/* 流动线条 */
.flowing-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-1), transparent);
    animation: flow 12s linear infinite;
    opacity: 0.7;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.3);
}

.line:nth-child(1) {
    top: 20%;
    width: 200px;
    animation-delay: 0s;
}

.line:nth-child(2) {
    top: 40%;
    width: 300px;
    animation-delay: 3s;
}

.line:nth-child(3) {
    top: 60%;
    width: 150px;
    animation-delay: 6s;
}

.line:nth-child(4) {
    top: 80%;
    width: 250px;
    animation-delay: 9s;
}

@keyframes flow {
    0% {
        left: -300px;
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

.noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><filter id="noise"><feTurbulence baseFrequency="0.9"/></filter></defs><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.02"/></svg>');
    animation: noise-float 8s ease-in-out infinite;
}

@keyframes noise-float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* 浮动几何元素 */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    top: 10%;
    left: 10%;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--accent-1), transparent);
    border-radius: 50%;
    animation-delay: 0s;
}

.shape-2 {
    top: 70%;
    right: 15%;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--accent-2), transparent);
    transform: rotate(45deg);
    animation-delay: 2s;
}

.shape-3 {
    top: 30%;
    right: 5%;
    width: 30px;
    height: 30px;
    border: 2px solid var(--accent-1);
    border-radius: 50%;
    animation-delay: 4s;
}

.shape-4 {
    bottom: 20%;
    left: 5%;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, transparent, var(--accent-1), transparent);
    border-radius: 20%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    25% { 
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.2;
    }
    50% { 
        transform: translateY(-40px) rotate(180deg);
        opacity: 0.15;
    }
    75% { 
        transform: translateY(-20px) rotate(270deg);
        opacity: 0.25;
    }
}

/* 光线效果 */
.light-rays {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        rgba(37, 99, 235, 0.05) 0%,
        transparent 50%
    );
    animation: pulse-light 4s ease-in-out infinite;
}

@keyframes pulse-light {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* 星空效果 */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-1);
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
    box-shadow: 0 0 15px var(--accent-1);
}

.star:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.star:nth-child(2) { top: 20%; left: 80%; animation-delay: 0.5s; }
.star:nth-child(3) { top: 60%; left: 10%; animation-delay: 1s; }
.star:nth-child(4) { top: 80%; left: 70%; animation-delay: 1.5s; }
.star:nth-child(5) { top: 30%; left: 60%; animation-delay: 2s; }
.star:nth-child(6) { top: 70%; left: 30%; animation-delay: 2.5s; }

@keyframes twinkle {
    0%, 100% { 
        opacity: 0.6; 
        transform: scale(1);
    }
    50% { 
        opacity: 1; 
        transform: scale(2);
        box-shadow: 0 0 25px var(--accent-1);
    }
}

/* 光晕效果 */
.glow-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: float-glow 10s ease-in-out infinite;
}

.orb-1 {
    top: 10%;
    left: 10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
    animation-delay: 0s;
}

.orb-2 {
    top: 60%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    animation-delay: 3s;
}

.orb-3 {
    bottom: 20%;
    left: 30%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(29, 78, 216, 0.12) 0%, transparent 70%);
    animation-delay: 6s;
}

@keyframes float-glow {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    33% { 
        transform: translate(30px, -20px) scale(1.1);
        opacity: 1;
    }
    66% { 
        transform: translate(-20px, 30px) scale(0.9);
        opacity: 0.6;
    }
}

/* 粒子效果 */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--accent-1);
    border-radius: 50%;
    animation: particle-float 6s linear infinite;
}

.particle:nth-child(1) { left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 40%; animation-delay: 1s; }
.particle:nth-child(3) { left: 60%; animation-delay: 2s; }
.particle:nth-child(4) { left: 80%; animation-delay: 3s; }

@keyframes particle-float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    min-height: 100vh;
}

.hero-text {
    font-family: var(--font-sans);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 0;
}

/* 头像和基本信息区域样式 */
.hero-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    position: relative;
}

.hero-avatar {
    flex-shrink: 0;
    position: relative;
}

.hero-avatar .avatar-frame {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid var(--bg-tertiary);
    box-shadow: 0 12px 40px var(--shadow-medium);
    background: var(--bg-secondary);
    animation: float 6s ease-in-out infinite;
}

.hero-avatar .avatar-frame::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    z-index: -1;
    opacity: 0.15;
    animation: rotate 20s linear infinite;
}

.hero-avatar .avatar {
    position: absolute;
    top: 8px;
    left: 8px;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    border-radius: 50%;
    overflow: hidden;
}

.hero-avatar .avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.hero-avatar:hover .avatar-img {
    transform: scale(1.05);
}

.hero-avatar .status-dot {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 20px;
    height: 20px;
    background: #22c55e;
    border-radius: 50%;
    border: 4px solid #ffffff;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

.hero-info {
    text-align: center;
}

.avatar-name {
    font-family: var(--font-sans);
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-info .hero-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 24px;
    font-weight: 400;
}

.role-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.role-tag {
    font-size: 12px;
    color: var(--accent-1);
    background: rgba(37, 99, 235, 0.1);
    padding: 4px 12px;
    border-radius: 16px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    font-weight: 500;
    transition: all 0.3s ease;
}

.role-tag:hover {
    background: rgba(37, 99, 235, 0.15);
    border-color: var(--accent-1);
}





/* 状态指示器 */
.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    padding: 6px 12px;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    width: fit-content;
}

.status-dot-live {
    width: 8px;
    height: 8px;
    background: var(--accent-1);
    border-radius: 50%;
    animation: pulse-live 2s infinite;
    box-shadow: 0 0 10px var(--accent-1);
}

@keyframes pulse-live {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.status-text {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text-secondary);
}

/* 问候语 */
.hero-greeting {
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.greeting-text {
    font-size: 18px;
    color: var(--accent-1);
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.greeting-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-1), transparent);
}

/* 主标题区域 */
.hero-title-section {
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.hero-main-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.name-highlight {
    background: linear-gradient(45deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.name-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(45deg, var(--accent-1), var(--accent-2));
    opacity: 0.3;
}

.title-subtitle {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.role-text {
    color: var(--text-secondary);
    padding: 10px 20px;
    border: 2px solid var(--accent-1);
    border-radius: 30px;
    background: rgba(37, 99, 235, 0.05);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 描述文本 */
.hero-description {
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.description-text {
    font-size: 24px;
    line-height: 1.6;
    color: var(--text-primary);
    max-width: 600px;
    font-weight: 300;
    text-align: center;
    margin: 0 auto;
}

.highlight-word {
    color: var(--accent-1);
    font-weight: 600;
    position: relative;
}

.highlight-word::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-1);
    opacity: 0.3;
}

/* 统计数据 */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    font-family: var(--font-mono);
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-family: var(--font-mono);
    margin-top: 8px;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--border-medium), transparent);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1.0s;
    opacity: 0;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: none;
}

.cta-btn.primary {
    background: var(--accent-1);
    color: white;
    box-shadow: 0 6px 20px var(--shadow-medium);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px var(--shadow-strong);
    background: var(--accent-3);
}

.cta-btn.secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 2px solid var(--border-medium);
}

.cta-btn.secondary:hover {
    border-color: var(--accent-1);
    color: var(--accent-1);
    box-shadow: 0 6px 20px var(--shadow-light);
    background: rgba(37, 99, 235, 0.05);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.cta-btn:hover .btn-icon {
    transform: translateX(3px);
}

/* 社交连接区域 */
.social-connect {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1.2s;
    opacity: 0;
}

.social-label {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    border: 1px solid var(--border-medium);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--bg-tertiary), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    color: var(--accent-1);
    border-color: var(--accent-1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-light);
    background: rgba(37, 99, 235, 0.05);
}

.social-text {
    font-family: var(--font-mono);
    font-size: 12px;
}

/* 终端样式 */
.terminal {
    background: var(--bg-tertiary);
    border-radius: 12px;
    border: 1px solid var(--border-medium);
    box-shadow: 0 10px 30px var(--shadow-medium);
    overflow: hidden;
}

.terminal-header {
    background: var(--bg-secondary);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--border-medium);
}

.terminal-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #ff5f56; }
.control.yellow { background: #ffbd2e; }
.control.green { background: #27ca3f; }

.terminal-title {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text-secondary);
}

.terminal-body {
    padding: 32px;
    font-family: var(--font-mono);
    font-size: 15px;
    line-height: 1.7;
    height: calc(100% - 64px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.prompt {
    color: var(--accent-1);
}

.command {
    color: var(--text-primary);
}

.cursor-blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.output {
    color: var(--text-secondary);
    margin-left: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: pre-wrap;
}

/* 终端容器 */
.terminals-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
}

/* 三个终端网格布局 */
.terminals-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    max-width: 520px;
}

.terminal-item {
    background: var(--bg-tertiary);
    border-radius: 20px;
    border: 1px solid var(--border-medium);
    box-shadow: 0 8px 32px var(--shadow-medium);
    overflow: hidden;
    font-family: var(--font-mono);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 220px;
    width: 100%;
    box-sizing: border-box;
}

.terminal-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px var(--shadow-strong);
    border-color: var(--accent-1);
}

.terminal-item:nth-child(1) { animation-delay: 0.1s; }
.terminal-item:nth-child(2) { animation-delay: 0.2s; }
.terminal-item:nth-child(3) { animation-delay: 0.3s; }

.terminal-line {
    margin-bottom: 8px;
}

.service-output {
    margin-left: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info {
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 11px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.service-link {
    color: var(--accent-1);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-link:hover {
    color: var(--accent-2);
    transform: translateX(3px);
}

.qq-group-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.qq-number {
    font-size: 13px;
    color: var(--text-primary);
    background: var(--bg-secondary);
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid var(--border-light);
}

.join-btn {
    background: var(--accent-1);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-family: var(--font-mono);
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.join-btn:hover {
    background: var(--accent-2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* 音乐播放器布局 */
.music-player-layout {
    display: flex;
    gap: 20px;
    margin-top: 16px;
}

.player-controls {
    flex: 1;
    min-width: 0;
}

.lyrics-area {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lyrics-label {
    color: var(--text-muted);
    font-weight: 500;
    font-style: italic;
    font-size: 11px;
}

.lyrics-content {
    color: var(--text-secondary);
    opacity: 0.7;
    font-size: 12px;
    line-height: 1.6;
    white-space: pre-wrap;
}

/* 音乐标题样式 */
.music-title {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

/* 进度条样式 */
.progress-container {
    width: 100%;
    height: 4px;
    background: var(--bg-primary);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-bar {
    height: 100%;
    background: var(--accent-1);
    border-radius: 2px;
    width: 0%; /* 默认进度 */
    transition: width 0.3s ease;
}

/* 歌词样式 */
.lyrics-content {
    margin-top: 0;
    line-height: 1.8;
    font-size: 14px;
    color: var(--text-secondary);
}

/* 音频可视化样式 */
.audio-visualizer {
    margin-top: 10px;
    height: 40px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 8px;
}

.visualizer-container {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 100%;
}

.visualizer-bar {
    width: 4px;
    background: linear-gradient(to top, #87CEEB, #1E90FF);
    border-radius: 2px;
    min-height: 2px;
    transition: height 0.1s ease;
}

.lyric-line {
    display: block;
    margin: 3px 0;
    position: relative;
    min-height: 24px;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.lyric-line.fade-out {
    opacity: 0.8;
    transform: translateY(0);
    height: auto;
    margin: 3px 0;
    padding: 0;
    overflow: hidden;
}

.lyric-line.fade-in {
    opacity: 0;
    transform: translateY(10px);
    margin: 3px 0;
    padding: 0;
}

.lyric-line.fade-in.active {
    opacity: 1;
    transform: translateY(0);
    margin: 3px 0;
    padding: 0;
}

.played-lyric {
    color: var(--text-muted);
    opacity: 0.8;
}

.current-lyric {
    position: relative;
    display: inline-block;
    color: var(--text-secondary);
    opacity: 0.6;
}

.current-lyric::after {
    content: attr(data-lyric);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--accent-1);
    font-weight: 500;
    overflow: hidden;
    white-space: nowrap;
    width: var(--highlight-width, 0);
    transition: width 0.1s linear;
}

/* 音乐播放器样式 */
.music-controls {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 12px 0;
}

.music-btn {
    padding: 8px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-medium);
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    gap: 4px;
    user-select: none;
    position: relative;
    overflow: hidden;
}

.music-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--bg-tertiary), transparent);
    transition: left 0.5s ease;
}

.music-btn:hover::before {
    left: 100%;
}

.music-btn:hover {
    color: var(--accent-1);
    border-color: var(--accent-1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-light);
    background: rgba(37, 99, 235, 0.05);
}

.music-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px var(--shadow-light);
}

/* 天气导航按钮样式 */
.weather-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
}

.weather-btn {
    padding: 4px 12px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-medium);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.weather-btn:hover {
    background: var(--accent-1);
    color: white;
    border-color: var(--accent-1);
}

.weather-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.weather-day-indicator {
    font-size: 11px;
    color: var(--text-secondary);
}

/* 设备信息样式 */
.device-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.device-item {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 11px;
}

.device-label {
    font-weight: 500;
    color: var(--text-primary);
    min-width: 80px;
}

.device-value {
    color: var(--text-secondary);
    word-break: break-all;
}

/* 当日信息样式 */
.day-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.day-item {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 11px;
}

.day-label {
    font-weight: 500;
    color: var(--text-primary);
    min-width: 80px;
}

.day-value {
    color: var(--text-secondary);
    word-break: break-all;
}

/* 音乐列表样式 */
.playlist-reserved {
    margin-top: 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-size: 11px;
    overflow: hidden;
}

.playlist-header {
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.playlist-header:hover {
    background: var(--bg-primary);
}

.playlist-toggle {
    font-size: 9px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.playlist-toggle.collapsed {
    transform: rotate(-90deg);
}

.playlist-content {
    padding: 0 12px 8px;
    transition: all 0.3s ease;
    max-height: 200px;
    overflow: hidden;
}

.playlist-content.collapsed {
    max-height: 0;
    padding-bottom: 0;
}

/* 音乐列表项样式 */
.music-item {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.music-item:last-child {
    border-bottom: none;
}

.music-item:hover {
    background: var(--bg-primary);
    padding-left: 8px;
}

.music-item-title {
    font-size: 11px;
    color: var(--text-secondary);
}

.reserved-label {
    color: var(--text-muted);
    font-weight: 500;
    font-style: italic;
}

.reserved-content {
    color: var(--text-secondary);
    opacity: 0.7;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .music-player-layout {
        flex-direction: column;
    }
    
    .lyrics-area {
        margin-top: 12px;
        padding: 8px 12px;
        background: var(--bg-secondary);
        border: 1px solid var(--border-light);
        border-radius: 6px;
    }
}

.status-line {
    font-size: 12px;
    margin-bottom: 4px;
    display: block;
}

.status-line.success {
    color: #22c55e;
}

.status-line.info {
    color: var(--accent-1);
}

.status-line.warning {
    color: #f59e0b;
}

/* WHOIS 信息样式 */
.status-line .key {
    color: var(--accent-1);
    font-weight: 500;
    display: inline-block;
    margin-right: 8px;
}

.status-line .value {
    color: #94a3b8;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* 广告区域样式 */
.ads-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 0;
}

.ads-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ads-header {
    text-align: center;
    margin-bottom: 10px;
}

.ads-title {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    background: linear-gradient(45deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ad-card {
    background: var(--bg-primary);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    padding: 24px;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ad-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
}

.ad-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
    border-color: var(--accent-1);
}

.ad-icon {
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
}

.ad-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.4;
}

.ad-description {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.5;
}

.ad-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-1);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 13px;
    padding: 8px 12px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
}

.ad-link:hover {
    background: rgba(37, 99, 235, 0.2);
    transform: scale(1.02);
}

.link-text {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.link-icon {
    font-size: 14px;
}

.qq-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qq-number {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-secondary);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

.qq-join-btn {
    background: var(--accent-1);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qq-join-btn:hover {
    background: var(--accent-2);
    transform: scale(1.05);
}

/* 迷你终端样式 */
.mini-terminal {
    background: var(--bg-primary);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 20px var(--shadow-light);
    overflow: hidden;
}

.mini-terminal .terminal-header {
    padding: 12px 16px;
    background: var(--bg-secondary);
}

.mini-terminal .terminal-body {
    padding: 16px;
    font-size: 13px;
}

/* 其他部分样式 */
.about {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.highlight {
    background: linear-gradient(45deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.skills-quick {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.skill-item {
    padding: 8px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border-medium);
    border-radius: 20px;
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.skill-item:hover {
    border-color: var(--accent-1);
    color: var(--accent-1);
    transform: translateY(-2px);
}

.skill-icon {
    margin-right: 8px;
}

/* 信息卡片样式 */
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg-primary);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px var(--shadow-light);
    width: 100%;
    max-width: 100%;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-medium);
    border-color: var(--accent-1);
}

.info-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--accent-1), var(--accent-2));
    border-radius: 12px;
    filter: grayscale(0);
}

.info-content {
    flex: 1;
}

.info-label {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.info-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 12px 40px var(--shadow-medium); }
    50% { box-shadow: 0 16px 50px var(--shadow-strong); }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--accent-1); }
    50% { box-shadow: 0 0 0 10px transparent; }
}

/* 作品展示 */
.work {
    background: var(--bg-primary);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.project-card {
    background: var(--bg-secondary);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    max-width: 100%;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-medium);
    border-color: var(--accent-1);
}

.project-preview {
    height: 200px;
    background: var(--bg-tertiary);
    position: relative;
    overflow: hidden;
}

.project-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    opacity: 0.1;
}

.project-card[data-project="1"] .project-gradient {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
}

.project-card[data-project="2"] .project-gradient {
    background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
}

.project-card[data-project="3"] .project-gradient {
    background: linear-gradient(135deg, var(--accent-3), var(--accent-1));
}

.preview-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-1);
    opacity: 0;
    transition: all 0.3s ease;
}

.project-card:hover .preview-overlay {
    opacity: 1;
}

.project-tech {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.tech {
    padding: 4px 8px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
}

.project-info {
    padding: 25px;
}

.project-number {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.project-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.project-desc {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.project-links {
    display: flex;
    gap: 15px;
}

.project-link {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--border-medium);
    border-radius: 6px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.project-link:hover {
    border-color: var(--accent-1);
    color: var(--accent-1);
}

/* 联系部分 */
.contact {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.contact-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-primary);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    width: 100%;
    max-width: 100%;
}

.contact-method:hover {
    border-color: var(--accent-1);
    transform: translateX(10px);
}

.email-selector {
    cursor: pointer;
    position: relative;
}

.email-selector:hover {
    border-color: var(--accent-1);
    transform: translateX(10px);
    background: linear-gradient(135deg, var(--bg-primary), rgba(99, 102, 241, 0.05));
}

.email-arrow {
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.email-selector:hover .email-arrow {
    transform: translateY(3px);
    color: var(--accent-1);
}

.email-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.email-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.email-modal {
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    border: 1px solid var(--border-light);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
}

.email-modal-overlay.active .email-modal {
    transform: scale(1) translateY(0);
}

.email-modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.email-modal-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.email-modal-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.email-modal-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

.email-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.email-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.email-option:hover {
    border-color: var(--accent-1);
    background: linear-gradient(135deg, var(--bg-secondary), rgba(99, 102, 241, 0.08));
    transform: translateX(8px);
}

.email-option-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.email-option-info {
    flex: 1;
    min-width: 0;
}

.email-option-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.email-option-address {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 2px;
    word-break: break-all;
}

.email-option-arrow {
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.email-option:hover .email-option-arrow {
    color: var(--accent-1);
    transform: translateX(4px);
}

.email-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.email-modal-close:hover {
    background: var(--accent-1);
    color: white;
    transform: rotate(90deg);
}

.email-modal {
    position: relative;
}

/* Telegram图标样式 */
.telegram-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.telegram-icon-container {
    background: white !important;
    color: var(--accent-1) !important;
    border: 2px solid var(--accent-1);
}

/* 邮箱图标样式 */
.email-icon-container .method-icon {
    background: white !important;
    color: var(--accent-1) !important;
    border: 2px solid var(--accent-1);
}

/* QQ图标样式 */
.qq-icon-container .method-icon {
    background: white !important;
    color: var(--accent-1) !important;
    border: 2px solid var(--accent-1);
}

.qq-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.qq-icon-wrapper .qq-icon {
    width: 24px;
    height: 24px;
}

/* QQ图标容器样式 */
.qq-icon-wrapper {
    background: white !important;
    color: var(--accent-1) !important;
    border: 2px solid var(--accent-1);
}

/* 微信图标样式 */
.wechat-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* 微信图标容器样式 */
.wechat-icon-wrapper {
    background: white !important;
    color: var(--accent-1) !important;
    border: 2px solid var(--accent-1);
}

/* QQ二维码样式 */
.qq-qr-code {
    flex-shrink: 0;
}

.qq-qr-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
}

.qr-option {
    align-items: center;
}

/* 二维码放大弹窗样式 */
.qr-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.qr-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.qr-modal {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.qr-modal-overlay.active .qr-modal {
    transform: scale(1);
}

.qr-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.qr-modal-close:hover {
    color: var(--accent-1);
}

.qr-modal-content h3 {
    margin-bottom: 24px;
    color: var(--text-1);
    font-size: 20px;
    font-weight: 700;
}

.qr-modal-image {
    margin-bottom: 20px;
}

.qr-modal-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.qr-hint {
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-2);
    text-align: center;
    cursor: pointer;
    transition: color 0.3s ease;
}

.qr-hint:hover {
    color: var(--accent-1);
}

/* 复制按钮样式 */
.copy-btn {
    background: none;
    border: none;
    color: var(--text-2);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    margin-left: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.copy-btn:hover {
    background: var(--bg-secondary);
    color: var(--accent-1);
}

.copy-btn svg {
    width: 14px;
    height: 14px;
}

/* 联系方式值和复制按钮容器 */
.method-info {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.method-value {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 弹窗内复制按钮样式 */
.email-option .copy-btn {
    margin-left: 8px;
    padding: 2px 6px;
    font-size: 12px;
}

.email-option .email-option-address {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qr-modal-text {
    color: var(--text-2);
    font-size: 14px;
    line-height: 1.6;
}

/* 复制成功提示样式 */
.copy-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 10002;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.copy-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.telegram-icon-container .telegram-icon {
    width: 24px;
    height: 24px;
}

/* 邮箱图标样式 */
.email-icon-container .method-icon {
    background: white !important;
    color: var(--accent-1) !important;
    border: 2px solid var(--accent-1);
}

.mail-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.email-icon-wrapper .mail-icon {
    width: 24px;
    height: 24px;
}

/* 位置图标样式 */
.location-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.location-icon-wrapper .location-icon {
    width: 24px;
    height: 24px;
}

/* 状态点样式 */
.status-dot-container {
    position: relative;
}

.status-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #10B981; /* 默认绿色 */
    animation: pulse 2s infinite;
    transition: background 0.3s ease;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.status-delay {
    font-weight: 700;
    color: var(--accent-1);
}

/* 状态图标样式 */
.status-icon-container .info-icon {
    background: white !important;
    color: var(--accent-1) !important;
    border: 2px solid var(--accent-1);
}

/* 位置图标样式 */
.location-icon-container .info-icon {
    background: white !important;
    color: var(--accent-1) !important;
    border: 2px solid var(--accent-1);
}

/* 爱好图标样式 */
.hobby-icon-container .info-icon {
    background: white !important;
    color: var(--accent-1) !important;
    border: 2px solid var(--accent-1);
}

.social-link .telegram-icon {
    margin-right: 8px;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--accent-1), var(--accent-2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.method-info {
    flex: 1;
}

.method-label {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.method-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.message-bubble {
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 30px var(--shadow-light);
    position: relative;
}

.message-bubble::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--bg-primary);
}

.typing-indicator {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--accent-1);
    border-radius: 50%;
    animation: typing 1.5s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.3;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

.message-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* 页脚 */
.footer {
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border-light);
    padding: 40px 50px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-text {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text-muted);
}

.footer-year {
    color: var(--accent-1);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-1);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .section-content {
        padding: 60px 20px;
        min-height: auto;
    }
    
    .footer {
        padding: 40px 20px;
    }

    .hero-content,
    .about-grid,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nav-dots {
        display: none;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .hero-text {
        padding-left: 0;
        text-align: center;
    }

    .hero-avatar {
        margin: 0 auto;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .terminals-grid {
        flex-direction: column;
        gap: 20px;
        max-width: 100%;
    }

    .terminal-item {
        max-width: 100%;
        overflow: auto;
    }

    .terminal-body {
        padding: 20px;
        font-size: 13px;
    }

    .output {
        margin-left: 15px;
    }

    .email-option {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .email-option-icon {
        margin-bottom: 10px;
    }

    .qq-qr-code {
        margin-top: 15px;
    }

    .qr-modal {
        padding: 24px;
        max-width: 300px;
    }

    .qr-modal-img {
        width: 160px;
        height: 160px;
    }

    .cursor,
    .cursor-follower {
        display: none;
    }

    .avatar-name {
        font-size: 24px;
    }

    .hero-description {
        font-size: 16px;
    }

    .about-title {
        font-size: 28px;
    }

    .work-title {
        font-size: 28px;
    }

    .contact-title {
        font-size: 28px;
    }

    .skill-item {
        font-size: 14px;
        padding: 8px 16px;
    }

    .project-card {
        padding: 20px;
    }

    .project-title {
        font-size: 20px;
    }

    .project-description {
        font-size: 14px;
    }

    .info-card {
        padding: 20px;
    }

    .info-card-title {
        font-size: 18px;
    }

    .info-card-value {
        font-size: 32px;
    }

    .contact-method {
        padding: 20px;
    }

    .method-label {
        font-size: 14px;
    }

    .method-value {
        font-size: 16px;
    }
}

/* 小屏幕手机适配 */
@media (max-width: 480px) {
    .section-content {
        padding: 40px 15px;
    }

    .hero-content,
    .about-grid,
    .contact-container {
        gap: 30px;
    }

    .avatar-name {
        font-size: 20px;
    }

    .hero-description {
        font-size: 14px;
    }

    .about-title {
        font-size: 24px;
    }

    .work-title {
        font-size: 24px;
    }

    .contact-title {
        font-size: 24px;
    }

    .hero-stats {
        gap: 15px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }

    .cta-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .social-link {
        padding: 10px 16px;
        font-size: 12px;
    }

    .terminal-header {
        padding: 12px 16px;
    }

    .terminal-body {
        padding: 16px;
    }

    .terminal-line {
        font-size: 12px;
    }

    .project-card {
        padding: 16px;
    }

    .project-title {
        font-size: 18px;
    }

    .info-card {
        padding: 16px;
    }

    .info-card-title {
        font-size: 16px;
    }

    .info-card-value {
        font-size: 24px;
    }

    .contact-method {
        padding: 16px;
    }

    .method-value {
        font-size: 14px;
    }

    .footer-text {
        font-size: 12px;
    }

    .footer-links {
        gap: 20px;
    }

    .footer-link {
        font-size: 12px;
    }
}

/* 添加涟漪动画 */
@keyframes ripple {
    to {
        transform: scale(2);
        opacity: 0;
    }
}