body {
  margin: 0;
  padding: 0;
  background-color: #0d0d0d;
  color: #ffffff;
  font-family: 'Press Start 2P', monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  overflow: hidden;
}

.hidden {
  display: none;
}

.container {
  max-width: 800px;
  padding: 2rem;
  animation: fadeIn 1.2s ease-in-out;
}

header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 0.75rem;
  color: #00ffe1;
}

.about p {
  margin: 1rem 0;
  font-size: 0.75rem;
}

.links h2,
.memes h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #ffcc00;
}

.socials,
.memes {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.socials a {
  color: #ffffff;
  background-color: #1a1a1a;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border: 1px solid #333;
  border-radius: 5px;
  transition: background 0.3s;
}

.socials a:hover {
  background-color: #333;
  color: #00ffe1;
}

button {
  margin-top: 0.5rem;
  padding: 0.6rem 1rem;
  font-size: 0.75rem;
  cursor: pointer;
  background: #00ffe1;
  color: black;
  border: none;
  border-radius: 5px;
}

footer {
  margin-top: 3rem;
  font-size: 0.6rem;
  opacity: 0.6;
}

/* Boot Screen */
#boot-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  color: green;
  font-size: 0.75rem;
  padding: 2rem;
  font-family: monospace;
  display: flex;
  justify-content: center;
  align-items: center;
}

.boot-text {
  max-width: 600px;
  animation: typing 4s steps(40) 1;
}

.blink {
  animation: blink 1s infinite;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}
