* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Oswald', sans-serif;
  color: #fff;
  background-color: #000;
  overflow-x: hidden;
}
header, section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
}
video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(60%);
}
header h1 {
  font-size: 3rem;
  letter-spacing: 3px;
}
header p {
  font-size: 1.2rem;
  margin-top: 1rem;
}
.btn {
  margin-top: 2rem;
  padding: 0.8rem 2rem;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}
.btn:hover {
  background-color: #fff;
  color: #000;
}
section {
  background-color: #000;
  padding: 4rem 2rem;
}
section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
section p {
  max-width: 700px;
  line-height: 1.6;
  font-size: 1.1rem;
  margin: 0 auto 2rem;
}
footer {
  background: #111;
  padding: 2rem 0;
  text-align: center;
}
footer a {
  color: #fff;
  margin: 0 1rem;
  font-size: 1.8rem;
  transition: color 0.3s;
}
footer a:hover {
  color: #f00; /* Accent red */
}
.logo {
  width: 220px; /* Adjust as needed */
  height: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 6px rgba(0,0,0,0.6)); /* Optional for dark video contrast */
}
@media (max-width: 600px) {
  .logo {
    width: 160px;
  }
}
.visually-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}