/* Custom Styles for 影视大全 */
:root {
    --brand-primary: #6366f1;
    --brand-secondary: #a855f7;
    --brand-accent: #f43f5e;
    --brand-dark: #0f172a;
    --brand-card: #1e293b;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--brand-dark);
}

/* Glassmorphism Navigation */
.glass-nav {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

/* Movie Card Effects */
.movie-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.movie-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(99, 102, 241, 0.25);
}

.movie-card img {
    transition: transform 0.6s ease;
}

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

/* Bento Grid Accents */
.bento-card {
    background: var(--brand-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2rem;
    padding: 2rem;
    transition: border-color 0.3s ease;
}

.bento-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--brand-dark);
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 5px;
    border: 2px solid var(--brand-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-primary);
}

/* Typography Accents */
.gradient-text {
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-gradient-text {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section Gradients */
.hero-overlay {
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* Filters Active State */
.filter-btn.active {
    background-color: var(--brand-primary);
    color: white;
    border-color: var(--brand-primary);
}

/* Map Placeholder */
.map-container {
    background: url('https://tse-mm.bing.com/th?q=Map+Dark+Abstract') center/cover;
    position: relative;
}

.map-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
}
