.story-page {
    padding: 120px 5% 60px;
    background-color: var(--bg-color);
}

.page-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 255, 213, 0.3);
}

/* 时间线样式 */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background: var(--gradient-1);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 15px var(--primary-color);
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    margin-bottom: 60px;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-content {
    padding: 20px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 255, 213, 0.1);
    border: 1px solid rgba(0, 255, 213, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--neon-shadow);
    border-color: rgba(0, 255, 213, 0.3);
}

.timeline-date {
    position: absolute;
    top: -40px;
    right: 20px;
    background: var(--gradient-1);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(0, 255, 213, 0.3);
}

.timeline-image {
    margin: 15px 0;
    border-radius: 10px;
    overflow: hidden;
}

.timeline-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.timeline-image:hover img {
    transform: scale(1.05);
}

.timeline-content h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 255, 213, 0.3);
}

.timeline-content p {
    color: #cccccc;
    margin-bottom: 15px;
}

.timeline-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 255, 213, 0.1);
}

.timeline-details h3 {
    color: var(--accent-color);
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 0, 106, 0.3);
}

.timeline-details ul {
    list-style: none;
    padding-left: 20px;
}

.timeline-details li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #cccccc;
}

.timeline-details li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 1.5em;
    line-height: 1;
    text-shadow: 0 0 5px rgba(255, 0, 106, 0.3);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-date {
        left: 70px;
        right: auto;
    }
} 