body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #fff;
  padding: 20px;
}

h1 {
  text-align: center;
  color: orange;
  font-size: 2.5rem;
  margin-bottom: 30px;
  animation: fadeIn 1.5s ease-in-out;
}

ul {
  list-style: none;
  padding: 0;
  max-width: 500px;
  margin: auto;
  display: grid;
  gap: 20px;
  animation: slideUp 1.5s ease;
}

ul li {
  background: #111;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #444;
  transition: 0.3s;
}

ul li:hover {
  background: #222;
  box-shadow: 0 0 10px orange;
}

.btn {
  display: block;
  width: fit-content;
  margin: 30px auto 0;
  background: orange;
  color: #000;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.05);
  background: #ffa500;
}

.pulse {
  animation: pulse 1.5s infinite;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-20px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes slideUp {
	from {opacity: 0; transform: translateY(30px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes pulse {
  0%, 100% {transform: scale(1);}
  50% {transform: scale(1.05);}
}
.vip-note {
  max-width: 520px;
  margin: 30px auto;
  text-align: center;
  font-size: 0.95rem;
  color: #ddd;
  background: #111;
  padding: 16px;
  border-radius: 12px;
  border: 1px dashed orange;
  animation: fadeIn 1.5s ease;
}

.price-box {
  max-width: 360px;
  margin: 30px auto;
  background: linear-gradient(135deg, #111, #1b1b1b);
  border: 1px solid orange;
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 0 20px rgba(255,165,0,0.35);
  animation: slideUp 1.3s ease;
}

.price-box h2 {
  margin: 10px 0;
  color: orange;
  font-size: 1.6rem;
}

.price {
  font-size: 2.3rem;
  font-weight: bold;
  margin: 12px 0;
}

.price span {
  font-size: 1rem;
  color: #ccc;
}

.badge {
  display: inline-block;
  background: orange;
  color: #000;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
}