* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
        }

        body {
            background-color: #141414; 
            color: #ffffff;
            padding-bottom: 50px;
        }

        
        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; 
            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;
        }

        
        .hero-banner {
            width: 100%;
            height: 300px;
            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 {
            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 {
            width: calc(20% - 12px); 
            aspect-ratio: 2 / 3;
            background-color: #2f2f2f;
            border-radius: 4px;
            position: relative;
            cursor: pointer;
            overflow: hidden;
            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-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;
        }

        .movie-card:hover {
            transform: scale(1.08);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6); 
            z-index: 10;
        }