/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/3/36/No_signal.gif'); /* CRT static */
  background-size: cover;
  background-attachment: fixed;
  color: #ccc;
  font-family: 'Courier New', monospace;
  text-shadow: 1px 1px 2px #000;
}

/* Glitchy Header */
header {
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/3/36/No_signal.gif'); /* CRT static */
  background-size: cover;
  background-attachment: fixed;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  color: #ff3b3b;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Navigation */
nav ul {
  list-style: none;
  margin-top: 1rem;
}

nav ul li {
  display: inline-block;
  margin: 0 1rem;
}

nav ul li a {
  color: #ccc;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease-in-out;
}

nav ul li a:hover {
  color: #ff3b3b;
  border-bottom: 1px solid #ff3b3b;
}

/* Main Content */
main {
  max-width: 700px;
  margin: 3rem auto;
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 10px #111;
}

/* Post Links */
.link-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.link-list a {
  font-size: 1.25rem;
  color: #ddd;
  text-decoration: none;
  background-color: #111;
  padding: 0.75rem;
  border-left: 5px solid #ff0000;
  box-shadow: 2px 2px 0 #222;
  transition: background 0.2s, color 0.2s;
}

.link-list a:hover {
  background-color: #222;
  color: #ff3b3b;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  color: #666;
  font-size: 0.9rem;
}

#bg-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100vw;
  min-height: 100vh;
  z-index: -1;
  filter: grayscale(100%) contrast(200%);
  opacity: 0.25;
}

.site-title {
  font-family: 'Courier New', monospace;
  font-size: 2.8rem;
  text-align: center;
  text-transform: uppercase;
  color: #ff3b3b;
  letter-spacing: 2px;
  padding: 2rem 1rem;
  background-color: rgba(0, 0, 0, 0.85);
  border-bottom: 2px dashed #ff0000;
  text-shadow: 
    2px 2px 0 #000,
    -1px -1px 0 #ff0000,
    1px -1px 0 #ff0000,
    -1px 1px 0 #000;
  animation: glitch 1.2s infinite;
}

/* Glitch Animation */
@keyframes glitch {
  0% {
    text-shadow: 2px 2px 0 #000;
  }
  20% {
    text-shadow: -2px -1px 0 #ff0000, 1px 1px 0 #000;
  }
  40% {
    text-shadow: 1px -2px 0 #ff0000, -1px 2px 0 #000;
  }
  60% {
    text-shadow: 2px 1px 0 #ff0000, -2px -2px 0 #000;
  }
  80% {
    text-shadow: -1px 2px 0 #ff0000, 2px -1px 0 #000;
  }
  100% {
    text-shadow: 2px 2px 0 #000;
  }
}
  
.tv-frame {
  width: 90vw;
  max-width: 800px;
  background: #222;
  border: 20px solid #333;
  border-radius: 30px;
  box-shadow:
    inset 0 0 50px #000,
    0 0 20px #ff0000,
    0 0 60px #0ff inset;
  position: relative;
}

.tv-frame::before {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 15px;
  height: 15px;
  background: radial-gradient(#ff0000, #800);
  border-radius: 50%;
  box-shadow: 0 0 5px #f00;
}

.tv-screen {
  height: 100%;
  padding: 2rem;
  background: radial-gradient(ellipse at center, #111 0%, #000 100%);
  box-shadow: inset 0 0 60px #0f0;
  border-radius: 10px;
  overflow: auto;
}

.post h2 {
  color: #0ff;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.post p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

