* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  min-height: 100dvh;
  overflow: hidden;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(135deg, #050816, #0f172a, #1e293b);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 20px;
}

canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.container {
  width: min(100%, 720px);
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(24px, 6vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.15);
  animation: float 4s ease-in-out infinite;
}

h1 {
  font-size: clamp(2.8rem, 14vw, 5rem);
  margin-bottom: 10px;
  background: linear-gradient(90deg, #00f5ff, #8b5cf6, #ff00cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow 3s infinite alternate;
  word-break: break-word;
}

p {
  font-size: clamp(0.95rem, 4vw, 1.2rem);
  color: #cbd5e1;
  margin-bottom: 28px;
}

button {
  width: 100%;
  max-width: 340px;
  padding: 14px 22px;
  border: none;
  border-radius: 999px;
  font-size: clamp(0.9rem, 3.5vw, 1rem);
  font-family: inherit;
  cursor: pointer;
  background: linear-gradient(90deg, #00f5ff, #8b5cf6);
  color: white;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

button:hover {
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.8);
}

.emoji {
  font-size: clamp(2.2rem, 10vw, 3rem);
  margin-top: 25px;
  animation: spin 6s linear infinite;
}

.admin-link {
  position: fixed;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.5;
  font-size: 0.75rem;
  z-index: 5;
  width: 100%;
  text-align: center;
  padding: 0 12px;
}

.admin-link a {
  color: #94a3b8;
  text-decoration: none;
  transition: 0.3s;
}

.admin-link a:hover {
  color: #e2e8f0;
}

@keyframes glow {
  from {
    filter: drop-shadow(0 0 10px #00f5ff);
  }

  to {
    filter: drop-shadow(0 0 30px #ff00cc);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

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

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 480px) {
  body {
    padding: 16px;
  }

  .container {
    border-radius: 18px;
    animation: none;
  }

  button:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .container,
  .emoji,
  h1 {
    animation: none;
  }

  button {
    transition: none;
  }
}
