@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0b0f1a;
  color: #fff;
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,0.9), rgba(0,0,0,0.4));
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
}

.hero-content h1 span {
  color: #00e0ff;
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.85;
}

.hero-btn {
  margin-top: 30px;
  padding: 15px 40px;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  background: linear-gradient(135deg, #00e0ff, #0066ff);
  color: #fff;
  box-shadow: 0 15px 40px rgba(0,224,255,0.4);
  transition: transform 0.3s;
}

.hero-btn:hover {
  transform: translateY(-5px);
}

/* Plans Section */
.plans {
  padding: 100px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 60px;
}

.plan-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.plan-card {
  width: 320px;
  padding: 40px 25px;
  border-radius: 25px;
  background: linear-gradient(145deg, #121a2f, #0a0f1f);
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
  transform-style: preserve-3d;
  transition: all 0.4s ease;
}

.plan-card:hover {
  transform: translateY(-20px) scale(1.05);
}

.plan-card h3 {
  font-size: 3rem;
}

.tag {
  opacity: 0.7;
  margin-bottom: 20px;
}

.price {
  font-size: 2.2rem;
  margin: 20px 0;
  color: #00e0ff;
}

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

.plan-card ul li {
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.plan-card button {
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background: linear-gradient(135deg, #00e0ff, #0066ff);
  color: #fff;
}

.elite {
  border: 2px solid #ffd700;
}

/* Footer */
footer {
  text-align: center;
  padding: 30px;
  background: #070b14;
  opacity: 0.8;
}

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