:root {
  --bg-dark: #001e1e;
  --teal: #00bfa6;
  --neon-yellow: #e0e000;
  --white: #ffffff;
  --highlight: rgba(0, 255, 230, 0.1);
}

.video-container {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.video-container iframe {
  border: 4px solid var(--neon-yellow);
  border-radius: 10px;
  box-shadow: 0 0 20px var(--teal);
  max-width: 100%;
}

body {
  margin: 0;
  background-color: var(--bg-dark);
  font-family: 'Roboto', sans-serif;
  color: var(--white);
}

header {
  background: radial-gradient(circle, var(--teal) 0%, #001212 100%);
  text-align: center;
  padding: 2.5rem 1rem;
  box-shadow: 0 4px 10px rgba(0, 255, 230, 0.3);
}

.logo {
  max-width: 160px;
  filter: drop-shadow(0 0 10px var(--neon-yellow));
}

h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.6rem;
  color: var(--white);
  margin-top: 0.5rem;
}

.slogan {
  color: var(--neon-yellow);
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

main {
  max-width: 960px;
  margin: auto;
  padding: 2rem;
}

section {
  margin-bottom: 2.5rem;
  background: var(--highlight);
  padding: 1.5rem;
  border-left: 5px solid var(--teal);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

section:hover {
  transform: translateY(-5px);
}

h2 {
  color: var(--neon-yellow);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1.1rem;
  line-height: 1.7;
}

footer {
  background-color: #002626;
  text-align: center;
  padding: 1.5rem 1rem;
  color: var(--neon-yellow);
}

footer button {
  margin-top: 1rem;
  background-color: var(--teal);
  color: #000;
  border: none;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 0 10px var(--teal);
  transition: background 0.3s;
}

footer button:hover {
  background-color: var(--neon-yellow);
}
