
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #1e1e1e;
  color: #ddd;
  line-height: 1.6;
  margin: 0;
}

h1 {
  color: #39d353;
  text-shadow: 0 0 8px #28a745;
  margin-bottom: 1.5rem;
  font-size: 3rem;
}

#logo {
  max-width: 150px;
  margin-bottom: 2rem;
}

:root {
  --navbar-height: 72px;
}

p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

a {
  color: #39d353;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.socials {
  margin-top: 2rem;
  font-size: 1.1rem;
}

.socials a {
  margin: 0 0.75rem;
}

iframe {
  max-width: 100%;
  height: 315px;
  border: none;
  margin-top: 1rem;
}

.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

footer {
  margin-top: 3rem;
  font-size: 0.85rem;
  color: #777;
}

.navbar-spacer {
  height: var(--navbar-height);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  background-color: #2c2c2c;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  z-index: 100;
  box-shadow: 0 0 10px #000;
}

.nav-logo img {
  height: 40px;
  filter: drop-shadow(0 0 5px #39d353);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #39d353;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-links li a:hover {
  color: #28a745;
  text-shadow: 0 0 6px #28a745;
}
