* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 3rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.6);
}

.logo {
  font-weight: 700;
  font-size: 1.6rem;
  color: #E50914;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #ddd;
  transition: 0.3s;
}

nav a:hover {
  color: #E50914;
}

.btn-primary {
  background: linear-gradient(90deg, #E50914, #6a00ff);
  border: none;
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: scale(1.05);
}

/* Hero */
.hero {
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1594909122841-41d16c9d8df3?auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  z-index: 2;
  max-width: 700px;
  padding: 0 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  color: #ccc;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding: 5rem 2rem;
  background: #0a0a0a;
  text-align: center;
}

.feature i {
  font-size: 2.5rem;
  color: #E50914;
  margin-bottom: 1rem;
}

.feature h3 {
  margin-bottom: 0.5rem;
}

/* Plans */
.plans {
  padding: 5rem 2rem;
  background: #111;
  text-align: center;
}

.plans h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
}

.plan-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.plan {
  background: #1a1a1a;
  border-radius: 15px;
  padding: 2rem;
  width: 250px;
  transition: all 0.3s;
}

.plan i {
  font-size: 2rem;
  color: #E50914;
  margin-bottom: 0.5rem;
}

.plan.featured {
  background: linear-gradient(145deg, #E50914, #6a00ff);
  transform: scale(1.05);
}

.plan.elite {
  background: linear-gradient(145deg, #6a00ff, #E50914);
}

.plan.free {
  border: 1px solid #444;
}

.plan:hover {
  transform: scale(1.05);
}

.plan h3 {
  margin: 0.5rem 0;
}

.plan .price {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.plan button {
  background: #E50914;
  color: #fff;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  margin-top: 1rem;
}

.plan button:hover {
  background: #ff1f2a;
}

/* CTA */
.cta {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #6a00ff, #E50914);
  text-align: center;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta p {
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background: #000;
  text-align: center;
  padding: 2rem;
  color: #777;
}

footer .socials {
  margin-top: 1rem;
}

footer .socials a {
  color: #E50914;
  margin: 0 0.5rem;
  font-size: 1.5rem;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(145deg, #25D366, #128C7E);
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 0 15px rgba(37,211,102,0.7);
  animation: pulse 2s infinite;
  z-index: 200;
}

@keyframes pulse {
  0% { box-shadow: 0 0 10px rgba(37,211,102,0.7); }
  50% { box-shadow: 0 0 25px rgba(37,211,102,1); }
  100% { box-shadow: 0 0 10px rgba(37,211,102,0.7); }
}
