* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
        }

        body {
            background-color: #141414; /* Nền đen đặc trưng của Netflix */
            color: #ffffff;
            padding-bottom: 50px;
        }

        /* --- HEADER NAVBAR --- */
        header {
            background-color: #000000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 40px;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .logo {
            color: #e50914; /* Màu đỏ Netflix */
            font-size: 24px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        nav a {
            color: #e5e5e5;
            text-decoration: none;
            margin-left: 20px;
            font-size: 14px;
            transition: color 0.2s;
        }

        nav a:hover {
            color: #b3b3b3;
        }

        /* --- LARGE BANNER --- */
        .hero-banner {
            width: 100%;
            height: 300px;
            /* Tạo hiệu ứng giả lập cuộn phim xám cũ như hình mẫu */
            background: linear-gradient(rgba(0,0,0,0.2), rgba(20,20,20,1)), 
                        url('https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?q=80&w=1200') no-repeat center center;
            background-size: cover;
            display: flex;
            align-items: flex-end;
            padding: 0 40px 30px 40px;
        }

        .hero-banner h1 {
            font-size: 36px;
            font-weight: bold;
            color: #ffffff;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
        }

        /* --- MOVIE SECTION --- */
        .movie-section {
            padding: 20px 40px;
        }

        .section-title {
            font-size: 18px;
            font-weight: bold;
            color: #e5e5e5;
            margin-bottom: 15px;
        }

        .movie-row {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }

        /* --- MOVIE CARD & HOVER EFFECT --- */
        .movie-card {
            width: calc(20% - 12px); /* Chia đều 5 cột trên 1 hàng */
            aspect-ratio: 2 / 3;
            background-color: #2f2f2f;
            border-radius: 4px;
            position: relative;
            cursor: pointer;
            overflow: hidden;
            
            /* Cấu hình các thuộc tính sẽ thay đổi mượt mà khi di chuột vào */
            transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
                        box-shadow 0.3s ease-in-out;
            z-index: 1;
        }

        .movie-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Tag hiệu ứng chữ "HOT" màu đỏ */
        .tag-hot {
            position: absolute;
            top: 8px;
            left: 8px;
            background-color: #e50914;
            color: white;
            font-size: 10px;
            font-weight: bold;
            padding: 2px 6px;
            border-radius: 2px;
            text-transform: uppercase;
            z-index: 2;
        }

        /* YÊU CẦU: Khi di chuyển chuột lên hình, hình to hơn và có bóng */
        .movie-card:hover {
            transform: scale(1.08); /* Phóng to 8% */
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6); /* Đổ bóng mờ đậm */
            z-index: 10; /* Đẩy thẻ đang hover lên trên cùng để không bị che khuất */
        }