body {
    margin: 0;
    font-family: Helvetica, Arial, sans-serif;
    background: #141414;
    color: #e5e5e5;
}

/* Page title */
h1 {
    font-size: 28px;
    font-weight: 800;
    margin: 20px 0 12px;
    padding-left: 12px;
}

/* =========================
   GENRES SLIDER (Netflix pills)
========================= */
#genresSlider {
    overflow-x: auto;
    white-space: nowrap;
    padding: 12px 12px 24px;
    margin-bottom: 30px;
}

#genresSlider::-webkit-scrollbar {
    display: none;
}

#genresSlider button {
    display: inline-block;
    background: #000;
    color: #e5e5e5;
    border: 1.5px solid rgba(229,229,229,0.4);
    padding: 12px 22px;
    margin-right: 14px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: all 0.25s ease;
}

#genresSlider button:hover {
    background: #e5e5e5;
    color: #000;
    border-color: #e5e5e5;
}

/* =========================
   HOME FEED
========================= */
/* Movie row */
#homeFeed .row {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0 10px 18px;
}

#homeFeed .row::-webkit-scrollbar {
    display: none;
}

/* Movie card — smaller like Netflix */
#homeFeed .movie-card {
    width: 118px;
    flex-shrink: 0;
}

/* Netflix mobile poster size */
#homeFeed .movie-card img {
    width: 100%;
    height: 176px;
    object-fit: cover;
    border-radius: 6px;
}

/* Remove big zoom — Netflix is subtle */
#homeFeed .movie-card img:hover {
    transform: scale(1.0);
}
/* Hide movie titles completely */
#homeFeed .movie-card h3,
#homeFeed .movie-card p,
#homeFeed .movie-card span {
    display: none !important;
}
.random-container {
  display: flex;
  justify-content: left;
  align-items: left;
}

/* Button only */
.random-btn {
  display: inline-block;
    background: #000;
    color: #e5e5e5;
    border: 1.5px solid rgba(229,229,229,0.4);
    padding: 12px 22px;
    margin-right: 14px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.random-btn:hover {
  background: #e5e5e5;
    color: #000;
    border-color: #e5e5e5;
}









