
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Press Start 2P', monospace;
  overflow: hidden;
}

#bg-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  object-fit: cover;
}

.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.buttons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

.btn {
  padding: 20px 50px;
  font-size: 18px;
  border: 3px solid #000;
  border-radius: 10px;
  background: #ffcc00;
  color: #000;
  cursor: pointer;
  transition: 0.2s;
}

.btn:hover {
  background: #ffd633;
  transform: scale(1.05);
}

h1, h2 {
  color: #ffcc00;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  padding: 40px;
}

.logout {
  text-align: center;
  margin-top: 20px;
}

.logout a {
  color: #ccc;
  text-decoration: none;
  font-family: 'Press Start 2P', monospace;
}
