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

body {
    font-family: 'Inter', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background-color: #0a0a0a;
    color: #e5e5e5;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Noto Serif SC', serif;
    font-weight: 700;
}

.scroll-container {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
}

.scroll-section {
    scroll-snap-align: start;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.25;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}
.scroll-section:hover .bg-image {
    opacity: 0.3;
    transform: scale(1.05);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(.4,2,.6,1), transform 0.8s cubic-bezier(.4,2,.6,1);
}
.visible .fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.highlight-card {
    background-color: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.12);
}
.highlight-card:hover {
    background-color: rgba(30, 30, 30, 0.6);
    transform: translateY(-5px);
}

.scroll-down-arrow {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-7px);
    }
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 2rem 3rem;
    }
    .grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .text-right {
        text-align: right;
    }
    .text-left {
        text-align: left;
    }
}

.text-neutral-400 { color: #a3a3a3; }
.text-neutral-300 { color: #d4d4d4; }
.text-4xl { font-size: 2.25rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.p-4 { padding: 1rem; }
.p-8 { padding: 2rem; }
.rounded-lg { border-radius: 0.75rem; }
.font-bold { font-weight: 700; }
.tracking-wider { letter-spacing: 0.08em; }
.leading-relaxed { line-height: 1.75; }
.grid { display: grid; gap: 1.5rem; }
.grid-cols-1 { grid-template-columns: 1fr; }
.gap-4 { gap: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.md\:px-12 { padding-left: 3rem; padding-right: 3rem; }
.md\:w-3\/4 { width: 75%; }
.lg\:w-2\/3 { width: 66.666667%; }
.max-w-5xl { max-width: 64rem; }
.z-10 { z-index: 10; }

h1 {
    text-align: center;
    margin-bottom: 3.5rem;
    color: #1a237e;
    font-size: 2.8rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-shadow: 0 2px 16px rgba(26,35,126,0.08);
}

.movie-card {
    background: rgba(255,255,255,0.65);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    margin-bottom: 3.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1.5px solid rgba(120, 144, 156, 0.13);
    backdrop-filter: blur(12px);
    transition: box-shadow 0.3s;
}

.movie-card:hover {
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.22);
}

@media (min-width: 768px) {
    .movie-card {
        flex-direction: row;
    }
}

.movie-image {
    flex: 1.1;
    min-height: 320px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.movie-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(.4,2,.6,1);
    border-radius: 0;
    z-index: 1;
}

.movie-image::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0; top: 0;
    background: linear-gradient(120deg, rgba(30,34,90,0.10) 60%, rgba(255,255,255,0.18) 100%);
    z-index: 2;
    pointer-events: none;
}

.movie-image:hover img {
    transform: scale(1.04) rotate(-0.5deg);
}

.movie-info {
    flex: 1;
    padding: 2.2rem 2.2rem 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h2 {
    color: #283593;
    margin-bottom: 1.1rem;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-shadow: 0 1px 8px rgba(40,53,147,0.07);
}

.director, .year {
    color: #607d8b;
    margin-bottom: 0.5rem;
    font-size: 1.08rem;
}

.highlights {
    margin: 1.7rem 0 1.2rem 0;
    background: linear-gradient(90deg,rgba(197,202,233,0.13) 0%,rgba(255,255,255,0.08) 100%);
    border-radius: 8px;
    padding: 1rem 1.2rem;
    box-shadow: 0 2px 8px rgba(120,144,156,0.06);
}

.highlights h3 {
    color: #3949ab;
    margin-bottom: 0.7rem;
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.highlights ul {
    list-style: disc inside;
    color: #37474f;
    font-size: 1.02rem;
    line-height: 1.7;
    padding-left: 0.5em;
}

.description {
    color: #37474f;
    margin-top: 1.5rem;
    line-height: 1.85;
    font-size: 1.08rem;
    letter-spacing: 0.01em;
}

/* 图片加载优化 - 使用 CSS 动画替代 */
.poster-img {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.movie-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    height: 80vh;
    gap: 2rem;
}
.movie-poster {
    flex: 1 1 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    max-width: 380px;
    height: 100%;
    background: rgba(20,20,20,0.18);
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.13);
    overflow: hidden;
}
.poster-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.10);
    background: #181818;
}
.movie-content {
    flex: 2 1 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-width: 0;
    max-width: 600px;
    padding: 1.5rem 1rem;
}
.highlight-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    width: 100%;
    margin-top: 1.5rem;
}
.movie-section .movie-content {
    text-align: left;
}
.movie-layout.reverse {
    flex-direction: row-reverse;
}
@media (max-width: 900px) {
    .movie-layout, .movie-layout.reverse {
        flex-direction: column !important;
        height: auto;
        gap: 1.5rem;
    }
    .movie-content {
        align-items: center;
        text-align: center;
        max-width: 100%;
    }
    .highlight-list {
        grid-template-columns: 1fr;
    }
    .movie-poster {
        max-width: 320px;
        width: 80vw;
        margin: 0 auto;
    }
}

#intro .z-10.p-8 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    padding: 0;
}
#intro h1 {
    color: #3b82f6;
    font-size: 3.2rem;
    margin-bottom: 2rem;
    letter-spacing: 0.12em;
    text-shadow: 0 4px 32px rgba(59,130,246,0.18);
}
#intro p {
    font-size: 1.4rem;
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.movie-layout {
    height: auto;
    min-height: 60vh;
}
.movie-poster {
    height: 60vh;
    max-height: 480px;
    min-height: 320px;
    width: 100%;
    max-width: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20,20,20,0.18);
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.13);
    overflow: hidden;
}
.poster-img {
    max-height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.10);
    background: #181818;
    display: block;
    margin: 0 auto;
}
@media (max-width: 900px) {
    #intro .z-10.p-8 {
        height: 60vh;
        min-height: 320px;
        padding: 0 1rem;
    }
    .movie-poster {
        height: 40vh;
        max-height: 260px;
        min-height: 180px;
    }
} 