* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #111;
  color: #fff;
}

header {
  background-color: #0c0c0c;
  padding: 15px 60px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  
  align-self: center;}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  
}

.logo span {
  color: #00ff95;
  background: #000;
  padding: 2px 6px;
  border-radius: 4px;
  animation-play-state: running;
  animation: alternate-reverse;
  animation-duration: 23s;

}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

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

.hero {
  height: 90vh;
  background: url("https://wallpapercave.com/wp/wp10906014.jpg") center/cover no-repeat;
  position:relative;
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 800px;
  width: 100%;
  padding: 20px;
}

.search-container {
  display: flex;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 20px;
}

.search-container input {
  flex: 1;
  padding: 15px;
  border:#1a1a1a;
  font-size: 16px;
  outline:transparent;
  box-shadow :black;
}

.filter-btn {
  padding: 0 20px;
  background: #fff;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.suggestion {
  color: #ddd;
  font-size: 14px;
  margin-bottom: 25px;
}

.watch-now {
  background: #f25a29;
  border: none;
  padding: 14px 30px;
  color: white;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.watch-now:hover {
  background: #d5481f;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #0e0e0e;
  color: #fff;
  line-height: 1.6;
  padding: 20px;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 255, 100, 0.15);
}

h1 {
  text-align: center;
  font-size: 32px;
  color: #00ff95;
  margin-bottom: 25px;
}

h2 {
  font-size: 24px;
  color: #ff7657;
  margin-top: 30px;
  margin-bottom: 10px;
}

ul {
  list-style-type: disc;
  margin-left: 30px;
}

p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #ddd;
}

ul li {
  margin-bottom: 10px;
}

.last-para {
  text-align: center;
  margin-top: 40px;
  font-size: 17px;
  color: #eee;
  background-color: #222;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}
