* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'ZCOOL XiaoWei', serif;
}

:root {
    --military-green: #1a472a;
    --neon-blue: #00f3ff;
    --dark-blue: #000d1a;
    --accent-green: #40ff00;
}

body {
    background: var(--dark-blue);
    color: #ffffff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* 科技网格背景 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(transparent 0%, rgba(0, 243, 255, 0.1) 2%, transparent 3%),
        linear-gradient(90deg, transparent 0%, rgba(0, 243, 255, 0.1) 2%, transparent 3%);
    background-size: 50px 50px;
    z-index: -1;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    from { background-position: 0 0; }
    to { background-position: 50px 50px; }
}

/* 雷达扫描效果 */
.radar-scan {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg 350deg,
        rgba(0, 243, 255, 0.2) 355deg 360deg
    );
    animation: radarScan 4s linear infinite;
    z-index: -1;
    opacity: 0.3;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
}

.header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInDown 1s ease-out;
    position: relative;
}

.main-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue),
                 0 0 20px var(--neon-blue),
                 0 0 30px var(--neon-blue);
    position: relative;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--accent-green);
    text-shadow: 0 0 5px var(--accent-green);
}

section {
    background: rgba(26, 71, 42, 0.3);
    border: 1px solid var(--neon-blue);
    border-radius: 5px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
    position: relative;
    backdrop-filter: blur(10px);
    transform: translateY(50px);
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    animation: scanLine 2s linear infinite;
}

@keyframes scanLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.info-content p {
    margin: 0.8rem 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.info-content span {
    color: var(--neon-blue);
    font-weight: bold;
    margin-right: 1rem;
    min-width: 80px;
    position: relative;
}

.info-content span::after {
    content: '>';
    color: var(--accent-green);
    margin-left: 5px;
}

.hobby-items {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.hobby-item {
    background: var(--military-green);
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--neon-blue);
    border-radius: 5px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hobby-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--neon-blue);
    background: var(--dark-blue);
}

.hobby-item::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg, transparent, rgba(0, 243, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.hobby-item:hover::before {
    top: -50%;
    left: -50%;
}

.dream-content {
    font-size: 1.3rem;
    line-height: 1.6;
    text-align: center;
    padding: 1rem;
    color: var(--accent-green);
    text-shadow: 0 0 5px var(--accent-green);
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--neon-blue), var(--accent-green));
    box-shadow: 0 0 10px var(--neon-blue);
}

.timeline-item {
    margin: 2rem 0;
    position: relative;
}

.timeline-content {
    background: rgba(26, 71, 42, 0.3);
    border: 1px solid var(--neon-blue);
    padding: 1.5rem;
    border-radius: 5px;
    margin-left: 2rem;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background: var(--neon-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-blue);
}

h2 {
    color: var(--neon-blue);
    text-shadow: 0 0 5px var(--neon-blue);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

h2::before {
    content: '[';
    margin-right: 10px;
    color: var(--accent-green);
}

h2::after {
    content: ']';
    margin-left: 10px;
    color: var(--accent-green);
}

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

@keyframes fadeInDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .hobby-items {
        justify-content: center;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-content {
        margin-left: 40px;
    }
}

/* 任务详情样式 */
.mission-details {
    font-family: 'Courier New', monospace;
    line-height: 1.8;
}

.mission-details span {
    display: block;
    position: relative;
    padding-left: 20px;
}

.mission-details span::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--accent-green);
}

.mission-location {
    color: var(--neon-blue);
}

.mission-time {
    color: #fff;
}

.mission-status {
    color: var(--accent-green);
}

.mission-brief {
    margin-top: 10px;
    padding: 10px;
    background: rgba(0, 243, 255, 0.1);
    border-left: 2px solid var(--neon-blue);
}

.timeline-content h3 {
    color: var(--neon-blue);
    margin-bottom: 15px;
    text-shadow: 0 0 5px var(--neon-blue);
} 