* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #050b2e, #0a2a4a, #0d4c6b);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

/* Canvas stays behind content */
#glitter {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Content */
.container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  padding: 24px;
  animation: fadeUp 1.6s ease forwards;
}

h1 {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.25;
  margin-left: -130px;
  margin-bottom: 22px;
  margin-top: -55px;
  text-shadow: 0 0 25px rgba(120, 200, 255, 0.25);
}

h1 span {
  font-weight: 400;
}

h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 32px;
  letter-spacing: 1px;
  opacity: 0.9;
}

.message {
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.8;
  margin-bottom: 25px;
  margin-top: 100px;
}

.signature {
  font-size: 0.95rem;
  opacity: 0.65;
  margin-bottom: -150px;
  letter-spacing: 1px;
}

.coming-soon {
  font-size: 1.2rem;        /* bigger */
  font-weight: 500;
  letter-spacing: 6px;
  margin-bottom: 98px;
  color: rgba(200, 230, 255, 0.85);
  text-shadow: 0 0 20px rgba(120, 200, 255, 0.35);
}


@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.logo {
  position: absolute;
  top: 58px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.logo img {
  height: 90px;          /* was 60px */
  width: auto;
  opacity: 0.95;
  filter: drop-shadow(0 0 16px rgba(120, 200, 255, 0.3));
}












/* =========================
   MOBILE RESPONSIVE FIXES
   ========================= */
@media (max-width: 768px) {

  body {
    padding: 16px;
  }

  .logo {
    top: 24px;
  }

  .logo img {
    height: 64px;
  }

  .container {
    max-width: 100%;
    padding: 16px;
  }

  h1 {
    font-size: 1.6rem;
    line-height: 1.4;
    margin: 0;
    white-space: normal; /* allow wrapping on mobile */
    text-align: center;
  }

  h2 {
    font-size: 1.1rem;
    margin-top: 16px;
    margin-bottom: 20px;
  }

  .coming-soon {
    font-size: 2rem;
    letter-spacing: 4px;
    margin: 24px 0;
  }

  .message {
    font-size: 0.95rem;
    margin: 0;
    padding: 0 8px;
  }

  .signature {
    margin: 20px 0 0;
    font-size: 0.85rem;
  }
}

/* Extra small phones */
@media (max-width: 420px) {

  h1 {
    font-size: 1.35rem;
  }

  .coming-soon {
    font-size: 1.6rem;
    letter-spacing: 3px;
  }
}
