/* style.css */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: monospace;
}

/* Fullscreen video background */
#bg-video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}

/* Dark overlay for readability */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

/* Mouse-follow glow: smaller, sharper, brighter core, overlay blend */
#glow {
  position: fixed;
  left: 0;
  top: 0;

  width: 220px;
  height: 220px;

  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;

  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.85) 0%,
    rgba(255, 255, 255, 0.35) 18%,
    rgba(255, 255, 255, 0.10) 35%,
    rgba(255, 255, 255, 0.00) 55%
  );

  mix-blend-mode: overlay;
  opacity: 0.9;
}

/* Fade-in wrapper */
#page {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  position: relative;
  z-index: 1; /* above glow */
}

#page.loaded {
  opacity: 1;
  transform: translateY(0);
}

/* Centered layout */
.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Avatar */
.avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin-bottom: 30px;
}

/* Buttons */
.links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.btn {
  text-decoration: none;
  color: white;
  padding: 14px 50px;
  border: 1px solid white;
  text-align: center;
  font-size: 18px;
  letter-spacing: 1px;
  transition: 0.2s ease;
}

.btn:hover {
  background: white;
  color: black;
}
