body {
    background-color: #121212;
    color: #e0e0e0;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.movie-card {
    background-color: #1e1e1e;
    border: 1px solid #2c2c2c;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.movie-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.movie-card .card-img-top {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-top-left-radius: calc(0.375rem - 1px);
    border-top-right-radius: calc(0.375rem - 1px);
}

.movie-card .card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.movie-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    flex-grow: 1;
}

.movie-card .director {
    font-size: 0.9rem;
    color: #a0a0a0;
    margin-bottom: 10px;
}

.card-footer {
    background-color: transparent;
    border-top: 1px solid #2c2c2c;
    padding: 0.75rem 1rem;
}

.btn-primary {
    background-color: #e50914;
    border-color: #e50914;
}

.btn-primary:hover {
    background-color: #f40612;
    border-color: #f40612;
}

.video-container {
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
}

.bg-dark-2 {
    background-color: #1e1e1e !important;
}

.comment {
    border-bottom: 1px solid #333;
}

.form-control.bg-dark {
    background-color: #2c2c2c !important;
    border-color: #444;
    color: #fff !important;
}

.form-control.bg-dark::placeholder {
    color: #888;
}

.form-control.bg-dark:focus {
    background-color: #333;
    border-color: #e50914;
    box-shadow: none;
}

/* YENİ: Janr stilləri */
.genres-list {
    padding: 0;
    margin: 0;
}
.genre-tag {
    display: inline-block;
    padding: 3px 8px;
    margin-right: 5px;
    margin-bottom: 5px;
    background-color: #333;
    color: #ccc;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid #555;
}

