* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Arial", sans-serif;
            background-color: #000;
            color: #fff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-link {
            color: #ccc;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-link:hover,
        .nav-link.active {
            color: #ff4444;
        }

        .nav-link.active::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #ff4444;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .bar {
            width: 25px;
            height: 3px;
            background-color: #fff;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Filmography Page */
        .filmography-page {
            padding: 120px 0 80px;
            background-color: #000;
            min-height: 100vh;
        }

        .filmography-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .movie-card {
            background-color: #111;
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 3rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .movie-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(255, 68, 68, 0.1);
        }

        .movie-poster {
            border-radius: 15px;
            overflow: hidden;
        }

        .movie-poster img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s ease;
        }

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

        .movie-info h2 {
            font-size: 2.5rem;
            color: #fff;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        .movie-date {
            color: #4CAF50;
            font-size: 1rem;
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .movie-description {
            color: #ccc;
            line-height: 1.8;
            margin-bottom: 2rem;
            font-size: 1rem;
        }

        .movie-description p {
            margin-bottom: 1rem;
        }

        .movie-description strong {
            color: #fff;
        }

        .trailer-btn {
            background-color: #ff4444;
            color: #fff;
            padding: 12px 24px;
            border: none;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
        }

        .trailer-btn:hover {
            background-color: #e63939;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(255, 68, 68, 0.3);
        }

        .trailer-btn i {
            font-size: 1.1rem;
        }

        /* Responsive Design */
        @media screen and (max-width: 768px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: rgba(0, 0, 0, 0.95);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                padding: 2rem 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .hamburger {
                display: flex;
            }

            .hamburger.active .bar:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }

            .hamburger.active .bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }

            .movie-card {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .movie-info h2 {
                font-size: 2rem;
            }

            .filmography-page {
                padding: 100px 0 60px;
            }
        }

        @media screen and (max-width: 480px) {
            .movie-card {
                padding: 1.5rem;
                margin-bottom: 2rem;
            }

            .movie-info h2 {
                font-size: 1.8rem;
            }

            .movie-description {
                font-size: 0.9rem;
            }

            .trailer-btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 768px) {
    .footer-social {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }
}

/* added from gpt */

.filmography-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px;
}

.movie-card {
    display: flex;
    gap: 20px;
    background-color: #202020;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    flex-wrap: wrap;
    align-items: flex-start;
}

.movie-poster {
    width: 240px; /* or whatever size you prefer */
    height: 360px; /* fixed height to maintain poster aspect ratio (2:3) */
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    background: #eee;
    position: relative;
}

.movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* fill the box, cropping if needed */
    display: block;
    border-radius: 8px;
}


.movie-info {
    flex: 1;
    min-width: 250px;
}

.movie-info h2 {
    margin: 0;
    font-size: 1.6rem;
    color: #ffffff;
}

.movie-date {
    font-size: 1rem;
    color: #61c049;
    margin: 8px 0;
    font-weight: bold;
}

.movie-description p {
    margin-bottom: 10px;
    line-height: 1.5;
}

.trailer-btn {
    display: inline-block;
    margin-top: 10px;
    background-color: #cc0000;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.trailer-btn:hover {
    background-color: #a80000;
}
