* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    padding: 12px 0;
    max-width: 900px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #e74c3c;
    line-height: 1;
    white-space: nowrap;
    margin-right: auto;
}

.logo span {
    color: #333;
}

.nav-menu {
    display: flex;
    gap: 25px;
    list-style: none;
    margin-left: auto;
}

.nav-menu a {
    color: #666;
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #e74c3c;
}

.nav-menu a.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #e74c3c;
    margin-top: 4px;
}

/* Hero Section - 简化版 */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 0;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 600;
}

.hero p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Video Player Section - 已移除或简化 */
.video-section {
    background: #fff;
    padding: 30px 0;
    margin-top: -30px;
}

.video-container {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    font-size: 18px;
}

.video-info {
    padding: 25px;
    background: #fff;
}

.video-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.video-meta {
    display: flex;
    gap: 20px;
    color: #999;
    font-size: 14px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.video-desc {
    color: #666;
    line-height: 1.8;
}

/* Movie Grid - 已移除 */
.section {
    padding: 40px 0;
}

.section-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    padding-left: 15px;
    border-left: 4px solid #e74c3c;
}

.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
}

.movie-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.movie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.movie-poster {
    aspect-ratio: 2/3;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    position: relative;
}

.movie-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.movie-info {
    padding: 15px;
}

.movie-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.movie-meta {
    font-size: 12px;
    color: #999;
}

/* Disclaimer Section */
.disclaimer-section {
    background: #fff;
    padding: 60px 0;
    margin-top: 0;
    border-top: 1px solid #eee;
}

.disclaimer-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
    position: relative;
}

.disclaimer-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #e74c3c;
    margin: 15px auto 0;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 15px;
    color: #555;
    line-height: 2;
}

.disclaimer-content h3 {
    font-size: 18px;
    color: #333;
    margin: 35px 0 20px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.disclaimer-content h3:first-child {
    margin-top: 0;
}

.disclaimer-content p {
    margin-bottom: 18px;
    text-align: justify;
}

.disclaimer-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.disclaimer-content li {
    margin-bottom: 15px;
    padding-left: 5px;
}

.highlight {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
    padding: 20px 25px;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
    margin: 25px 0;
}

.highlight strong {
    color: #856404;
}

.info-box {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.info-box.warning {
    background: #fff3cd;
    border-color: #ffc107;
}

/* Footer */
footer {
    background: #2d3748;
    color: #a0aec0;
    padding: 50px 0 25px;
    font-size: 14px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    margin-bottom: 35px;
}

.footer-section {
    text-align: center;
}

.footer-section h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: #e74c3c;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #a0aec0;
    transition: all 0.3s;
    display: inline-block;
}

.footer-section a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #4a5568;
}

.footer-bottom p {
    color: #718096;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
        padding: 15px 0;
    }

    .nav-menu {
        order: 2;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 20px;
        font-size: 14px;
    }

    .hero {
        padding: 30px 15px;
    }

    .hero h1 {
        font-size: 22px;
    }

    .hero p {
        font-size: 14px;
    }

    .disclaimer-section {
        padding: 40px 20px;
    }

    .disclaimer-title {
        font-size: 22px;
    }

    .disclaimer-content {
        font-size: 14px;
    }

    .disclaimer-content h3 {
        font-size: 16px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-section h4::after {
        left: 0;
        transform: none;
    }

    .footer-section {
        text-align: left;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.disclaimer-section {
    animation: fadeInUp 0.6s ease-out;
}

/* 滚动条美化 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

/* Play Button Overlay */
.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.play-overlay::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 18px solid #e74c3c;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    margin-left: 4px;
}

.movie-poster:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}