* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Orbitron', sans-serif;
}

body {
  background: #0b0e14;
  color: #fff;
}

.header {
  display: flex;
  justify-content: space-between;
  padding: 20px 50px;
  background: rgba(0,0,0,0.8);
  position: fixed;
  width: 100%;
  z-index: 100;
}

.logo {
  font-size: 24px;
  font-weight: 800;
}
.logo span {
  color: #00bfff;
}

.header nav a {
  color: #ccc;
  margin-left: 20px;
  text-decoration: none;
}
.header nav a:hover {
  color: #00bfff;
}

.hero {
  height: 100vh;
  background: #000;
  background-size: cover;
  background-position: center;
  position: relative;
}

.overlay {
  background: rgba(0,0,0,0.6);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 60px;
  margin-bottom: 10px;
}

.buttons {
  margin-top: 30px;
}

.btn {
  padding: 15px 30px;
  margin: 10px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
}

.btn.red { background: #c0392b; }
.btn.blue { background: #2980b9; }
.btn.dark { background: #2c3e50; }

.section {
  padding: 100px 50px;
  text-align: center;
}

.section.dark {
  background: #121826;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: #1a1f2e;
  padding: 40px;
  width: 250px;
  border-radius: 10px;
}

.footer {
  padding: 30px;
  text-align: center;
  background: #000;
}

.online {
  color: #00ff7f;
}


/**/


.video-background {
  position: relative;
  width: 100%;
  height: 100vh; /* altura da tela inteira */
  overflow: hidden;
}

.video-background .video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 1;
  object-fit: cover; /* garante que o vídeo cubra toda a section */
}

.video-background .content {
  position: relative;
  z-index: 2; /* fica acima do vídeo */
  color: white;
  text-align: center;
  padding: 20px;
}
