body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  font-family: Arial, sans-serif;
  background: black;
}

.video-container {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: blur(5px);
  z-index: 1;
}

.stats-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.65);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  color: white;
  z-index: 2;
  max-width: 90%;
  width: 450px;
}

.stats-box .logo {
  width: 80px;
  height: auto;
  margin-bottom: 10px;
}

.stats-box h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

ol {
  list-style: decimal inside;
  padding: 0;
  margin: 0 0 20px 0;
  text-align: left;
}

ol li {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.player {
  font-weight: bold;
}

.ammopacks {
  font-family: monospace;
}

.volver-btn {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(255,255,255,0.2);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.volver-btn:hover {
  background: rgba(255,255,255,0.4);
}

@media (max-width: 600px) {
  .stats-box {
    width: 90%;
    padding: 20px;
  }

  .stats-box h2 {
    font-size: 1.4rem;
  }

  ol li {
    font-size: 0.9rem;
  }
}
