body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  background-image: url('/assets/images/snakeskin-texture.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
#background-video {
  display: none;
}
header {
  background-color: transparent;
  padding: 5rem 2rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
header * {
  position: relative;
  z-index: 1;
}
header img {
  max-width: 400px;
  width: 100%;
  height: auto;
  margin-bottom: 2.5rem;
}
header h1 {
  margin: 0 0 0.5rem;
  font-size: 2.8rem;
  font-weight: 700;
}
header h2 {
  margin: 0 0 2rem;
  font-size: 1.6rem;
  font-weight: 400;
  color: #00E8C6;
}
header p {
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto 1.5rem;
  color: #ccc;
}
nav {
  background-color: #111;
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  z-index: 1000;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}
nav a:hover {
  color: #00E8C6;
}
section {
  padding: 4rem 2rem;
  max-width: 800px;
  margin: auto;
}
section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #00E8C6;
}
section ul {
  padding-left: 1.5rem;
}
section li {
  margin-bottom: 0.5rem;
}
footer {
  background-color: #111;
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #888;
}
a.button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #00E8C6;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
}
a.button:hover {
  background-color: #00c7ab;
}
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
form input, form textarea {
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}
form button {
  background-color: #00E8C6;
  color: #000;
  font-weight: bold;
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}