body {
    margin: 0;
    padding: 0;
    background-color: #141414;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #000000;
}

.logo {
    color: #E50914;
    font-size: 20px;
    font-weight: bold;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 15px;
    font-size: 12px;
}

.hero-banner {
    height: 180px;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.2)), url('../images/drishtam2.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-left: 30px;
}

.hero-text {
    font-size: 24px;
    font-weight: bold;
}

.content {
    padding: 20px 30px;
}

.movie-section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 14px;
    margin-bottom: 15px;
}

.movie-grid {
    display: flex;
    gap: 15px;
}

.movie-card {
    position: relative;
    width: 110px;
    height: 160px;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.movie-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.movie-card:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.badge-hot {
    position: absolute;
    top: 5px;
    left: 5px;
    background-color: #E50914;
    color: white;
    font-size: 9px;
    font-weight: bold;
    padding: 2px 4px;
    border-radius: 2px;
}