/* Global Styles & Variables */
:root {
    --primary: #C5A059;
    --primary-dark: #A68548;
    --accent: #D4AF37;
    --bg-dark: #121212;
    --bg-black: #000000;
    --bg-card: #1E1E1E;
    --text-white: #E0E0E0;
    --text-gray: #888888;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .font-gold {
    font-family: 'Playfair Display', serif;
}

/* Utils */
.gold-gradient {
    background: linear-gradient(135deg, #C5A059 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gold-gradient {
    background: linear-gradient(135deg, #C5A059 0%, #D4AF37 100%);
}

.text-gold { color: var(--primary); }
.bg-gold { background-color: var(--primary); }
.border-gold { border: 1px solid var(--primary); }

/* Custom Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Scroll Smoothing */
html {
    scroll-behavior: smooth;
}

/* Navigation */
nav {
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Movie Cards */
.movie-card {
    background: var(--bg-card);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.movie-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.1);
}

.movie-poster {
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
}

.movie-poster img {
    width: 100%;
    height: 100%;
    object-cover: cover;
    transition: transform 0.5s ease;
}

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

.movie-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.movie-card:hover .movie-overlay {
    opacity: 1;
}

/* Floating Action Button */
.fab {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 100;
}

.fab-btn {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.3);
    transition: transform 0.2s;
}

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

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #121212; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem !important; }
}
