        :root {
            --primary-gold: #FFD700;
            --dark-bg: #0a0a0a;
            --card-bg: #1a1a1a;
            --text-light: #e0e0e0;
            --text-gold: #FFD700;
            --accent-red: #dc3545;
            --gradient-gold: linear-gradient(135deg, #FFD700, #FFA500);
            --gradient-dark: linear-gradient(135deg, #1a1a1a, #2a2a2a);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.1;
            overflow-x: hidden;
        }

        /* Header Styles */
        .navbar {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--primary-gold);
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-family: 'Cinzel', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-gold) !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .navbar-nav .nav-link {
            color: var(--text-light) !important;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-gold) !important;
            transform: translateY(-2px);
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background: var(--primary-gold);
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link:hover::after {
            width: 100%;
            left: 0;
        }

        /* Hero Section */
        .hero-section {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23000" width="1200" height="800"/><g fill="%23FFD700" opacity="0.1"><circle cx="200" cy="200" r="50"/><circle cx="800" cy="150" r="30"/><circle cx="1000" cy="300" r="40"/><circle cx="300" cy="500" r="25"/><circle cx="900" cy="600" r="35"/></g></svg>');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            text-align: center;
            z-index: 2;
        }

        .hero-title {
            font-family: 'Cinzel', serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-gold);
            text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease-out;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .btn-gold {
            background: var(--gradient-gold);
            border: none;
            color: var(--dark-bg);
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 7px 20px rgba(255, 215, 0, 0.3);
        }

        .btn-gold:hover {
            transform: translateY(-3px);
            box-shadow: 0 9px 25px rgba(255, 215, 0, 0.5);
            color: var(--dark-bg);
        }

        /* Content Sections */
        .content-section {
            padding: 80px 0;
            position: relative;
        }

        .section-title {
            font-family: 'Cinzel', serif;
            font-size: 3rem;
            color: var(--primary-gold);
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 3px;
            background: var(--gradient-gold);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        /* Movie Cards */
        .movie-card {
            background: var(--gradient-dark);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
            height: 100%;
        }

        .movie-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
        }

        .movie-poster {
            height: 300px;
            background: linear-gradient(45deg, #333, #555);
            position: relative;
            text-align: center;
            margin: 0px;
            padding: 0px;
            overflow: hidden;
        }
        .movie-img {
            max-height: 100%;
            margin:0px;
            padding: 0px;
        }
        .movie-poster::before {
            content: '🎬';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 3rem;
            opacity: 0.3;
        }

        .movie-info {
            padding: 20px;
        }

        .movie-title {
            font-family: 'Cinzel', serif;
            font-size: 1.3rem;
            color: var(--primary-gold);
            margin-bottom: 10px;
        }

        .movie-rating {
            color: var(--primary-gold);
            margin-bottom: 10px;
        }

        .movie-description {
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        /* News Cards */
        .news-card {
            background: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
            margin-bottom: 30px;
        }

        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
        }

        .news-image {
            height: 200px;
            background: linear-gradient(45deg, #444, #666);
            position: relative;
        }

        .news-image::before {
            content: '📰';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 2rem;
            opacity: 0.5;
        }

        .news-content {
            padding: 20px;
        }

        .news-title {
            font-size: 1.2rem;
            color: var(--primary-gold);
            margin-bottom: 10px;
        }

        .news-meta {
            color: #888;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        /* Login/Signup Modal */
        .modal-content {
            background: var(--card-bg);
            border: 2px solid var(--primary-gold);
            border-radius: 15px;
        }

        .modal-header {
            border-bottom: 1px solid var(--primary-gold);
        }

        .modal-title {
            font-family: 'Cinzel', serif;
            color: var(--primary-gold);
        }

        .form-control {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,215,0,0.3);
            color: var(--text-light);
            border-radius: 8px;
        }

        .form-control:focus {
            background: rgba(255,255,255,0.15);
            border-color: var(--primary-gold);
            box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
            color: var(--text-light);
        }

        .form-control::placeholder {
            color: rgba(224, 224, 224, 0.6);
        }

        /* Footer */
        .footer {
            background: var(--dark-bg);
            border-top: 2px solid var(--primary-gold);
            padding: 40px 0 20px;
        }

        .footer-title {
            font-family: 'Cinzel', serif;
            color: var(--primary-gold);
            margin-bottom: 20px;
        }

        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-gold);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0.8s ease-out;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .navbar-brand {
                font-size: 1.5rem;
            }
        }

        /* Star Rating */
        .star-rating {
            color: var(--primary-gold);
        }

        /* Status Messages */
        .alert-custom {
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid var(--primary-gold);
            color: var(--text-light);
            border-radius: 8px;
        }

        /* Loading Spinner */
        .spinner {
            border: 3px solid rgba(255, 215, 0, 0.3);
            border-top: 3px solid var(--primary-gold);
            border-radius: 50%;
            width: 30px;
            height: 30px;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
