@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

body {
  background-color: #000;
  color: #0f0;
  font-family: 'VT323', monospace;
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

#warning-banner {
  background: #000;
  color: #ff0000;
  text-align: center;
  padding: 8px;
  font-weight: bold;
  animation: flicker 3s infinite;
  border-bottom: 1px solid #333;
}

@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 1; }
  20%, 24%, 55% { opacity: 0.3; }
}

.terminal {
  max-width: 800px;
  margin: 20px auto;
  padding: 0 20px;
}

pre {
  background: #000;
  color: #0f0;
  padding: 10px;
  border: 1px solid #0a0;
  overflow-x: auto;
}

.highlight {
  color: #ff00ff;
}

.corrupted {
  color: #ff0000;
  text-decoration: underline wavy red;
}

.tape-list {
  margin: 20px 0;
}

.tape-item {
  margin: 15px 0;
  padding-left: 10px;
  border-left: 2px solid #0a0;
}

.tape-item a {
  color: #0ff;
  text-decoration: none;
  font-size: 20px;
}

.tape-item a:hover {
  color: #ff00ff;
  text-shadow: 0 0 5px #ff00ff;
}

.desc {
  color: #aaa;
  font-size: 16px;
}

.login-prompt a {
  color: #ff00ff;
}

.footer {
  color: #555;
  margin-top: 40px;
  text-align: center;
}

.ritual-btn {
  background: #000;
  color: #ff0066;
  border: 1px solid #ff0066;
  font-family: 'VT323', monospace;
  font-size: 18px;
  padding: 8px 20px;
  margin-top: 15px;
  cursor: pointer;
}

.ritual-btn:hover {
  color: #ffffff;
  text-shadow: 0 0 8px #ff0066;
}

/* === 评论区样式 === */
.comments-section {
  margin-top: 30px;
  border-top: 1px dashed #333;
  padding-top: 20px;
}

.comment {
  background: #0a0a0a;
  border: 1px solid #222;
  padding: 12px;
  margin-bottom: 15px;
  font-size: 16px;
}

.comment .user {
  color: #00ffcc;
  font-weight: bold;
}

.comment .text {
  margin: 8px 0;
  color: #e0e0e0;
}

.comment .reply {
  color: #ff0066;
  font-style: italic;
  border-left: 2px solid #ff0066;
  padding-left: 10px;
  margin-top: 10px;
}

/* === CRT 扫描线（由 JS 注入，此处备用） === */
#daily-warning {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #000;
  color: #ff0066;
  border: 1px solid #ff0066;
  padding: 20px;
  font-family: 'VT323', monospace;
  font-size: 20px;
  z-index: 1000;
  text-align: center;
  box-shadow: 0 0 15px #ff0066;
}

/* 响应式 */
@media (max-width: 600px) {
  body { font-size: 16px; }
  .terminal { padding: 0 10px; }
}