* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  min-height: 100vh;
  min-width: 100vw;

  background-image: url('bg.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;      /* 🔥 KEY LINE */
  background-attachment: fixed;

  position: relative;
  color: #fff;
  overflow-x: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.4)
  );
}

.container {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.brand h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.brand span {
  color: #ffcc00;
}

.tagline {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.content {
  max-width: 600px;
}

.content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.content p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.95;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.features span {
  background: rgba(255, 255, 255, 0.15);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
}

.notify-btn {
  background: linear-gradient(135deg, #ffcc00, #ff9900);
  border: none;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.notify-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(255, 204, 0, 0.35);
}

footer {
  font-size: 0.8rem;
  opacity: 0.8;
  text-align: center;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .brand h1 {
    font-size: 2rem;
  }

  .content h2 {
    font-size: 1.7rem;
  }
}

.contact-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1.6rem;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.contact-icon {
  font-size: 1.4rem;
}

.contact-text p {
  font-size: 0.75rem;
  letter-spacing: 1px;
  opacity: 0.85;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.contact-text a {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffcc00;
  text-decoration: none;
}

.contact-text a:hover {
  text-decoration: underline;
}

