body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background: #0b0b0b;
  color: #fff;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  filter: brightness(0.35);
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
}

/* LOGO */
.hero-logo {
  width: 130px;
  margin-bottom: 20px;
}

/* TEXT */
.hero h1 {
  font-size: 3rem;
  letter-spacing: 3px;
  margin: 0;
}

.hero p {
  margin: 10px 0 20px;
  font-size: 1.2rem;
}

/* BUTTON */
.btn {
  padding: 12px 25px;
  background: #8B0000;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.btn:hover {
  background: #b30000;
}

/* SECTIONS */
.section {
  padding: 60px 20px;
  text-align: center;
}

.section h2 {
  margin-bottom: 15px;
}

/* SOCIALS */
.socials {
  text-align: center;
  padding: 30px;
}

.socials a {
  color: white;
  text-decoration: none;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  margin: 0 10px;
  color: white;
  font-size: 20px;
}

/* LEGAL */
.legal {
  text-align: center;
  padding: 20px;
  font-size: 12px;
}

.legal a {
  margin: 0 10px;
  color: #aaa;
  text-decoration: none;
}