html, body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #001f3f;
  height: 100vh;
  overflow: hidden;
  color: #ffffff;
  position: relative;
}

.pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/pattern.png');
  background-repeat: repeat;
  background-size: 300px;
  animation: movePattern 60s linear infinite;
  opacity: 0.08;
  z-index: 0;
}

@keyframes movePattern {
  from { background-position: 0 0; }
  to { background-position: -1000px 0; }
}

.container {
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  padding: 20px;
}

.info-block {
  background-color: #1e1e1e;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
  max-width: 700px;
  width: 100%;
}

.banner {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info h1, .info p {
  margin: 4px 0;
  line-height: 1.2;
}

.steam-link {
  color: #4ea8ff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.steam-link:hover {
  color: #81cfff;
}

button {
  margin-top: 20px;
  background-color: #0070c0; /* azul marinho mais claro */
  color: white;
  font-size: 1.1rem;
  border: none;
  padding: 15px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  transform: scale(1.05);
  background-color: #0084e0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

video {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 9999;
  pointer-events: none;
}
