body {
  background-color: #0a0a0a;
  color: #ddd;
  font-family: "Roboto Mono", monospace;
  margin: 0;
  padding: 0;
  text-align: center;
  overflow-x: hidden;
}

/* Terminal intro */
#terminal {
  background: black;
  color: #00ff00;
  height: 100vh;
  padding: 1rem;
  font-size: 0.9rem;
  text-align: left;
  overflow-y: auto;
}

#login-screen {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #111;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#login-screen input {
  margin: 0.3rem;
  padding: 0.5rem;
  border: none;
  border-radius: 4px;
}

#login-screen button {
  background: #f90;
  color: black;
  padding: 0.5rem 1rem;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.logo {
  font-size: 3rem;
  font-weight: bold;
}

.pwn {
  color: white;
}

.hub {
  background: #f90;
  color: black;
  padding: 0 0.4em;
  border-radius: 4px;
}

.tagline {
  color: #999;
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

.videos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem;
  gap: 1rem;
}

.video-card {
  background: #1a1a1a;
  border-radius: 8px;
  width: 300px;
  transition: transform 0.2s;
  cursor: pointer;
}

.video-card:hover {
  transform: scale(1.05);
}

.video-card img {
  width: 100%;
  border-radius: 8px 8px 0 0;
}

.video-card h3 {
  margin: 0.5rem;
  font-size: 1rem;
  color: #f90;
}

footer {
  margin-top: 2rem;
  padding: 1rem;
  border-top: 1px solid #333;
  font-size: 0.9rem;
  color: #777;
}

/* Popups */
.popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #f90;
  color: black;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  animation: fade 3s ease;
}
@keyframes fade {
  0% { opacity: 0; transform: translateY(10px); }
  10%, 90% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}
