@font-face {
  font-family: 'EarlyGameBoy';
  src: url('Early%20GameBoy.ttf') format('truetype'),
       url('Early GameBoy.ttf') format('truetype');
}

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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 1920px;
  height: 1080px;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.center-card {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: black;
  color: white;
  padding: 32px 48px;
  max-width: 560px;
  width: 90vw;
  text-align: center;
}

.center-card p {
  font-family: 'EarlyGameBoy', monospace;
  font-size: clamp(9px, 1.2vw, 13px);
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.center-card a {
  display: inline-block;
  font-family: 'EarlyGameBoy', monospace;
  font-size: clamp(9px, 1.1vw, 12px);
  color: white;
  text-decoration: none;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid white;
  padding-bottom: 2px;
  transition: opacity 0.2s;
  word-break: break-all;
}

.center-card a:hover {
  opacity: 0.6;
}
