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

body {
  height: 100vh;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  color: white;
  background: radial-gradient(circle at center, #7a001f, #2a000a, #000);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stars span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255, 215, 0, 0.9);
  border-radius: 50%;
  animation: twinkle 4s infinite ease-in-out;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.6); }
}

.container {
  text-align: center;
  z-index: 2;
  padding: 40px;
  width: 90%;
  max-width: 600px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.08);
}

.brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  letter-spacing: 6px;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #ffd700, #fff2a8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  margin-bottom: 15px;
}

p {
  font-size: 16px;
  color: #ddd;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 26px;
  border: 1px solid #d4af37;
  color: #d4af37;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.btn:hover {
  background: #d4af37;
  color: black;
}

.contact {
  margin-top: 25px;
  font-size: 14px;
  color: #ccc;
}

.contact a {
  color: #ffd700;
  text-decoration: none;
}
