/* style.css for Oh, Audrey - Lo-fi MySpace + VHS Noir aesthetic */

body {
  background-color: #0a0a0a;
  color: #7e1f1f; /* wine red text */
  font-family: 'Courier New', monospace;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.top-nav {
  background-color: #111;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  font-family: 'UnifrakturCook', serif;
  font-size: 1.1rem;
  border-bottom: 2px solid #5f5f5f;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-nav a {
  color: #7e1f1f;
  text-decoration: none;
  transition: color 0.3s;
}

.top-nav a:hover {
  color: #fff;
  text-shadow: 0 0 8px #7e1f1f;
}

p {
  text-align: center;
  margin-top: 30px;
  font-size: 1rem;
  color: #7e1f1f;
  opacity: 0.8;
  animation: flicker 2.5s infinite alternate;
}

@keyframes flicker {
  0% { opacity: 0.8; }
  5% { opacity: 0.4; }
  10% { opacity: 0.9; }
  15% { opacity: 0.5; }
  20% { opacity: 0.7; }
  100% { opacity: 0.8; }
}

.crt-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
}

.crt-screen {
  background-color: #111;
  border: 6px solid #7e1f1f;
  width: 350px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 20px #7e1f1f88;
  font-family: 'Courier New', monospace;
  animation: flicker 2.5s infinite alternate;
}

.crt-text {
  color: #7e1f1f;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.crt-screen a {
  display: block;
  color: #7e1f1f;
  text-decoration: none;
  margin: 6px 0;
  transition: color 0.3s;
}

.crt-screen a:hover {
  color: #fff;
  text-shadow: 0 0 5px #7e1f1f;
}

