body {
  margin: 0;
  background: #050608;
  color: #d6d6d6;
  font-family: monospace;
  overflow-x: hidden;
}

/* scanline effect */
body::before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.03) 1px,
    transparent 2px,
    transparent 4px
  );
  pointer-events: none;
}

.terminal {
  width: 800px;
  margin: 40px auto;
  padding: 20px;
  border: 1px solid #2a2a2a;
  background: rgba(10,10,10,0.7);
  box-shadow: 0 0 20px rgba(255,0,60,0.08);
}

.header {
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.header.small {
  margin-top: 30px;
  font-size: 14px;
  opacity: 0.8;
}

.line {
  height: 1px;
  background: #333;
  margin-top: 8px;
}

.block {
  margin-bottom: 12px;
}

.label {
  color: #888;
  font-size: 12px;
}

.value {
  font-size: 14px;
  margin-top: 2px;
}

.active {
  color: #ff2e4d;
  text-shadow: 0 0 6px rgba(255,0,60,0.4);
}

.list {
  line-height: 1.4;
}

.banner {
  position: relative;
  text-align: center;
  padding: 60px 20px;
  border-bottom: 2px solid #2b2b2b;
  background: linear-gradient(90deg, #050507, #0e0e14);
  overflow: hidden;
}

.banner-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,0,60,0.15), transparent 60%);
  top: 0;
  left: 0;
  animation: pulse 6s infinite;
}

.banner h1 {
  font-size: 32px;
  letter-spacing: 6px;
  color: #ff2e5f;
  text-shadow: 0 0 10px rgba(255, 0, 80, 0.6);
}

.subtitle {
  font-size: 12px;
  color: #7a7a7a;
  letter-spacing: 3px;
}


.nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 12px;
  background: #0b0b10;
  border-bottom: 1px solid #222;
}

.nav a {
  color: #aaa;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  transition: 0.3s;
}

.nav a:hover {
  color: #ff2e5f;
  text-shadow: 0 0 5px #ff2e5f;
}
.news-ticker {
    background: #050507;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    overflow: hidden;
    white-space: nowrap;
    height: 30px;

    display: flex;
    align-items: center;
}

.news-track {
    color: #ff2e5f;
    padding-left: 100%;
    animation: ticker 35s linear infinite;
    text-shadow: 0 0 8px rgba(255,46,95,.6);
    letter-spacing: 1px;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* archive entries */
.archive {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.entry {
  cursor: pointer;
  transition: 0.2s;
}

.entry:hover {
  transform: translateX(4px);
}

.box {
  border: 1px solid #333;
  padding: 10px;
  background: rgba(255,255,255,0.02);
}

.open {
  margin-top: 6px;
  color: #ff2e4d;
}

/* modal */
.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-box {
  width: 500px;
  background: #0b0b0b;
  border: 1px solid #333;
  padding: 20px;
}

.modal-line {
  height: 1px;
  background: #222;
  margin: 10px 0;
}

.close {
  margin-top: 15px;
  color: #ff2e4d;
  cursor: pointer;
}

.read-more {
  display: inline-block;
  margin-top: 12px;
  color: #ff2e4d;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  border: 1px solid #333;
  padding: 6px 10px;
  background: rgba(255,255,255,0.02);
  transition: 0.2s;
}

.read-more:hover {
  background: rgba(255, 46, 77, 0.1);
  transform: translateX(2px);
}

.hidden {
  display: none;
}