* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: #000;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Segoe UI', Arial, sans-serif;
}

canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

@keyframes borderPulse {
  0%, 100% {
    border-color: rgba(100, 150, 255, 0.55);
    box-shadow:
      0 0 38px rgba(60, 100, 255, 0.28),
      0 0 75px rgba(60, 100, 255, 0.12),
      inset 0 1px 0 rgba(255,255,255,0.07);
  }
  50% {
    border-color: rgba(120, 170, 255, 0.8);
    box-shadow:
      0 0 50px rgba(60, 100, 255, 0.42),
      0 0 95px rgba(60, 100, 255, 0.2),
      inset 0 1px 0 rgba(255,255,255,0.07);
  }
}

.dialog {
  position: relative;
  z-index: 10;
  background: rgba(10, 10, 30, 0.85);
  border: 1px solid rgba(100, 140, 255, 0.25);
  border-radius: 14px;
  padding: 40px 50px;
  min-width: 340px;
  backdrop-filter: blur(6px);
  text-align: center;
  animation: borderPulse 4s ease-in-out infinite;
}

.dialog h1 {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(160, 180, 255, 0.7);
  margin-bottom: 30px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.links a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(100, 140, 255, 0.2);
  border-radius: 8px;
  text-decoration: none;
  color: #c8d8ff;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.links a:hover {
  background: rgba(80, 120, 255, 0.18);
  border-color: rgba(100, 160, 255, 0.55);
  transform: translateY(-2px);
}

.links a .icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.links a .text {
  text-align: left;
}

.links a .text .name {
  font-size: 1rem;
  font-weight: 600;
  color: #e0eaff;
}

.links a .text .desc {
  font-size: 0.78rem;
  color: rgba(160, 180, 220, 0.6);
  margin-top: 2px;
}
