html, body {
  margin: 0;
  padding: 0;
  background-color: black;
  color: white;
  font-family: Arial, sans-serif;
  height: 100%;
}

.navbar {
  position: sticky;
  top: 0;
  background-color: #111;
  border: 2px solid #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.2rem;
  box-shadow: 10px 10px 30px rgba(255, 0, 0, 0.7);
  border-radius: 13px;
  margin: 20px auto;
  width: 87%;
  z-index: 1000;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.navbar-logo span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin-left: 1.5rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ff0000;
}

.icon {
  width: 18px;
  height: 18px;
}

.nav-button {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: #ff0000;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
  border: 2px solid #fff;
}

.nav-button:hover {
  background-color: #cc0000;
}


.main-content {
  padding: 2rem 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.site-footer {
  background-color: #111;
  border: 2px solid #fff;
  border-radius: 13px;
  width: 87%;
  margin: 20px auto 40px auto;
  padding: 1rem 1.2rem;
  box-shadow: 0 2px 5px rgba(255, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 1000;
  color: white;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ff0000;
}

.footer-copyright {
  font-size: 0.9rem;
  color: #ccc;
  margin-top: 0.4rem;
}
