html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: linear-gradient(160deg, #000 0%, #111 100%);
  color: white;
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.344rem;
  padding: 2rem;
  line-height: 1.5;
  text-align: center;
  opacity: 0;
  animation: fadeIn 1s forwards;
}

h1 {
  margin-top: 0;
  font-size: 3rem;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.avatar {
  display: inline-block;
  margin: 10px;
  text-align: center;
}

.avatar img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid #222;
  transition: transform 0.3s ease, border-color 0.3s;
}

.avatar img:hover {
  transform: scale(1.1);
  border-color: white;
}

.avatar-name {
  font-size: 0.8rem;
  color: #777;
  margin-top: 0.5rem;
}

.highlight {
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
  padding: 0.3em 0.6em;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  transition: background 0.3s;
  display: inline-block;
  margin-top: 1rem;
}

.highlight:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
}

.portal-link {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2rem;
  border: 2px solid white;
  color: #ccc;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.6rem;
  transition: 0.3s;
  letter-spacing: 1px;
}

.portal-link:hover {
  background-color: white;
  color: black;
  transform: scale(1.05);
}

.pportal-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid white;
  color: grey;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s, color 0.3s;
}

.pportal-link:hover {
  background-color: white;
  color: black;
}

.sentence {
  margin-top: 1rem;
  font-size: 1.12rem;
}

.clearnet {
  color: white;
  font-weight: bold;
}

.darkweb {
  color: red;
  font-weight: bold;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 25px;
}

.menu li {
  display: inline;
}

.menu a {
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.menu a:hover {
  color: #ff3b3b;
}
