body {
  margin: 0;
  background-color: #0d1117;
  font-family: 'Fira Code', monospace;
  color: #c9d1d9;
}

.fade-in {
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.zoka-navbar {
  background: #161b22;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Fira Code', monospace;
  border-bottom: 1px solid #21262d;
}

.nav-brand {
  font-size: 1.3rem;
  font-weight: bold;
  color: #58a6ff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #c9d1d9;
  font-size: 0.95rem;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: #58a6ff;
  text-shadow: 0 0 8px rgba(88, 166, 255, 0.3);
}

.legal-container {
  max-width: 700px;
  margin: 60px auto;
  padding: 0 20px;
}

.legal-container h1 {
  font-size: 2rem;
  color: #58a6ff;
  margin-bottom: 10px;
}

.legal-container p {
  color: #8b949e;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.legal-container h2 {
  color: #c9d1d9;
  margin-top: 30px;
  font-size: 1.2rem;
}

.legal-container a {
  color: #79c0ff;
  text-decoration: none;
}

.legal-container a:hover {
  text-decoration: underline;
}

.footer {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 60px;
  padding-bottom: 20px;
  color: #6e7681;
}

.footer a {
  color: #8b949e;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}
body {
  font-family: 'Fira Code', monospace;
  background: #0d1117;
  color: #c9d1d9;
  margin: 0;
  padding: 0;
}

.zoka-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10,10,10,0.95);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #1a1a1a;
  z-index: 9999;
}

.nav-brand {
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.9rem;
}

.nav-links a:hover {
  color: #fff;
}

.menu-icon {
  display: none;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
}

#menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 2rem;
    flex-direction: column;
    align-items: flex-end;
    background: #111;
    padding: 1rem;
    border-radius: 8px;
    display: none;
  }

  #menu-toggle:checked ~ .nav-links {
    display: flex;
  }
}

.legal-container {
  max-width: 800px;
  margin: 120px auto 40px;
  padding: 0 20px;
}

.legal-container h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.legal-container h2 {
  font-size: 1.2rem;
  margin-top: 2rem;
  color: #58a6ff;
}

.legal-container p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #c9d1d9;
}

.footer {
  text-align: center;
  padding: 30px 20px;
  font-size: 0.85rem;
  color: #8b949e;
  background-color: #161b22;
}

.footer a {
  color: #58a6ff;
  text-decoration: none;
}
.zoka-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #0a0a0a;
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  z-index: 9999;
  font-family: 'Fira Code', monospace;
}

.nav-brand {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.2rem;
}

.nav-links li a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.9rem;
}

@media screen and (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    right: 2rem;
    top: 4.2rem;
    background: #111;
    padding: 1rem;
    border-radius: 8px;
  }

  .nav-links.active {
    display: flex;
  }
}
