body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    margin: 0;
    padding: 0;
    color: #f1f1f1;
}

header {
    background-color: #1c1c1c;
    box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.5);
    padding: 10px 0;
}

.navbar-brand {
    font-size: 2.75rem;
    font-weight: bold;
    color: #00bcd4;
    font-family: 'Brush Script MT', cursive;
    text-align: center;
}

section.container {
    margin-top: 30px;
}

.sticky-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: #121212;
    padding: 10px 0;
}

.search-bar input {
    font-size: 1rem;
    padding: 0.75rem;
    background-color: #333;
    border: 1px solid #444;
    color: #fff;
    border-radius: 30px;
    width: 100%;
    max-width: 400px;
    transition: width 0.3s ease;
}

.search-bar input:focus {
    width: 100%;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 188, 212, 0.7);
}

.search-bar {
    display: flex;
    justify-content: center;
}

.search-bar input::placeholder {
    color: #bbb;
}

select.form-select {
    font-size: 1rem;
    padding: 0.75rem;
    background-color: #333;
    border: 1px solid #444;
    color: #fff;
    border-radius: 30px;
    transition: background-color 0.3s ease;
    width: auto;
    margin-right: 15px;
}

select.form-select:focus {
    background-color: #00bcd4;
    color: #121212;
    outline: none;
}

form {
    display: inline-block;
    margin-right: 15px;
}

.pagination {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.page-item .page-link {
    color: #f1f1f1;
    background-color: #1c1c1c;
    padding: 8px 15px;
    border-radius: 50%;
    margin: 0 5px;
}

.page-item.active .page-link {
    background-color: #00bcd4;
    color: #fff;
}

.page-link:hover {
    background-color: #444;
    color: #fff;
}

.card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    background-color: #2c2c2c;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid #444;
}

.card-body {
    background-color: #333;
    padding: 15px;
    color: #f1f1f1;
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #00bcd4;
}

.card-text {
    font-size: 0.9rem;
    color: #bbb;
}

.card-body .btn {
    background-color: #00bcd4;
    color: #fff;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.card-body .btn:hover {
    background-color: #0097a7;
}

.actor-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.actor-container img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 15px;
}

.actor-container p {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
}

.actor-character {
    font-size: 12px;
    color: #adb5bd;
}

.actor-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.poster {
    max-width: 300px;
    margin-right: 20px;
}

.content {
    margin-top: 20px;
}

.mt-4 {
    margin-top: 20px;
}

.custom-btn {
    background-color: #007bff;
    color: white;
    border-radius: 25px;
    padding: 8px 20px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.custom-btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.custom-btn:focus {
    outline: none;
}

.custom-btn.disabled {
    background-color: #ccc;
    color: #666;
}

.page-item.active .page-link {
    background-color:
    color:
    border-color: #00bcd4;
}

.page-item .page-link {
    border: 1px solid #ddd;
}


footer {
    background-color: #1c1c1c;
    color: #f8f9fa;
    font-size: 0.9rem;
    padding: 15px 0;
    text-align: center;
}

footer p {
    margin: 0;
}

@media (max-width: 768px) {
    .row-cols-1 .col {
        margin-bottom: 15px;
    }
    .search-bar input {
        width: 80%;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.5rem;
    }
    .search-bar input {
        width: 100%;
    }
}

