/*
  蜜瓜电影网 - 核心样式表
  风格：淡黑金 (Premium Black Gold)
*/

@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
    --gold: #D4AF37;
    --gold-dark: #B8860B;
    --black-bg: #0F0F0F;
    --soft-black: #1A1A1A;
    --text-main: #E5E5E5;
    --text-muted: #A3A3A3;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black-bg);
    color: var(--text-main);
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* 导航栏 */
.nav-glass {
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

/* 渐变文本 */
.text-gold-gradient {
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 按钮样式 */
.btn-gold {
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #B8860B 100%);
    color: #000;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* 电影博卡片 */
.movie-card {
    background: var(--soft-black);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

/* 浮动下载按钮 */
.floating-download {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* 响应式网格 */
.grid-auto-fill {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 24px;
}

@media (max-width: 640px) {
    .grid-auto-fill {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 16px;
    }
}
