@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;
  border: 3px solid #008F24;
}

.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;
}

.buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: center;
}

.btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'EarlyGameBoy', monospace;
  font-size: clamp(9px, 1.1vw, 12px);
  color: white;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 3px solid #008F24;
  padding: 10px 20px;
  background: black;
  transition: background 0.2s, color 0.2s;
}

.btn:hover {
  background: #008F24;
  color: black;
}

.btn i {
  font-size: 1.1em;
}
