
*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    font-size:16px;
}

body{

    background:#050505;
    color:#fff;

    font-family:"Courier New",monospace;

    line-height:1.7;

    min-height:100vh;

}


a{

    color:#fff;

    text-decoration:none;

    transition:.2s;

}

a:hover{

    color:#bbb;

}


.container{

    width:min(1000px,92vw);

    margin:50px auto;

    border:1px solid #444;

    background:#0a0a0a;

}

.page-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 24px;

    border-bottom:1px solid #333;

}

.page-title{

    text-transform:uppercase;

    letter-spacing:.25em;

    font-size:.95rem;

}

.back-link{

    opacity:.6;

    font-size:.8rem;

}

.back-link:hover{

    opacity:1;

}

.window{

    display:grid;

    grid-template-columns:220px 1fr;

    min-height:550px;

}


.sidebar{

    border-right:1px solid #333;

    padding:22px;

}

.sidebar h2{

    font-size:.8rem;

    letter-spacing:.2em;

    margin-bottom:25px;

    opacity:.6;

}

.nav-links{

    list-style:none;

    display:flex;

    flex-direction:column;

    gap:8px;

}

.nav-links a{

    display:block;

    padding:8px 10px;

    border:1px solid transparent;

    text-transform:uppercase;

    letter-spacing:.12em;

    font-size:.85rem;

}

.nav-links a:hover{

    border:1px solid #666;

    background:#111;

}

.content{

    padding:35px;

}

.content h1{

    font-size:1.5rem;

    font-weight:normal;

    text-transform:uppercase;

    letter-spacing:.15em;

    margin-bottom:25px;

}

.content p{

    opacity:.85;

    margin-bottom:18px;

}

.info-box{

    border:1px solid #333;

    padding:18px;

    margin-bottom:25px;

}

.info-row{

    display:flex;

    justify-content:space-between;

    border-bottom:1px dashed #222;

    padding:8px 0;

}

.info-row:last-child{

    border:none;

}
.home-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
}

.home-wrapper h1 {
  font-size: 2rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.nav-links a{

    display:block;

    padding:8px;

    border:none;

}

.nav-links a:hover{

    background:white;

    color:black;

}
.entry-toggle{

    border-bottom:1px dashed #333;

    padding:12px;

}

.page-header {
  margin-bottom: 2.5rem;
}

.back-link {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  opacity: 0.6;
  border-bottom: none;
}

.back-link:hover {
  opacity: 1;
}

.page-header h1 {
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 1rem;
}

.about-content p {
  margin-bottom: 1.25rem;
  opacity: 0.85;
}

.track {
  border-top: 1px solid #333;
  padding: 1.5rem 0;
}

.track:last-child {
  border-bottom: 1px solid #333;
}

.track-title {
  font-size: 1.05rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.track-artist {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-bottom: 0.5rem;
}

.track-note {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 0.75rem;
}
.player {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.play-btn {
  background: none;
  border: 1px solid #555;
  color: #fff;
  width: 36px;
  height: 36px;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}

.play-btn:hover {
  border-color: #fff;
}

.progress-bar {
  flex: 1;
  height: 2px;
  background: #333;
  cursor: pointer;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: #fff;
  width: 0%;
  transition: width 0.1s linear;
}

.player-time {
  font-size: 0.75rem;
  opacity: 0.5;
  min-width: 70px;
  text-align: right;
}

.entry {
  border-top: 1px solid #333;
}

.entry:last-child {
  border-bottom: 1px solid #333;
}

.entry-toggle {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  padding: 1rem 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.05em;
}

.entry-toggle:hover {
  opacity: 0.8;
}

.entry-toggle .arrow {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.entry.open .arrow {
  transform: rotate(90deg);
}

.entry-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 0;
}

.entry.open .entry-body {
  max-height: 600px;
  padding: 0 0 1.25rem 0;
}

.entry-body p {
  opacity: 0.8;
  font-size: 0.95rem;
  line-height: 1.7;
}
.crt-overlay {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 2px,
    rgba(0, 0, 0, 0.15) 2px,
    rgba(0, 0, 0, 0.15) 4px
  );
  animation: crt-flicker 0.1s infinite;
}

@keyframes crt-flicker {
  0%   { opacity: 0.95; }
  50%  { opacity: 1; }
  100% { opacity: 0.96; }
}
.noise {
  pointer-events: none;
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  z-index: 9998;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04;
  animation: noise-move 0.2s steps(3) infinite;
}

@keyframes noise-move {
  0%   { transform: translate(0, 0); }
  33%  { transform: translate(-5px, -5px); }
  66%  { transform: translate(5px, 3px); }
  100% { transform: translate(0, 0); }
}
.glitch {
  position: relative;
  display: inline-block;
  animation: glitch-skew 4s infinite;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  color: #fff;
  animation: glitch-1 3s infinite linear;
  clip-path: inset(0 0 80% 0);
  text-shadow: -2px 0 rgba(255, 0, 0, 0.6);
}

.glitch::after {
  color: #fff;
  animation: glitch-2 3s infinite linear;
  clip-path: inset(80% 0 0 0);
  text-shadow: 2px 0 rgba(0, 255, 255, 0.6);
}

@keyframes glitch-1 {
  0%    { clip-path: inset(10% 0 85% 0); transform: translate(0); }
  5%    { clip-path: inset(45% 0 40% 0); transform: translate(-3px); }
  10%   { clip-path: inset(20% 0 60% 0); transform: translate(3px); }
  15%   { clip-path: inset(70% 0 10% 0); transform: translate(0); }
  20%   { clip-path: inset(5% 0 80% 0); transform: translate(-2px); }
  25%   { clip-path: inset(0 0 90% 0); transform: translate(0); }
  30%, 100% { clip-path: inset(0 0 100% 0); transform: translate(0); }
}

@keyframes glitch-2 {
  0%    { clip-path: inset(85% 0 5% 0); transform: translate(0); }
  5%    { clip-path: inset(30% 0 50% 0); transform: translate(2px); }
  10%   { clip-path: inset(60% 0 20% 0); transform: translate(-2px); }
  15%   { clip-path: inset(15% 0 65% 0); transform: translate(0); }
  20%   { clip-path: inset(80% 0 5% 0); transform: translate(3px); }
  25%   { clip-path: inset(90% 0 0 0); transform: translate(0); }
  30%, 100% { clip-path: inset(100% 0 0 0); transform: translate(0); }
}

@keyframes glitch-skew {
  0%    { transform: skew(0deg); }
  2%    { transform: skew(1deg); }
  4%    { transform: skew(-0.5deg); }
  6%    { transform: skew(0deg); }
  100%  { transform: skew(0deg); }
}


.redacted {
  background: #fff;
  color: #fff;
  padding: 0 0.2em;
  cursor: pointer;
  transition: background 0.4s ease, color 0.4s ease;
  user-select: none;
}


.redacted:hover {
  background: transparent;
  color: #fff;
}
.static-burst {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: #fff;
  pointer-events: none;
  animation: static-flash 0.6s ease-out forwards;
}
.static-burst::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: noise-move 0.1s steps(5) infinite;
}


@keyframes static-flash {
  0%   { opacity: 1; }
  30%  { opacity: 0.7; }
  50%  { opacity: 0.3; }
  70%  { opacity: 0.1; }
  100% { opacity: 0; visibility: hidden; }
}
.status-bar {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: center;
}


.status-bar span {
  display: block;
}


.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  margin-right: 0.4rem;
  animation: blink-dot 2s infinite;
  vertical-align: middle;
}
@keyframes blink-dot {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.2; }
}
.vhs-timestamp {
  font-size: 0.7rem;
  opacity: 0.4;
  letter-spacing: 0.12em;
  font-family: 'Courier New', monospace;
}
.site-footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.75rem;
  opacity: 0.35;
  letter-spacing: 0.08em;
}