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

body {
  font-family: 'Poppins', sans-serif;
  background: #0b0b0b;
  color: white;
}

.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)),
  url('https://images.unsplash.com/photo-1522869635100-9f4c5e86aa37?q=80&w=1600&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}

nav {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:25px 8%;

  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo img{
  width:70px;
  max-width:100%;
  height:auto;
  display:block;
  object-fit:contain;
  margin-top:-10px;
  border-radius:20px;
  filter: drop-shadow(0 0 15px rgba(0,150,255,0.6));
}

.btn-nav {
  background: #e50914;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
}

.hero-content {
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.hero-content h2 {
  font-size: 4rem;
  max-width: 800px;
}

.hero-content p {
  margin-top: 20px;
  font-size: 1.2rem;
  color: #ccc;
}

.main-btn {
  margin-top: 30px;
  background: #e50914;
  padding: 15px 30px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.3s;
}

.main-btn:hover {
  background: #ff1c27;
  transform: scale(1.05);
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 65px;
  height: 65px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 0 20px rgba(37,211,102,0.5);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
  padding: 80px 8%;
}

.feature-card {
  background: #151515;
  padding: 30px;
  border-radius: 12px;
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
}

.movies,
.live-channels,
.contact,
.plans {
  padding: 80px 8%;
}

.movies h2,
.live-channels h2,
.contact h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.7rem;
}

.movie-carousel{
  display:flex;
  gap:20px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding-bottom:20px;
}

.movie-carousel::-webkit-scrollbar{
  height:8px;
}

.movie-carousel::-webkit-scrollbar-thumb{
  background:#e50914;
  border-radius:10px;
}

.movie-carousel::-webkit-scrollbar-track{
  background:#111;
}

.movie-card{
  min-width:220px;
  height:340px;
  border-radius:16px;
  overflow:hidden;
  position:relative;
  transition:0.4s;
  cursor:pointer;
  background:#111;
}

.movie-card img{
  width:100%;
  height:100%;
  object-fit:contain;
  background:#111;
  padding:8px;
  transition:0.4s;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 20px;
}

.channel-card {
  background: #151515;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  font-size: 1.2rem;
  border: 1px solid #222;
  transition: 0.3s;
}

.channel-card:hover {
  border-color: #e50914;
  transform: translateY(-6px);
}

.contact form {
  max-width: 700px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact input,
.contact textarea {
  background: #151515;
  border: 1px solid #333;
  padding: 16px;
  border-radius: 10px;
  color: white;
}

.contact textarea {
  min-height: 140px;
}

.contact button {
  background: #e50914;
  border: none;
  padding: 16px;
  border-radius: 10px;
  color: white;
  font-size: 1rem;
  cursor: pointer;
}

.contact-info {
  text-align: center;
  margin-top: 40px;
  color: #ccc;
}

.plans {
  padding: 80px 8%;
}

.plans h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 3rem;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 30px;
}

.plan-card {
  background: #151515;
  padding: 35px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid #222;
}

.plan-card:hover {
  transform: translateY(-10px);
  border-color: #e50914;
}

.featured {
  border: 2px solid #e50914;
}

.plan-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.price {
  font-size: 2.5rem;
  color: #e50914;
  font-weight: 700;
}

.price span {
  font-size: 1rem;
  color: #aaa;
}

.annual {
  margin: 15px 0;
  color: #ccc;
}

.plan-card ul {
  list-style: none;
  margin: 25px 0;
}

.plan-card li {
  margin: 10px 0;
  color: #ccc;
}

.plan-card button {
  background: #e50914;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  font-size: 1rem;
}

.cta {
  padding: 100px 8%;
  text-align: center;
  background: linear-gradient(to right, #111, #1b1b1b);
}

.cta h2 {
  font-size: 2.5rem;
}

.cta p {
  margin: 20px 0;
  color: #ccc;
}

.cta a {
  display: inline-block;
  margin-top: 20px;
  background: #25d366;
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
}

footer {
  text-align: center;
  padding: 25px;
  border-top: 1px solid #222;
  color: #777;
}

@media(max-width:768px) {
  .hero-content h2 {
    font-size: 2.5rem;
  }

  nav {
    flex-direction: column;
    gap: 20px;
  }
...todo tu css anterior...

.live-player{
  padding:80px 8%;
}

.live-player h2{
  margin-bottom:30px;
  font-size:2.5rem;
}

#video{
  border-radius:16px;
  overflow:hidden;
  background:#000;
  box-shadow:0 0 30px rgba(229,9,20,0.3);
}
.channel-buttons{
  display:flex;
  gap:15px;
  margin-bottom:25px;
  overflow-x:auto;
}

.channel-buttons button{
  background:#e50914;
  border:none;
  color:white;
  padding:12px 22px;
  border-radius:10px;
  cursor:pointer;
  font-size:1rem;
  transition:0.3s;
}

.channel-buttons button:hover{
  background:#ff1c27;
  transform:scale(1.05);
}

.category-title{
  font-size:2rem;
  margin-bottom:25px;
  font-weight:700;
  padding-left:10px;
}

.movie-overlay{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  padding:20px;
  background:linear-gradient(to top, rgba(0,0,0,0.95), transparent);
  opacity:0;
  transition:0.4s;
  text-align:center;
}

.movie-overlay h3{
  margin-bottom:10px;
  font-size:1.2rem;
}

.movie-overlay button{
  background:#e50914;
  border:none;
  color:white;
  padding:10px 18px;
  border-radius:8px;
  cursor:pointer;
  font-weight:600;
}

.movie-card:hover .movie-overlay{
  opacity:1;
}

.watch-btn{
display:inline-block;
background:#e50914;
color:white;
padding:10px 20px;
border-radius:8px;
text-decoration:none;
font-weight:bold;
margin-top:10px;
transition:0.3s;
}

.watch-btn:hover{
background:#ff1f1f;
transform:scale(1.05);
}