* {
  box-sizing: border-box;
}

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

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0));
  z-index: 100;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #e50914;
  letter-spacing: 1px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 20px;
  font-size: 14px;
}

.nav-links a:hover {
  color: #b3b3b3;
}

/* HERO */
.hero {
  height: 95vh;
  background: url("https://via.placeholder.com/1600x900?text=Oflixo+Featured") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 60px;
}

.hero-content {
  max-width: 550px;
}

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

.hero-content p {
  font-size: 18px;
  color: #e5e5e5;
  margin-bottom: 25px;
}

.hero-buttons button {
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  margin-right: 15px;
  cursor: pointer;
  border-radius: 4px;
}

/* BUTTONS */
.btn-play {
  background-color: #ffffff;
  color: #000000;
}

.btn-play:hover {
  background-color: #e6e6e6;
}

.btn-info {
  background-color: rgba(109, 109, 110, 0.7);
  color: #ffffff;
}

.btn-info:hover {
  background-color: rgba(109, 109, 110, 0.4);
}

/* ROWS */
.row {
  margin-top: 30px;
  padding-left: 40px;
}

.row h2 {
  margin-bottom: 10px;
}

.row-posters {
  display: flex;
  overflow-x: auto;
  padding-bottom: 20px;
}

.row-posters::-webkit-scrollbar {
  display: none;
}

.row-posters img {
  max-height: 170px;
  margin-right: 12px;
  border-radius: 4px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.row-posters img:hover {
  transform: scale(1.12);
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 30px;
  color: #b3b3b3;
  font-size: 14px;
}
