* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    color: #ffffff;
    min-height: 100vh;
}

/* Global Container Styles */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: auto;
    width: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 0;
}

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 4rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 0 3rem;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 0.9;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 3rem;
}

.modal-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    max-width: 900px;
    width: 100%;
    position: relative;
    animation: modalFadeIn 0.3s ease;
    padding: 0;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: #ffffff;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-modal:hover {
    transform: rotate(90deg);
}

.modal-body {
    display: flex;
    gap: 4rem;
    padding: 4rem;
}

.modal-body img {
    width: 400px;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease;
}

.modal-body img:hover {
    transform: scale(1.02);
}

.movie-info {
    flex: 1;
}

.movie-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.movie-details {
    margin-bottom: 1.5rem;
}

.movie-details p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.movie-details i {
    color: #ffd700;
}

.movie-description {
    line-height: 1.6;
    opacity: 0.9;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    position: relative;
    padding: 4rem 0 0;
    margin-top: 4rem;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    position: relative;
}

.footer-section {
    position: relative;
    padding: 0;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: #ffd700;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.footer-section:hover h3::after {
    width: 100%;
}

.footer-section p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-section ul li a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
    transform: translateX(20px);
}

.footer-section ul li a:hover::before {
    opacity: 1;
    left: -25px;
}

.social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.2rem;
}

.social-links a {
    color: #ffffff;
    font-size: 1.2rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-5px);
    background: #ffd700;
    color: #1a1a1a;
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: #ffd700;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Movies Section */
.movies-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    text-align: center;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.movies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 3rem 0;
}

.movie-card {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    backdrop-filter: blur(5px);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    padding: 0;
}

.movie-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.movie-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.movie-card:hover img {
    transform: scale(1.1);
}

.movie-card h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 500;
    color: #ffffff;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.7) 50%,
            transparent 100%);
    margin: 0;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.movie-card:hover h3 {
    transform: translateY(-10px);
}

/* Video Frame Section Styles */
.video-frame-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

#main-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-content {
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-title {
    font-size: 5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.video-subtitle {
    font-size: 2rem;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 3rem;
    font-weight: 300;
}

.video-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-10px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 0.9;
}

/* Movie Slider Styles */
.movie-slider-container {
    width: 100%;
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.movie-slider {
    position: relative;
    padding: 2rem 0;
}

.swiper-slide {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.swiper-slide:hover {
    transform: translateY(-10px);
}

.swiper-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.swiper-slide:hover img {
    transform: scale(1.05);
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.7) 50%,
            transparent 100%);
    color: #ffffff;
}

.slide-content h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Swiper Navigation Styles */
.swiper-button-next,
.swiper-button-prev {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ffffff;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #ffd700;
    transform: scale(1.2);
}

/* Media Queries for Slider */
@media (max-width: 768px) {
    .nav-content {
        padding: 0 2.5rem;
    }

    .nav-links a {
        margin-left: 1rem;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .hero-section {
        height: 100vh;
    }

    .modal-body {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .modal-body img {
        width: 260px;
        height: 390px;
        margin-bottom: 1.5rem;
    }

    .movie-details {
        justify-content: center;
    }

    .movies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }

    .movie-card img {
        height: 400px;
    }

    .movie-card h3 {
        padding: 1.2rem;
        font-size: 1.2rem;
    }

    .video-title {
        font-size: 3.5rem;
    }

    .video-subtitle {
        font-size: 1.5rem;
    }

    .video-stats {
        gap: 2rem;
    }

    .stat {
        padding: 0.8rem 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .movie-slider-container {
        padding: 0 1rem;
    }

    .swiper-slide img {
        height: 300px;
    }

    .slide-content h3 {
        font-size: 1rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 30px;
        height: 30px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-links {
        display: none;
    }

    .main-title {
        font-size: 2rem;
    }

    .hero-content {
        padding: 2rem;
        margin: 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .container {
        padding: 0 1rem;
    }

    .movies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .video-title {
        font-size: 2.5rem;
    }

    .video-subtitle {
        font-size: 1.2rem;
    }

    .video-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .movie-slider-container {
        padding: 0 0.5rem;
    }

    .swiper-slide img {
        height: 250px;
    }

    .slide-content {
        padding: 1rem;
    }

    .slide-content h3 {
        font-size: 0.9rem;
    }
}

/* Home Section with Fullscreen Slider */
.home-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.fullscreen-slider {
    width: 100%;
    height: 100vh;
}

.fullscreen-slider .swiper-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.fullscreen-slider .swiper-slide img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
    transition: transform 8s ease;
    filter: brightness(0.9);
}

.fullscreen-slider .swiper-slide-active img {
    transform: scale(1);
}

.fullscreen-slider .slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 6rem 4rem 4rem;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.8) 30%,
            rgba(0, 0, 0, 0.4) 60%,
            transparent 100%);
    transform: translateY(0);
    opacity: 1;
    z-index: 2;
}

.fullscreen-slider .slide-content h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #ffffff;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease forwards;
    animation-delay: 0.3s;
}

.fullscreen-slider .slide-content p {
    font-size: 1.8rem;
    opacity: 0.9;
    max-width: 800px;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease forwards;
    animation-delay: 0.5s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Swiper Navigation Styles */
.fullscreen-slider .swiper-button-next,
.fullscreen-slider .swiper-button-prev {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.5);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.fullscreen-slider .swiper-button-next:after,
.fullscreen-slider .swiper-button-prev:after {
    font-size: 1.8rem;
}

.fullscreen-slider .swiper-button-next:hover,
.fullscreen-slider .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.fullscreen-slider .swiper-pagination {
    bottom: 2rem !important;
}

.fullscreen-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ffffff;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.fullscreen-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: #ffd700;
    transform: scale(1.2);
}

/* Responsive Styles for Home Section */
@media (max-width: 1200px) {
    .fullscreen-slider .slide-content h2 {
        font-size: 3.5rem;
    }

    .fullscreen-slider .slide-content p {
        font-size: 1.6rem;
    }
}

@media (max-width: 992px) {
    .fullscreen-slider .slide-content {
        padding: 4rem 3rem 3rem;
    }

    .fullscreen-slider .slide-content h2 {
        font-size: 3rem;
    }

    .fullscreen-slider .slide-content p {
        font-size: 1.4rem;
    }

    .fullscreen-slider .swiper-button-next,
    .fullscreen-slider .swiper-button-prev {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .fullscreen-slider .slide-content {
        padding: 3rem 2rem 2rem;
    }

    .fullscreen-slider .slide-content h2 {
        font-size: 2.5rem;
    }

    .fullscreen-slider .slide-content p {
        font-size: 1.2rem;
    }

    .fullscreen-slider .swiper-button-next,
    .fullscreen-slider .swiper-button-prev {
        width: 45px;
        height: 45px;
    }

    .fullscreen-slider .swiper-button-next:after,
    .fullscreen-slider .swiper-button-prev:after {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .fullscreen-slider .slide-content {
        padding: 2rem 1.5rem 1.5rem;
    }

    .fullscreen-slider .slide-content h2 {
        font-size: 2rem;
    }

    .fullscreen-slider .slide-content p {
        font-size: 1.1rem;
    }

    .fullscreen-slider .swiper-button-next,
    .fullscreen-slider .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .fullscreen-slider .swiper-button-next:after,
    .fullscreen-slider .swiper-button-prev:after {
        font-size: 1.2rem;
    }
}

/* About Section Styles */
.about-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-header {
    padding: 2.5rem;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.card-header i {
    font-size: 1.5rem;
    color: #ffd700;
}

.card-header h2 {
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0;
}

.card-content {
    padding: 2.5rem;
}

.info-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
}

.label {
    font-size: 0.9rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.value {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.4;
}

/* Awards List Styles */
.awards-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.award-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.award-item:hover {
    transform: translateX(10px);
}

.award-item .year {
    min-width: 60px;
    margin: 0;
}

.award-item .award {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .card-header {
        padding: 1.5rem;
    }

    .card-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 4rem 0;
    }

    .card-header h2 {
        font-size: 1.3rem;
    }

    .value {
        font-size: 1rem;
    }

    .award-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .award-item .year {
        min-width: auto;
    }
}

/* Video Section Styles */
.video-section {
    padding: 0;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.1;
    z-index: 1;
}

.video-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.video-section .section-title {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    margin-bottom: 0.5rem;
    text-align: center;
}

.video-section .section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    text-align: center;
}

.video-section .section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

.video-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 120px);
    max-width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    padding: 0;
}

.video-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Responsive Styles for Video Section */
@media (max-width: 768px) {
    .video-section {
        height: 100vh;
    }

    .video-section .section-title {
        font-size: 2rem;
    }

    .video-container {
        height: calc(100vh - 80px);
    }
}

@media (max-width: 480px) {
    .video-section {
        height: 100vh;
    }

    .video-section .section-title {
        font-size: 1.8rem;
    }

    .video-section .section-subtitle {
        font-size: 1rem;
    }

    .video-container {
        height: calc(100vh - 70px);
    }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .container {
        padding: 0 2.5rem;
    }

    .nav-content {
        padding: 0 2.5rem;
    }

    .hero-content {
        padding: 3.5rem;
        margin: 0 2.5rem;
    }

    .movies-section,
    .about-section {
        padding: 6rem 0;
    }

    .modal-body {
        padding: 3.5rem;
        gap: 3.5rem;
    }

    .movies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .movie-card img {
        height: 500px;
    }

    .modal-body img {
        width: 350px;
        height: 525px;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 2rem;
    }

    .nav-content {
        padding: 0 2rem;
    }

    .hero-content {
        padding: 3rem;
        margin: 0 2rem;
    }

    .movies-section,
    .about-section {
        padding: 5rem 0;
    }

    .footer {
        padding: 3.5rem 0 0;
        margin-top: 3.5rem;
    }

    .footer-content {
        padding: 0 2rem;
        gap: 2.5rem;
    }

    .movies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }

    .movie-card img {
        height: 450px;
    }

    .movie-card h3 {
        padding: 1.5rem;
        font-size: 1.3rem;
    }

    .modal-body {
        padding: 3rem;
        gap: 3rem;
    }

    .modal-body img {
        width: 300px;
        height: 450px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-content {
        padding: 0 1.5rem;
    }

    .hero-content {
        padding: 2.5rem;
        margin: 0 1.5rem;
    }

    .movies-section,
    .about-section {
        padding: 4rem 0;
    }

    .movies-grid {
        padding: 2rem 0;
        gap: 2rem;
    }

    .card-header,
    .card-content {
        padding: 2rem;
    }

    .footer {
        padding: 2.5rem 0 0;
        margin-top: 2.5rem;
    }

    .footer-content {
        padding: 0 1.5rem;
        gap: 2rem;
    }

    .modal-body {
        padding: 2rem;
        gap: 2rem;
    }

    .modal-body img {
        width: 280px;
        height: 420px;
    }
}

@media (max-width: 576px) {
    .movies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .movie-card img {
        height: 450px;
    }

    .movie-card h3 {
        padding: 1.5rem;
        font-size: 1.3rem;
    }

    .modal-body img {
        width: 260px;
        height: 390px;
    }
}