body {
    padding-top: 56px; 
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.hero-section {
    background-color: #212529;
    padding: 80px 0;
}

.hero-section h1, .hero-section p {
    color: #fff;
}

/* Slick Slider Custom Styles */
.movie-slider {
    margin: 0 auto;
    max-width: 90%;
}

.movie-slider img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    filter: brightness(0.7);
}

.slick-prev:before, .slick-next:before {
    color: #007bff;
}

.slick-dots li button:before {
    color: #007bff;
}

.slick-dots li.slick-active button:before {
    color: #fff;
}

/* Movie Card Custom Styles */
.movie-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease-in-out;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.movie-card:hover {
    transform: translateY(-5px);
}

.movie-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.movie-card .card-body {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.movie-card .card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: #007bff;
}

.movie-card .card-text {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
}

.movie-card .release-date {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Scroll to Top Button */
#scrollToTopBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    padding: 15px 18px;
    border-radius: 50%;
    font-size: 1.2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
}

#scrollToTopBtn:hover {
    background-color: #0056b3;
}