* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #050505;
  color: #ffffff;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top center, rgba(255, 180, 60, 0.18), transparent 35%),
    radial-gradient(circle at bottom center, rgba(255, 140, 0, 0.08), transparent 30%),
    linear-gradient(135deg, #050505 0%, #0d0a07 35%, #120c06 65%, #050505 100%);
  z-index: -2;
}

.bg-overlay {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 196, 85, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 196, 85, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -1;
  opacity: 0.25;
}

.coming-soon-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.container {
  width: 100%;
  max-width: 950px;
  text-align: center;
  padding: 40px 30px;
  border: 1px solid rgba(255, 191, 73, 0.18);
  background: rgba(12, 8, 4, 0.75);
  backdrop-filter: blur(8px);
  border-radius: 24px;
  box-shadow:
    0 0 25px rgba(255, 166, 0, 0.08),
    0 0 60px rgba(255, 140, 0, 0.06),
    inset 0 0 20px rgba(255, 200, 120, 0.03);
}

.logo-box {
  margin-bottom: 18px;
}

.logo {
  width: 100%;
  max-width: 260px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(255, 180, 60, 0.18));
}

.tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 18px;
  border: 1px solid rgba(255, 196, 85, 0.35);
  border-radius: 999px;
  color: #f4c56a;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(255, 196, 85, 0.06);
}

h1 {
  font-family: 'Cinzel', serif;
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 18px;
  font-weight: 800;
  background: linear-gradient(180deg, #fff4c4 0%, #f5d27b 35%, #d88a18 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  max-width: 700px;
  margin: 0 auto 34px;
  font-size: 17px;
  line-height: 1.8;
  color: #d7c7a8;
}

.countdown-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 0 auto 35px;
  max-width: 760px;
}

.count-item {
  padding: 10px 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 183, 77, 0.08), rgba(255, 140, 0, 0.04));
  border: 1px solid rgba(255, 196, 85, 0.16);
  box-shadow: inset 0 0 15px rgba(255, 196, 85, 0.03);
}

.count-item h2 {
  font-family: 'Cinzel', serif;
  font-size: 38px;
  color: #f6cf78;
  margin-bottom: 8px;
}

.count-item p {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #c7b28a;
}

.notify-form {
  display: flex;
  justify-content: center;
  gap: 14px;
  max-width: 700px;
  margin: 0 auto 28px;
  flex-wrap: wrap;
}

.notify-form input {
  flex: 1 1 380px;
  min-width: 250px;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 196, 85, 0.18);
  outline: none;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 15px;
}

.notify-form input::placeholder {
  color: #bca98a;
}

.notify-form button {
  padding: 16px 28px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #1b1205;
  background: linear-gradient(180deg, #ffd978 0%, #f0b63f 55%, #c98310 100%);
  transition: 0.3s ease;
}

.notify-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 174, 0, 0.18);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.social-links a {
  color: #e5c57a;
  text-decoration: none;
  font-size: 15px;
  position: relative;
  transition: 0.3s ease;
}

.social-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 1px;
  background: #f0b63f;
  transition: 0.3s ease;
}

.social-links a:hover {
  color: #ffd978;
}

.social-links a:hover::after {
  width: 100%;
}

@media (max-width: 900px) {
  h1 {
    font-size: 52px;
  }

  .countdown-box {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .container {
    padding: 30px 18px;
    border-radius: 18px;
  }

  .logo {
    max-width: 260px;
  }

  h1 {
    font-size: 38px;
  }

  .subtitle {
    font-size: 15px;
    line-height: 1.7;
  }

  .countdown-box {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .count-item {
    padding: 18px 10px;
  }

  .count-item h2 {
    font-size: 28px;
  }

  .notify-form input,
  .notify-form button {
    width: 100%;
  }

  .social-links {
    gap: 16px;
  }
}

@media (max-width: 420px) {
  .countdown-box {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 32px;
  }
}