body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg,#0b0f19,#020617);
  color: white;
  margin: 0;
}

header {
  text-align: center;
  padding: 80px 20px;
}

h1 {
  font-size: 2.5em;
}

.section {
  padding: 50px 20px;
  text-align: center;
}

.btn {
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: #2563eb;
  color: white;
}

.btn-secondary {
  border: 1px solid #2563eb;
  color: #2563eb;
}

.domain-box input {
  padding: 12px;
  width: 250px;
}

.plan {
  background: #111827;
  padding: 20px;
  margin: 10px;
  border-radius: 10px;
}

.plans {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.featured {
  border: 2px solid #2563eb;
}

footer {
  padding: 20px;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  h1 { font-size: 1.8em; }
  .plans { flex-direction: column; }
}