@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:ital,wght@1,700&display=swap');

:root {
    --bg-color: #0a0a0a;
    --card-bg: #151515;
    --accent-gold: #d4af37;
    --accent-gold-dark: #b8860b;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --border-color: rgba(212, 175, 55, 0.2);
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* 导航栏 */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: 0.3s;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--accent-gold);
    text-decoration: none;
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

/* 英雄区 */
.hero {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, #1b1b1b 0%, #0a0a0a 100%);
    padding: 0 10%;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero p {
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 2rem;
}

/* 按钮样式 */
.btn-gold {
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: 0.4s;
    cursor: pointer;
}

.btn-gold:hover {
    background: var(--accent-gold);
    color: var(--bg-color);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* 影片网格 */
.section-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin: 4rem 5% 2rem;
    border-left: 4px solid var(--accent-gold);
    padding-left: 1rem;
}

.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
    padding: 0 5%;
    margin-bottom: 4rem;
}

.movie-card {
    background: var(--card-bg);
    border: 1px solid transparent;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.movie-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.movie-card img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    transition: 0.5s;
}

.movie-card:hover img {
    transform: scale(1.1);
}

.movie-info {
    padding: 1rem;
    text-align: center;
}

.movie-title {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.movie-rating {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

/* 新闻列表 */
.news-container {
    padding: 0 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-card {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.news-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.news-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* 滚动动画 */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* 页脚 */
footer {
    background: #050505;
    padding: 4rem 5%;
    border-top: 1px solid var(--border-color);
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-col h4 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
}

/* 浮动下载按钮 */
.float-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 999;
    text-decoration: none;
    transition: 0.3s;
}

.float-btn:hover {
    transform: scale(1.1);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
}
