:root {
  --bg-color: #000000;
  --text-color: #e0e0d0;
  --accent-color: #ff66cc;
}


.secondary {
  color: #66ffff;
  text-shadow: 0 0 4px #66ffff88, 0 0 2px #00cccc;
}


.glitch-line::after {
  content: attr(data-text);
  position: absolute;
  left: 2px;
  text-shadow: -1px 0 magenta;
  opacity: 0.3;
}

body {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6); 
  z-index: 0;
  pointer-events: none;
}

.onion-title {
  font-size: 3em;
   color: #00ffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
 font-family: 'Share Tech Mono', monospace;
  text-align: center;
  position: relative;
  text-shadow:
    0 0 4px #ff66cc,
    0 0 8px #ff99cc,
    0 0 12px #33ffff;
  z-index: 1;
}

.subtitle {
  font-size: 2.8em;
  color: #00ffff;
font-family: 'Share Tech Mono', monospace;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: -0.5em;
  margin-bottom: 1.5em;
  text-shadow:
    0 0 4px #ff66cc,
    0 0 8px #ff99cc,
    0 0 12px #33ffff;
}


p {
 font-family: 'Share Tech Mono', monospace;
  font-size: 1.1em;
  color: #33ffff; 
  text-shadow:
    0 0 4px #ff66cc,  
    0 0 8px #ff99cc,  
    0 0 12px #33ffff,  
    0 0 18px #ff66cc;  
  line-height: 1.6;
  margin-bottom: 1.5em;
}


body.scanlines {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Share Tech Mono', monospace;
  text-align: center;
  padding: 3em 2em;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  z-index: 0;
}


body.scanlines::before {
  content: "";
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.03) 2px,
    transparent 2px,
    transparent 4px
  );
  z-index: 1;
  mix-blend-mode: overlay;
}


h1#theme-title {
  color: var(--accent-color);
  font-size: 3.5em;
  font-family: 'Share Tech Mono', monospace;
  position: relative;
  overflow: hidden;
  z-index: 2;
}


h1#theme-title::before {
  top: 2px;
  color: #00ffff;
  z-index: -1;
}

h1#theme-title::after {
  top: -2px;
  color: #ff0033;
  z-index: -2;
}

#theme-label {
  margin-top: 1.5em;
}


.tape-button {
  display: block;
  font-family: 'Share Tech Mono', monospace;
  font-size: 1em;
  padding: 0.4em 1.2em;
  background-color: #ff66cc;
  color: #ffffff;
  border: 2px solid #ff99dd;
  border-radius: 0; 
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 auto;
  width: 100%;
  box-shadow:
    inset 0 0 8px #ff99dd,
    0 0 8px #ff66cc;
  text-shadow:
    1px 1px 2px #cc0066,
    0 0 6px #ffffff80;
  transition: background-color 0.3s, transform 0.2s;
}

.tape-button:hover {
  background-color: #ff3399;
  transform: scale(1.02);
}


.button {
  display: inline-block;
 font-family: 'Share Tech Mono', monospace;
  font-size: 1.1em;
  padding: 0.6em 1.4em;
  max-width: 300px;
  width: 100%;
  margin: 0.5em auto;
  background-color: transparent;
  color: #ff66cc;
  border: 2px solid #00ffff;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  text-shadow:
    0 0 4px #ff66cc,
    0 0 8px #ff66cc,
    0 0 12px #ff66cc,
    0 0 16px #00ffff,
    0 0 20px #00ffff,
    0 0 24px #00ffff;
  box-shadow:
    0 0 8px #00ffff,
    0 0 16px #00ffff,
    0 0 24px #00ffff,
    0 0 32px #ff66cc;
  transition: background-color 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s, text-shadow 0.3s;
}

.button:hover {
  background-color: rgba(0, 255, 255, 0.3);
  color: #ffffff;
  text-shadow:
    0 0 6px #ffffff,
    0 0 12px #ffffff,
    0 0 18px #00ffff,
    0 0 24px #00ffff,
    0 0 30px #ff66cc,
    0 0 36px #ff66cc;
  box-shadow:
    0 0 10px #00ffff,
    0 0 20px #00ffff,
    0 0 30px #ff66cc,
    0 0 40px #ff66cc;
  transform: scale(1.09);
}


footer {
  background-color: #0a0a0a;
  color: #33ffff;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.9em;
  text-align: center;
  padding: 2em 1em;
  margin-top: 4em;
  border-top: 2px solid #33ffff40;
  box-shadow: 0 -5px 15px #33ffff20;
  text-shadow: 0 0 6px #33ffff60;
  position: relative;
  z-index: 2;
}

footer a {
  color: #ff66cc;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ffffff;
  text-shadow: 0 0 8px #ffffff;
}

footer::before {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.03) 2px,
    transparent 2px,
    transparent 4px
  );
  z-index: 0;
  mix-blend-mode: overlay;
}

.label-row {
  display: block;
  margin: 0.3em auto;
  text-align: center;
  max-width: 320px; 
}


.vhs-track {
  display: inline-block;
}

.tape-timecode {
  font-family: 'Share Tech Mono', monospace;
  color: #00ffff;
  font-size: 1em;
  text-align: center;
  margin-top: 0.5em;
  text-shadow: 0 0 4px #00ffff, 0 0 6px #ff66cc;
}



.neon-ticker {
  width: 100%;
  overflow: hidden;
  background-color: #0a0a0a;
  border-top: 2px solid #ff66cc;
  border-bottom: 2px solid #ff66cc;
  box-shadow: 0 0 10px #ff66cc;
  padding: 0.5em 0;
  margin-top: 2em;
}

.ticker-text {
  display: inline-block;
  white-space: nowrap;
  color: #00ffff;
  font-family: 'Share Tech Mono', monospace;
  font-size: 1em;
  text-shadow:
    0 0 4px #00ffff,
    0 0 8px #ff66cc;
}

.hover-reveal {
  position: relative;
  display: inline-block;
  color: #ff66cc;
  cursor: pointer;
  font-weight: bold;
  margin: 2em auto;
}

.hidden-link {
  display: none;
  margin-top: 0.5em;
  color: #33ffff;
  text-shadow: 0 0 6px #33ffff;
  text-decoration: none;
  font-size: 0.9em;
  transition: opacity 0.3s ease;
}

.hover-reveal:hover .hidden-link {
  display: inline-block;
}









