/* Reset + basic */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: cursive, sans-serif;
  scroll-behavior: smooth;
}

a {
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}

a:hover {
  color: #ff4d4d;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  transition: 0.2s;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.nav button {
  padding: 8px 12px;
  border-radius: 5px;
  margin-right: 5px;
}

.selectors select {
  padding: 6px 10px;
  margin-right: 5px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}

/* THEME TOGGLE */
.theam-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: 0.15s;
}

.theam-toggle:hover {
  transform: scale(1.2);
}

/* HOME SECTION */
.home,
.player-container {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

/* CARDS */
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  border-radius: 10px;
  overflow: hidden;
  margin: 15px;
  width: 250px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  border-bottom: 1px solid #ddd;
}

.card-content {
  padding: 10px;
}

.card-title {
  font-size: 18px;
  font-weight: bold;
}

.card-description {
  font-size: 14px;
  margin: 8px 0;
}

.watch-now-button {
  display: block;
  text-align: center;
  padding: 8px;
  border-radius: 6px;
  transition: 0.2s;
}

/* PLAYER */
.player-container iframe {
  width: 100%;
  max-width: 900px;
  height: 500px;
  border: none;
  border-radius: 10px;
  background: #000;
  margin-bottom: 15px;
}

.description {
  max-width: 900px;
  padding: 10px;
  border-radius: 8px;
  font-size: 16px;
}

.nav-buttons button {
  margin-left: 5px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: cursive, sans-serif;
  scroll-behavior: smooth;
}

a {
  cursor: pointer;
  text-decoration: none;
  transition: .2s;
}

a:hover {
  color: #ff4d4d;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  transition: .2s;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.nav button {
  padding: 8px 12px;
  border-radius: 5px;
  margin-right: 5px;
}

.theam-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: .15s;
}

.theam-toggle:hover {
  transform: scale(1.2);
}

/* HOME / CARDS */
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  border-radius: 10px;
  overflow: hidden;
  margin: 15px;
  width: 250px;
  transition: transform .2s, box-shadow .2s;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  border-bottom: 1px solid #ddd;
}

.card-content {
  padding: 10px;
}

.card-title {
  font-size: 18px;
  font-weight: bold;
}

.card-description {
  font-size: 14px;
  margin: 8px 0;
}

.watch-now-button {
  display: block;
  text-align: center;
  padding: 8px;
  border-radius: 6px;
  transition: .2s;
}

/* PLAYER */
.player-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px auto;
  width: 95%;
}

.player-container iframe {
  width: 100%;
  max-width: 900px;
  height: 500px;
  border: none;
  border-radius: 10px;
  background: #000;
  margin-bottom: 15px;
}

.description {
  max-width: 900px;
  padding: 10px;
  border-radius: 8px;
  font-size: 16px;
}

.nav-buttons button {
  margin-left: 5px;
}