:root {
    --primary-color: #1a1a1a;
    --accent-color: #e50914;
    --text-color: #ffffff;
}

body {
    background-color: var(--primary-color);
    color: var(--text-color);
    font-family: 'Arial', sans-serif;
}

/* Navbar Styles */
.navbar {
    background: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 40px;
    margin-right: 10px;
}

.nav-link {
    position: relative;
    padding: 8px 15px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Header Styles */
#header-image {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

#header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

header {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

/* Button Styles */
.btn-primary {
    background-color: var(--accent-color);
    border: none;
    padding: 12px 30px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #ff0f1f;
    transform: scale(1.05);
}

/* Section Styles */
.synopsis {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--primary-color), #2a2a2a);
}

/* Card Styles */
.card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: none;
    transition: all 0.3s ease;
}

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

.card img {
    height: 300px;
    object-fit: cover;
}

/* Trailer Section */
#trailer {
    padding: 100px 0;
    background: #2a2a2a;
}

/* Carousel Styles */
.carousel {
    margin-top: 50px;
}

.carousel-item img {
    height: 500px;
    object-fit: cover;
}

/* Footer Styles */
footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 50px 0;
}

/* Reviews Section */
#reviews .card {
    background: rgba(0, 0, 0, 0.7);
}

#reviews .review-content {
    padding: 20px;
}

/* Upcoming Movies Section */
#upcoming .card {
    background: rgba(0, 0, 0, 0.7);
}

#upcoming .card-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#upcoming .btn-link {
    color: var(--text-color);
    text-decoration: none;
}

#upcoming .btn-link:hover {
    color: var(--accent-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        padding: 20px;
    }
    
    .card {
        margin-bottom: 20px;
    }
}
