/* ============================================
   Prospwhisp - CINEMATIC STREAMING PLATFORM
   ============================================ */

/* CSS Variables */
:root {
    --primary-bg: #181c23;
    --secondary-bg: #292e38;
    --dark-bg: #2f3541;
    --accent-red: #dd163b;
    --text-primary: #f8f9fa;
    --text-secondary: #b8bcc4;
    --hover-overlay: rgba(221, 22, 59, 0.15);
    --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Helvetica Neue', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--text-primary);
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Header Styles */
.main-header {
    background: linear-gradient(180deg, rgba(24, 28, 35, 0.95) 0%, rgba(24, 28, 35, 0) 100%);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.main-header.scrolled {
    background: var(--primary-bg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 3px;
    color: var(--accent-red) !important;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    letter-spacing: 5px;
    text-shadow: 0 0 20px rgba(221, 22, 59, 0.5);
}

.navbar-nav .nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    margin: 0 1rem;
    position: relative;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

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

.navbar-nav .nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.navbar-toggler {
    border: 2px solid var(--accent-red);
    background: transparent;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23dd163b' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Slider with Static Content */
.hero-slider {
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-slider .carousel-item {
    height: 95vh;
    min-height: 500px;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease-in-out;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(24, 28, 35, 0.95) 0%, rgba(24, 28, 35, 0.3) 100%);
    z-index: 1;
}

/* Static Content Overlay */
.hero-static-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.hero-static-content .container {
    pointer-events: none;
}

.hero-static-content .btn {
    pointer-events: all;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.9);
    color: var(--text-primary);
    line-height: 1.1;
}

.hero-year {
    display: inline-block;
    color: var(--accent-red);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Carousel Controls */
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(221, 22, 59, 0.8);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 15;
}

.hero-slider:hover .carousel-control-prev,
.hero-slider:hover .carousel-control-next {
    opacity: 1;
}

.hero-slider .carousel-control-prev {
    left: 20px;
}

.hero-slider .carousel-control-next {
    right: 20px;
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
    background: var(--accent-red);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider .carousel-indicators {
    bottom: 30px;
    z-index: 15;
}

.hero-slider .carousel-indicators button {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.hero-slider .carousel-indicators button.active {
    background-color: var(--accent-red);
    border-color: var(--accent-red);
    transform: scale(1.2);
}

/* Buttons */
.btn-primary-custom {
    background: var(--accent-red);
    color: var(--text-primary);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.btn-primary-custom:hover::before {
    width: 300%;
    height: 300%;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(221, 22, 59, 0.4);
}

.btn-dark-custom {
    background: var(--dark-bg);
    color: var(--text-primary);
    padding: 12px 35px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--dark-bg);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.btn-dark-custom:hover {
    background: transparent;
    border-color: var(--accent-red);
    color: var(--accent-red);
    transform: translateY(-2px);
}

/* Section Styles */
.content-section {
    padding: 80px 0;
    position: relative;
}

.content-section:nth-child(odd) {
    background-color: var(--primary-bg);
}

.content-section:nth-child(even) {
    background-color: var(--secondary-bg);
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 4px;
    background: var(--accent-red);
}

.popular-movies-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.popular-movies-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(24, 28, 35, 0.85);
    z-index: 0;
}


.popular-movies-section .container {
    position: relative;
    z-index: 1;
}

/* Movie Cards - Grid Layout */
.movies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 2rem;
}

.movie-card {
    position: relative;
    overflow: hidden;
    background: var(--dark-bg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.movie-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(221, 22, 59, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.movie-card:hover::before {
    opacity: 1;
}

.movie-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(221, 22, 59, 0.2);
}

.movie-poster {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.movie-card:hover .movie-poster {
    transform: scale(1.1);
}

.movie-info {
    padding: 20px;
    position: relative;
    z-index: 2;
}

.movie-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.movie-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.movie-rating {
    color: var(--accent-red);
    font-weight: 600;
}

.movie-rating i {
    color: var(--accent-red);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 80px;
    height: 80px;
    background: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 3;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.movie-card:hover .play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.play-overlay i {
    font-size: 2rem;
    color: var(--text-primary);
    margin-left: 5px;
}

/* Horizontal Scroll Section */
.horizontal-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-red) var(--dark-bg);
}

.horizontal-scroll-wrapper::-webkit-scrollbar {
    height: 8px;
}

.horizontal-scroll-wrapper::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

.horizontal-scroll-wrapper::-webkit-scrollbar-thumb {
    background: var(--accent-red);
}

.horizontal-cards {
    display: inline-flex;
    gap: 20px;
}

.horizontal-card {
    display: inline-block;
    width: 220px;
    white-space: normal;
    vertical-align: top;
}

.horizontal-card .movie-poster {
    height: 300px;
}

/* Series Grid - Clean and Readable */
.series-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 2rem;
}

.series-card {
    position: relative;
    overflow: hidden;
    background: var(--dark-bg);
    transition: all 0.3s ease;
    cursor: pointer;
}

.series-card .movie-poster {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.series-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(221, 22, 59, 0.3);
}

.series-card:hover .movie-poster {
    transform: scale(1.08);
}

/* Featured Section */
.featured-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 2rem;
}

.featured-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.featured-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(24, 28, 35, 0.7);
    z-index: 1;
    opacity: 1 !important;
}

.featured-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    width: 100%;
}

.featured-card:hover .featured-content h3 {
    color: var(--accent-red);
}

/* Trailer Cards */
.trailer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.trailer-card {
    position: relative;
    height: 180px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.trailer-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.trailer-card:hover::before {
    background: rgba(221, 22, 59, 0.3);
}

.trailer-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(221, 22, 59, 0.3);
}

.trailer-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.trailer-card:hover .trailer-play-btn {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 0 30px rgba(221, 22, 59, 0.6);
}

.trailer-info {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 2;
}

.trailer-info h4 {
    font-size: 1.2rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(24, 28, 35, 0.85);
}

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

.cta-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.main-footer {
    background: var(--dark-bg);
    padding: 60px 0 30px;
    border-top: 3px solid var(--accent-red);
}

.footer-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 3px;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-red);
    transform: translateX(5px);
}

.footer-contact-info {
    color: var(--text-secondary);
    line-height: 2;
}

.footer-contact-info i {
    color: var(--accent-red);
    margin-right: 10px;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: var(--text-secondary);
}

/* Modal Styles */
.modal-content {
    background: var(--secondary-bg);
    border: 2px solid var(--accent-red);
}

.modal-header {
    border-bottom: 2px solid var(--accent-red);
}

.modal-title {
    color: var(--text-primary);
}

.btn-close {
    filter: invert(1);
}

/* Pricing Modal */
.pricing-card {
    background: var(--dark-bg);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    border-color: var(--accent-red);
    transform: translateY(-10px);
}

.pricing-card.featured {
    background: var(--accent-red);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.price-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 3rem;
    color: var(--accent-red);
    margin-bottom: 1.5rem;
}

.pricing-card.featured .price-amount {
    color: var(--text-primary);
}

.price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-features li:last-child {
    border-bottom: none;
}

/* Registration Form */
.form-control {
    background: var(--dark-bg);
    border: 2px solid transparent;
    color: var(--text-primary);
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: var(--dark-bg);
    border-color: var(--accent-red);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.2rem rgba(221, 22, 59, 0.25);
}

.form-label {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.invalid-feedback {
    color: var(--accent-red);
}

/* About Page */
.about-hero {
    padding: 150px 0 80px;
    background: var(--secondary-bg);
    text-align: center;
}

.about-content {
    padding: 80px 0;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.value-card {
    background: var(--dark-bg);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(221, 22, 59, 0.2);
}

.value-icon {
    font-size: 3rem;
    color: var(--accent-red);
    margin-bottom: 1.5rem;
}

/* Team Page */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 3rem;
}

.team-member {
    background: var(--dark-bg);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(221, 22, 59, 0.2);
}

.team-role {
    color: var(--accent-red);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.team-quote {
    font-style: italic;
    color: var(--text-secondary);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--accent-red);
}

/* Contact Page */
.contact-section {
    padding: 150px 0 80px;
}

.contact-info-card {
    background: var(--dark-bg);
    padding: 40px;
    margin-bottom: 30px;
    height: 100%;
    min-height: 220px;
    display: flex;
    flex-direction: column;
}

.contact-info-card i {
    color: var(--accent-red);
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* FAQ Page */
.faq-section {
    padding: 150px 0 80px;
}

.accordion-item {
    background: var(--dark-bg);
    border: 2px solid transparent;
    margin-bottom: 15px;
}

.accordion-item:hover {
    border-color: var(--accent-red);
}

.accordion-button {
    background: var(--dark-bg);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background: var(--accent-red);
    color: var(--text-primary);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--accent-red);
}

.accordion-body {
    background: var(--secondary-bg);
    color: var(--text-secondary);
}

/* Legal Pages */
.legal-page {
    padding: 150px 0 80px;
}

.legal-content {
    background: var(--secondary-bg);
    padding: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    color: var(--accent-red);
    margin-top: 2rem;
}

.legal-content h3 {
    margin-top: 1.5rem;
}

.legal-content ul,
.legal-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.legal-content a {
    color: var(--accent-red);
    word-wrap: break-word;
    word-break: break-all;
    overflow-wrap: break-word;
    display: inline-block;
    max-width: 100%;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 20px 0;
}

.table-responsive table {
    min-width: 650px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

[data-scroll] {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

[data-scroll].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading State */
.loading-spinner {
    border: 4px solid var(--dark-bg);
    border-top: 4px solid var(--accent-red);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 991px) {
    h1 {
        font-size: 3rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-content {
        max-width: 550px;
    }
    
    .hero-slider .carousel-item {
        height: 65vh;
        min-height: 450px;
    }
    
    .featured-section {
        grid-template-columns: 1fr;
    }
    
    .navbar-nav .nav-link {
        margin: 0.5rem 0;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-slider .carousel-item {
        height: 60vh;
        min-height: 450px;
    }
    
    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .hero-slider .carousel-control-prev {
        left: 10px;
    }
    
    .hero-slider .carousel-control-next {
        right: 10px;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .movies-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }
    
    .movie-poster {
        height: 240px;
    }
    
    .series-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }
    
    .series-card .movie-poster {
        height: 240px;
    }
    
    .horizontal-card {
        width: 180px;
    }
    
    .horizontal-card .movie-poster {
        height: 260px;
    }
    
    .trailer-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-content {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-year {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .hero-slider .carousel-item {
        height: 55vh;
        min-height: 400px;
    }
    
    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .hero-slider .carousel-indicators {
        bottom: 15px;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .movies-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }
    
    .movie-poster {
        height: 200px;
    }
    
    .series-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }
    
    .series-card .movie-poster {
        height: 200px;
    }
    
    .horizontal-card {
        width: 150px;
    }
    
    .horizontal-card .movie-poster {
        height: 220px;
    }
    
    .content-section {
        padding: 50px 0;
    }
    
    .about-values,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-primary-custom,
    .btn-dark-custom {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}
