body {
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.navbar {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.nav-link {
    color: #ffffff !important;
    font-weight: 500;
    margin: 0 15px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #ff6b00 !important;
}

.nav-link.active {
    color: #ff6b00 !important;
}

.search-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 20px;
    padding: 8px 20px;
    width: 400px;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-btn {
    background: #ff6b00;
    border: none;
    border-radius: 20px;
    padding: 8px 20px;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #ff8533;
    transform: translateY(-1px);
}

.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 100px 0;
    margin-bottom: 40px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff6b00, #ff8533);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.category-tabs {
    margin-bottom: 30px;
}

.category-tab {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-tab.active {
    background: #ff6b00;
    color: white;
}

.category-tab:hover {
    background: rgba(255, 107, 0, 0.8);
}

.movie-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.movie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.movie-poster {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.movie-card:hover .movie-poster {
    transform: scale(1.05);
}

.movie-info {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.movie-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.movie-year {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.movie-rating {
    display: flex;
    align-items: center;
    color: #ffd700;
    font-weight: 600;
}

.movie-rating i {
    margin-right: 5px;
}

.footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 40px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #ff6b00;
}

.loading {
    text-align: center;
    padding: 50px;
    color: rgba(255, 255, 255, 0.6);
}

/* 时间轴样式 */
.timeline-container {
    position: relative;
    padding-left: 40px;
}

.timeline-line {
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 107, 0, 0.3);
}

.timeline-day {
    position: relative;
    margin-bottom: 40px;
}

.timeline-day-header {
    position: relative;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff6b00;
    padding-left: 20px;
}

.timeline-day-header::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ff6b00;
    border: 3px solid rgba(255, 107, 0, 0.3);
}

.timeline-content {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-left: 12px;
}

.timeline-item {
    flex: 1;
    min-width: 250px;
    max-width: calc(25% - 12px);
}