body {
    background-color: #000;
    color: #f8f9fa;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.navbar-brand {
    font-size: 1.6rem;
    letter-spacing: 0.08em;
}

.hero-banner {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    min-height: 360px;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
}

.movie-row-title {
    font-size: 1.1rem;
}

.movie-card {
    border: none;
    background: transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-card img {
    border-radius: 0.5rem;
    object-fit: cover;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.movie-card:hover {
    transform: scale(1.06);
    z-index: 2;
}

.movie-card-title {
    font-size: 0.9rem;
    margin-top: 0.35rem;
}

.badge-genre {
    font-size: 0.7rem;
}

.form-control,
.form-select {
    background-color: #111;
    border-color: #444;
    color: #f8f9fa;
}

.form-control:focus,
.form-select:focus {
    background-color: #111;
    border-color: #e50914;
    box-shadow: 0 0 0 0.2rem rgba(229, 9, 20, 0.25);
    color: #fff;
}

.card-dark {
    background-color: #111;
    border-color: #2b2b2b;
}

.btn-netflix {
    background: #e50914;
    border-color: #e50914;
    color: #fff;
}

.btn-netflix:hover {
    background: #f6121d;
    border-color: #f6121d;
    color: #fff;
}

.text-muted-soft {
    color: #a0a0a0 !important;
}

.section-divider {
    border-top: 1px solid #2b2b2b;
}

