html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: linear-gradient(135deg, #1e003c, #4b0082, #0ff);
  background-size: 400% 400%;
  animation: synthwave-bg 20s ease infinite;
  font-family: 'Press Start 2P', monospace;
  color: #00ff00;
  overflow: hidden;
}

@keyframes synthwave-bg {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.crt {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 255, 0, 0.05),
    rgba(0, 255, 0, 0.05) 2px,
    transparent 2px,
    transparent 4px
  );
  animation: flicker 0.15s infinite;
}

@keyframes flicker {
  0%, 100% { opacity: 0.92; }
  50% { opacity: 1; }
}

.container {
  padding: 2rem;
  z-index: 10;
  position: relative;
}

.ascii-box {
  font-size: 12px;
  line-height: 12px;
  color: #ff0;
  text-shadow:
    0 0 5px #f00,
    0 0 10px #f90,
    0 0 20px #ff0,
    0 0 30px #f00;
  margin: 2rem auto;
  width: max-content;
  text-align: center;
}

.marquee {
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
  color: #0f0;
  font-size: 10px;
  padding: 10px;
  background: #000;
  border-top: 1px solid #0f0;
  border-bottom: 1px solid #0f0;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 10s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.madeinvi-banner {
  position: absolute;
  top: 90%;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  display: none;
  z-index: 9999;
  font-size: 14px;
  font-family: 'Press Start 2P', monospace;
  color: #ff00ff;
  text-shadow:
    0 0 5px #f0f,
    0 0 10px #0ff,
    0 0 20px #0ff;
  background: linear-gradient(90deg, #000, #111, #000);
  padding: 10px 0;
}

.madeinvi-banner span {
  display: inline-block;
  padding-left: 100%;
  animation: madeinvi-marquee 20s linear infinite;
}

@keyframes madeinvi-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Terminal feed styles */
.terminal-feed {
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  border: 1px solid #0f0;
  max-width: 800px;
  margin: 0 auto;
  font-size: 12px;
  overflow-y: auto;
  height: 400px;
}

.tip {
  margin-bottom: 10px;
  cursor: pointer;
}

.tip-date {
  color: #ff0;
}

.tip-category {
  color: #0ff;
}

.tip-details {
  display: none;
  margin-top: 5px;
  color: #fff;
}

.loading {
  color: #ff0;
}

