body {
  margin: 0;
  background-color: #1c1c1e;
  color: #e0e0e0;
  font-family: 'Roboto', sans-serif;
}

h1, h2 {
  font-family: 'Orbitron', sans-serif;
  color: #ff004f;
  text-shadow: 0 0 5px #ff004f;
}

a {
  color: #ff004f;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 0;
}

.header {
  background-color: #1c1c1e;
  border-bottom: 1px solid #6b0f1a;
  padding: 20px 0;
}

.header .logo {
  font-size: 28px;
  color: #ff004f;
  text-shadow: 0 0 8px #ff004f;
  margin: 0;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
}

nav ul li a {
  font-weight: bold;
  color: #e0e0e0;
}

.hero {
  background: url('../images/team.jpg') no-repeat center center/cover;
  background-blend-mode: multiply;
  background-color: rgba(0, 0, 0, 0.6);
  text-align: center;
  padding: 100px 20px;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.section {
  padding: 60px 20px;
}

.section.alt {
  background-color: #2c2c2e;
}

footer {
  text-align: center;
  padding: 30px;
  font-size: 14px;
  color: #888;
  border-top: 1px solid #6b0f
