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

body {
    background-color: #0f0f0f;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(0,0,0,0.85), rgba(0,0,0,0));
    z-index: 100;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

.menu a {
    margin: 0 12px;
    text-decoration: none;
    color: #cccccc;
    font-size: 14px;
}

.menu a:hover {
    color: #ffffff;
}

.search input {
    background: rgba(255,255,255,0.1);
    border: none;
    padding: 6px 10px;
    color: #fff;
    border-radius: 4px;
}

/* ===== HERO ===== */
.hero {
    height: 75vh;
    position: relative;
    padding-top: 64px;
    background: #000;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0f0f0f, rgba(0,0,0,0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 80px 40px;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 15px;
    color: #dddddd;
    margin-bottom: 20px;
}

.hero-content button {
    background-color: #e50914;
    border: none;
    padding: 10px 22px;
    font-size: 15px;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}

/* ===== CONTENT ===== */
.content {
    padding-top: 40px;
}

/* ===== SECTION ROW ===== */
.row {
    padding: 30px 40px;
}

.row h2 {
    margin-bottom: 14px;
    font-size: 18px;
}

/* ===== GRID (MT / NETFLIX STYLE) ===== */
.row-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, 160px);
    gap: 18px;
    justify-content: start;
}

/* ===== CARD ===== */
.card {
    cursor: pointer;
    transition: transform 0.25s ease;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.card p {
    margin-top: 6px;
    font-size: 13px;
    color: #ccc;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}