* {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: cursive, sans-serif;
}

a {
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}

a:hover {
  color: #ff4d4d;
}

body {
  background: #fff4f4;
  color: #333;
}

/* NAV */
.nav {
  height: 8vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}

.nav:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.logo img {
  height: 50px;
  border-radius: 22px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.logo img:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.links a {
  color: #333;
  margin: 0 15px;
  font-weight: 500;
}

.links a:hover {
  color: #ff4d4d;
  font-weight: 600;
}

.theam-toggle {
  width: 40px;
  height: 40px;
  background: #ffcccc;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  transition: 0.15s;
}

.theam-toggle:hover {
  transform: scale(1.2);
}

/* HOME */
.home {
  min-height: 92vh;
  display: flex;
  justify-content: center;
  align-items: start;
  padding: 20px;
}

.home-section {
  max-width: 96%;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* CARDS */
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: #fff;
  color: #000;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 15px;
  width: 250px;
  transition: transform 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;
  background: #fffdfd;
  color: #000;
  transition: 0.2s;
}

.watch-now-button:hover {
  background: rgb(250, 228, 228);
}

body {
  background: #fff4f4;
  color: #333;
}

.nav {
  background: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav button,
.selectors select,
.nav-buttons button {
  background: #ffcccc;
  color: #000;
}

.theam-toggle {
  background: #ffcccc;
  color: #000;
}

.home-section,
.card,
.player-container .description {
  background: #fff;
  color: #000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.watch-now-button {
  background: #fffdfd;
  color: #000;
}

.watch-now-button:hover {
  background: rgb(250, 228, 228);
}

body {
  background: #fff4f4;
  color: #333;
}

.nav {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
}

.nav button,
.theam-toggle {
  background: #ffcccc;
  color: #000;
}

.home-section,
.card,
.player-container .description {
  background: #fff;
  color: #000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
}

.watch-now-button {
  background: #fffdfd;
  color: #000;
}

.watch-now-button:hover {
  background: rgb(250, 228, 228);
}