/* ======================
   RESET & BASE
====================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  font-family: 'Roboto', sans-serif;
  background:
    radial-gradient(circle at top, rgba(255,215,0,0.18), transparent 45%),
    #0f0f0f;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ======================
   GRADIENT TEXT
====================== */
.gradient-text {
  background: linear-gradient(135deg, #ffd700, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ======================
   LAYOUT
====================== */
.coming-soon {
  width: 100%;
  padding: 20px;
}

.glass-card {
  max-width: 540px;
  margin: auto;
  padding: 50px 40px;
  text-align: center;

  background: rgba(255, 215, 0, 0.08);
  backdrop-filter: blur(26px);
  border-radius: 26px;
  border: 1px solid rgba(255, 215, 0, 0.25);
  box-shadow: 0 0 50px rgba(255, 215, 0, 0.18);
}

/* ======================
   TEXT
====================== */
.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.6rem;
  margin-bottom: 10px;
}

.tagline {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 35px;
}

h2 {
  font-size: 1.9rem;
  margin-bottom: 12px;
}

.desc {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 35px;
}

/* ======================
   FORM
====================== */
.notify-form {
  display: flex;
  gap: 12px;
  margin-bottom: 35px;
}

.notify-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 35px;
  border: none;
  outline: none;
  font-size: 0.95rem;
}

.notify-form button {
  padding: 14px 22px;
  border-radius: 35px;
  border: none;
  background: #ffd700;
  color: #0f0f0f;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
  box-shadow: 0 0 15px rgba(255,215,0,0.45);
}

.notify-form button:hover {
  background: #e6c200;
  transform: translateY(-1px);
}

/* ======================
   SOCIAL ICONS
====================== */
.socials {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-size: 1.35rem;
}

.socials i {
  cursor: pointer;
  opacity: 0.75;
  transition: 0.3s ease;
}

.socials i:hover {
  opacity: 1;
  color: #ffd700;
  transform: translateY(-2px);
}

/* ======================
   MOBILE
====================== */
@media (max-width: 480px) {
  .glass-card {
    padding: 40px 25px;
  }

  .notify-form {
    flex-direction: column;
  }

  .logo {
    font-size: 2.2rem;
  }
}