* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #ffffff;
  background:
    linear-gradient(rgba(0, 18, 48, 0.18), rgba(0, 8, 24, 0.72)),
    url("/assets/background.png") center center / cover no-repeat fixed;
  overflow-x: hidden;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.hero {
  width: min(920px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.logo {
  width: min(620px, 92vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.48));
  animation: floatLogo 4.8s ease-in-out infinite;
}

.coming-soon {
  margin: 20px 0 0;
  padding: 8px 20px;
  display: inline-block;
  color: #fff7dc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid rgba(255, 230, 160, 0.65);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(25, 106, 198, 0.72), rgba(5, 35, 95, 0.82));
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.32),
    0 0 18px rgba(90, 190, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.75),
    0 0 12px rgba(90, 190, 255, 0.35);
}

@keyframes floatLogo {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

.nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.nav a {
  min-width: 132px;
  padding: 14px 22px;
  border: 1px solid rgba(255, 230, 160, 0.78);
  border-radius: 10px;
  color: #fff7dc;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  font-weight: 700;
  background:
    linear-gradient(180deg, rgba(25, 106, 198, 0.94), rgba(5, 35, 95, 0.96));
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -1px 0 rgba(0, 0, 0, 0.28);
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.65);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.nav a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 244, 190, 0.95);
  background:
    linear-gradient(180deg, rgba(45, 140, 238, 0.98), rgba(7, 55, 135, 0.98));
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.42),
    0 0 18px rgba(90, 190, 255, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.nav a:active {
  transform: translateY(0);
}

@media (max-width: 560px) {
  .page {
    padding: 20px;
  }

  .hero {
    gap: 22px;
  }

  .logo {
    width: min(420px, 96vw);
  }

  .nav {
    width: 100%;
  }

  .nav a {
    width: 100%;
  }
}
