* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #141414;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    height: 70px;

    display: flex;
    align-items: center;

    padding: 0 50px;

    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 100;

    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.9),
        transparent
    );
}

.logo {
    color: #e50914;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-right: 45px;
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.nav-menu a:hover {
    color: #b3b3b3;
}

.profile {
    margin-left: auto;
    font-size: 20px;
    display: flex;
    gap: 12px;
}


/* =========================
   HERO
========================= */

.hero {
    height: 85vh;
    min-height: 650px;

    background-image:
        linear-gradient(
            to right,
            #141414 0%,
            rgba(20, 20, 20, 0.85) 20%,
            rgba(20, 20, 20, 0.35) 55%,
            rgba(20, 20, 20, 0.1) 75%
        ),
        linear-gradient(
            to top,
            #141414 0%,
            rgba(20, 20, 20, 0.5) 15%,
            transparent 45%
        ),
        url("callmebyyournamejsean.jpg");

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;

    padding-left: 60px;
}

.hero-content {
    width: 520px;
    margin-top: 80px;
}

.hero-label {
    font-size: 14px;
    font-weight: bold;
    color: #e5e5e5;

    margin-bottom: 15px;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: 58px;
    font-weight: 700;
    line-height: 1.05;

    margin-bottom: 20px;
}

.hero-meta {
    display: flex;
    gap: 15px;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 18px;

    color: #d2d2d2;
}

.hero-description {
    font-size: 17px;
    line-height: 1.5;

    color: #e5e5e5;

    margin-bottom: 25px;
}


/* =========================
   BUTTONS
========================= */

.buttons {
    display: flex;
    gap: 10px;
}

.buttons button {
    border: none;

    padding: 12px 24px;

    border-radius: 4px;

    font-size: 16px;
    font-weight: bold;

    cursor: pointer;
}

.play-button {
    background: white;
    color: black;
}

.play-button:hover {
    background: #d9d9d9;
}

.info-button {
    background: rgba(109, 109, 110, 0.7);
    color: white;
}

.info-button:hover {
    background: rgba(109, 109, 110, 0.5);
}


/* =========================
   MOVIE SECTION
========================= */

.movie-section {
    padding: 0 50px 50px;

    margin-top: -80px;

    position: relative;
    z-index: 2;
}

.movie-section h2 {
    font-size: 22px;

    margin-bottom: 18px;
}


/* =========================
   MOVIE ROW
========================= */

.movie-row {
    display: flex;

    flex-direction: row;
    flex-wrap: nowrap;

    gap: 15px;

    overflow-x: auto;

    padding: 10px 0 30px;
}

.movie-row::-webkit-scrollbar {
    display: none;
}


/* =========================
   MOVIE CARD
========================= */

.movie-card {
    position: relative;

    flex: 0 0 220px;

    width: 220px;
    height: 330px;

    border-radius: 6px;

    overflow: hidden;

    cursor: pointer;

    transition: transform 0.3s ease;
}

.movie-card img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.movie-card:hover {
    transform: scale(1.08);
}


/* =========================
   MOVIE INFO
========================= */

.movie-info {
    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;

    padding: 40px 15px 15px;

    background: linear-gradient(
        transparent,
        rgba(0, 0, 0, 0.9)
    );

    opacity: 0;

    transition: opacity 0.3s ease;
}

.movie-card:hover .movie-info {
    opacity: 1;
}

.movie-info h3 {
    font-size: 18px;

    margin-bottom: 6px;
}

.movie-info p {
    font-size: 12px;
    color: #ccc;
}


/* =========================
   FOOTER
========================= */

.footer {
    padding: 40px 50px;

    color: #777;

    font-size: 13px;
}

body {
    background: red !important;
}


.video-player {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.video-player.active {
    display: flex;
}

.video-player video {
    width: 90%;
    max-width: 1000px;
    max-height: 85%;
}

.close-video {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 10000;
}

.info-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9998;
    justify-content: center;
    align-items: center;
}

.info-popup.active {
    display: flex;
}

.info-content {
    position: relative;
    width: 80%;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;

    background: #181818;
    color: white;

    padding: 40px;
    border-radius: 8px;

    box-sizing: border-box;
}

.info-content h2 {
    font-size: 28px;
    margin-bottom: 25px;
}

.info-content p {
    color: #d0d0d0;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.close-info {
    position: absolute;
    top: 15px;
    right: 20px;

    background: none;
    border: none;
    color: white;

    font-size: 25px;
    cursor: pointer;
}

.close-info:hover {
    color: #aaa;
}