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

body {
  background: #030506;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}

#starfield {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  gap: 48px;
}

.logo-container {
  animation: pulse-glow 3s ease-in-out infinite;
}

.logo-container img {
  display: block;
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(96, 226, 214, 0.3));
}

@keyframes pulse-glow {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(96, 226, 214, 0.2));
  }
  50% {
    filter: drop-shadow(0 0 50px rgba(96, 226, 214, 0.5));
  }
}

.enter-link {
  color: #2B96A0;
  font-size: 18px;
  text-decoration: none;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid rgba(43, 150, 160, 0.3);
  transition: all 0.4s ease;
  font-family: 'Courier New', Courier, monospace;
}

.enter-link:hover {
  color: #60E2D6;
  border-color: #60E2D6;
  background: rgba(96, 226, 214, 0.08);
  box-shadow: 0 0 30px rgba(96, 226, 214, 0.15);
}

