/* Base */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  color: #fff;
  background: #0a0a0a;
  line-height: 1.6;
}

/* Hero */
.hero {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url("https://images.pexels.com/photos/1648535/pexels-photo-1648535.jpeg");
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 100px 20px;
}
.hero h1 {
  font-size: 3rem;
  letter-spacing: 1.5px;
}
.hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* Sections */
.section {
  padding: 40px 20px;
  text-align: center;
}
.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.section h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

/* Video */
.video-container {
  max-width: 600px;
  margin: 0 auto 40px auto;
}

/* Social links */
.socials a {
  display: inline-block;
  margin: 10px 15px;
  padding: 10px 20px;
  background: #222;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}
.socials a:hover {
  background: #555;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #111;
  font-size: 0.9rem;
}