body {
    font-family: Arial, sans-serif;
    background-color: #141414;
    color: white;
    margin: 0;
    padding-bottom: 5px;
}
.header {
    display: flex;
    justify-content: space-between;
    padding: 20px 4%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
}
.logo { color: #e50914; font-size: 24px; font-weight: bold; }
.nav a { color: #e5e5e5; text-decoration: none; margin-left: 20px; font-size: 14px; }
.hero {
    height: 300px;
    background: linear-gradient(to top, #141414, transparent), url(../images/movie-banner.jpg) center/cover;
    display: flex;
    align-items: flex-end;
    padding: 0 4% 20px;
    font-size: 32px;
    font-weight: bold;
}
.main-content { padding: 0 4%; }
.section-title { font-size: 18px; margin-top: 30px; display: flex; align-items: center; gap: 10px;}
.hot-tag { background: red; font-size: 12px; padding: 2px 6px; border-radius: 3px; }
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 15px;
}
.movie-card {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.movie-card img { width: 100%; height: 240px; object-fit: cover; border-radius: 4px; }
.movie-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255,255,255,0.2);
}
.title { padding: 8px 0; font-size: 14px; text-align: center; }
