/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: Arial, sans-serif;
    background-color: #141414;
    color: #fff;
  }
  
  /* Navigation Bar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    padding: 1rem 2rem;
  }
  .logo {
    font-size: 1.8rem;
    color: red;
  }
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
  }
  
  /* Hero Section */
  .hero {
    background: url('https://via.placeholder.com/1200x500') center/cover no-repeat;
    height: 60vh;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    position: relative;
  }
  .hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(20,20,20,0.8), transparent);
  }
  .hero-content {
    position: relative;
    z-index: 1;
  }
  .hero-content h2 {
    font-size: 2.5rem;
  }
  .hero-content button {
    padding: 0.5rem 1rem;
    margin-top: 1rem;
    margin-right: 1rem;
    font-size: 1rem;
    background-color: #e50914;
    color: white;
    border: none;
    cursor: pointer;
  }
  .hero-content .secondary {
    background-color: #666;
  }
  
  /* Movie Rows */
  .row {
    padding: 2rem;
  }
  .movie-row {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
  }
  .movie-row img {
    border-radius: 5px;
    transition: transform 0.2s;
  }
  .movie-row img:hover {
    transform: scale(1.05);
  }
  