/* ================= GENERAL RESET ================= */
* {
  margin: 00;
  padding: 00;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body {
  background-color: #ffffff;
  color: #fff;
}

/* ================= NAVBAR ================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: #111;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
.nav-links {
  display: flex;
  gap: 20px;
}
.nav-links a {
  text-decoration: none;
  color: #e5e5e5;
  font-weight: 600;
  transition: color 0.3s ease-in-out;
}
.nav-links a:hover {
  color: #e50914;
}

/* ================= LOGO ================= */
.logo-img {
  max-width: 190px;
  height: auto;
  transition: transform 0.3s ease-in-out;
}
.logo-img:hover {
  transform: scale(1.1);
}
.highlight {
  color: #007bff; /* Light Blue */
}
/* ================= ICONS ================= */
.icon {
  color: #e5e5e5;
  font-size: 20px;
  margin-left: 15px;
  transition: transform 0.3s ease;
}
.icon:hover {
  transform: scale(1.2);
  color: #e50914;
}

/* ================= BUTTON STYLES ================= */
.custom-button {
  padding: 8px 15px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}
.custom-button:not(.free-trial) {
  background: #e50914;
  color: white;
}
.custom-button:not(.free-trial):hover {
  background: #b20710;
}
.custom-button.free-trial {
  background: transparent;
  border: 1px solid #e50914;
  color: #e50914;
}
.custom-button.free-trial:hover {
  background: #e50914;
  color: white;
}

/* ================= SIDEBAR ================= */
.sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 250px;
  height: 100vh;
  background: #181818;
  transition: right 0.4s ease-in-out;
  padding: 20px;
  color: white;
  box-shadow: -4px 0px 10px rgba(0, 0, 0, 0.5);
}
.sidebar.active {
  right: 0;
}
.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.sidebar-header h2 {
  color: white;
}
.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}
.close-btn:hover {
  color: #e50914;
}
.sidebar ul {
  list-style: none;
  padding: 0;
}
.sidebar ul li a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 10px 0;
  font-size: 18px;
  transition: color 0.3s;
}
.sidebar ul li a:hover {
  color: #e50914;
}

/* ================= SIDEBAR BUTTONS ================= */
.menu-buttons button {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  transition: background 0.3s;
}
.account {
  background: #e50914;
  color: white;
}
.login {
  background: transparent;
  border: 1px solid #e50914;
  color: #e50914;
}
.menu-buttons button:hover {
  background: #b20710;
}

/* ================= POPUP MODAL ================= */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.popup-content {
  background: #181818;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  border: 1px solid #e50914;
}
.buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.button {
  background-color: #e50914;
  color: white;
  padding: 15px 30px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}
.button:hover {
  background-color: white;
  color: #e50914;
}
.skip-btn {
  background-color: gray;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}
.hidden {
  display: none;
}