@font-face {
    font-family: 'vcrosdmono';
    src: url('vcrosdmono.ttf');
}

* {
    user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

body {
    margin: 0;
    background-color: rgba(10, 10, 10, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'vcrosdmono', sans-serif;
    color: #FFFFFF;
    background-image: url('scarebg.png');
    background-size: cover;
    font-family: 'vcrosdmono', sans-serif; 
    height: 100vh;
    overflow: hidden; 
    z-index: 5;
}

.container {
    background-color: rgba(20, 20, 20, 0.95);
    padding: 20px;
    border-radius: 12px;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.back-button {
  	position: fixed;
  	top: 20px;
  	left: 20px;
  	padding: 8px 16px;
  	background-color: #1C1C1C;
  	color: white;
  	border: none;
  	border-radius: 12px;
  	font-family: 'vcrosdmono', sans-serif;
  	font-size: 0.9rem;
  	cursor: pointer;
  	z-index: 1001;
  	width: auto;
  	display: inline-block;
  	transition: background-color 0.3s, box-shadow 0.3s;
}

.back-button:hover {
	  background-color: #2C2C2C;
    box-shadow: 0 0 6px #ffffff66, 0 0 12px #ffffff33;
}

button {
    margin: 10px 0;
    padding: 10px 20px;
    border: none;
    width: 100%;
    border-radius: 12px;
    background-color: #2C2C2C;
    color: #FFFFFF;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
}

button:hover {
    background-color: #2C2C2C;
    box-shadow: 0 0 6px #ffffff66, 0 0 12px #ffffff33;
}

.tabs {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-bottom: 20px;
}

.tab {
    cursor: pointer;
    padding: 10px;
    background-color: #2C2C2C;
    border-radius: 12px;
    text-align: center;
    width: 100%;
    margin-right: 5px;
}

.tab:hover {
    box-shadow: 0 0 6px #ffffff66, 0 0 12px #ffffff33;
}

.tab.active {
    background-color: #3C3C3C;
}

.tab-content {
    display: none;
    width: 100%;
}

.tab-content.active {
    display: block;
}

.scroll-container {
    max-height: 300px;
    overflow-y: auto;
    width: 100%;
    padding-right: 10px;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #1f1f1f;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1f1f1f;
}

body:before, body:after {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

body:before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url('static.gif') center center / cover no-repeat;
  opacity: 0.1;
  pointer-events: none;
  z-index: 9999;
}

body:after {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  pointer-events: none;
  z-index: 9998;
}

@keyframes Static {
	0% { background-position: 0px 0px; }
	100% { background-position: 0px 4px; }
}


#overlay-image {
        position: absolute;
        bottom: 40px; 
        left: 3%;
        z-index: 9;
        width: 500px;
    }

#animated-text {
    position: absolute;
    bottom: 300px; 
    left: 10%;
    z-index: 9;
    font-family: url('countdown.ttf'), sans-serif;
    font-size: 36px; 
    color: white;
    text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000; 
    box-shadow: #000;
    white-space: nowrap;
}

@keyframes blinkCursor {
    from { border-right-color: white; }
    to { border-right-color: transparent; }
}

.typed-text {
    animation: blinkCursor 0.7s step-end infinite;
}

#header {
    position: relative;
    z-index: 1;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    backdrop-filter: blur(3px);
    overflow: hidden;
    z-index: 10000;
}

.modal-content {
    position: relative;
    background-color: #111;
    margin: 5% auto;
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 1000px;
    color: white;
    font-family: monospace;
    white-space: pre-wrap;
    word-wrap: break-word;
    position: relative;
    border: 1px solid #333;
    max-height: 80vh;
    overflow: hidden;
}

.modal-body {
    overflow-y: auto; 
    max-height: 70vh;
    padding-right: 10px;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    font-family: sans-serif;
    z-index: 2100;
    padding: 0;
    width: auto;
    height: auto;
    transition: color 0.3s ease;
}

.close-button:hover {
    color: #f00;
}

.close-button:focus {
    outline: none;
}

#modal-text {
    user-select: text;
}

#fake-terminal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  color: #00ff00;
  font-family: monospace;
  font-size: 1rem;
  padding: 20px;
  z-index: 99999;
}

.terminal-screen {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  white-space: pre-line;
}

.terminal-text::after {
  content: "_";
  animation: blink 0.7s steps(1) infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.glitch-text {
  font-weight: bold;
  color: white;
  position: relative;
  text-align: center;
  z-index: 1;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  color: white;
  clip: rect(0, 0, 0, 0);
}

.glitch-text.glitch::before {
  text-shadow: -2px 0 red;
  animation: glitchTop 0.3s ease-in-out infinite;
}

.glitch-text.glitch::after {
  text-shadow: 2px 0 cyan;
  animation: glitchBottom 0.3s ease-in-out infinite;
}

@keyframes glitchTop {
  0% {
    clip: rect(0, 9999px, 0, 0);
    transform: translate(-2px, -2px);
  }
  25% {
    clip: rect(5px, 9999px, 20px, 0);
    transform: translate(2px, 0);
  }
  50% {
    clip: rect(10px, 9999px, 40px, 0);
    transform: translate(-1px, 1px);
  }
  100% {
    clip: rect(0, 9999px, 0, 0);
    transform: translate(0, 0);
  }
}

@keyframes glitchBottom {
  0% {
    clip: rect(0, 9999px, 0, 0);
    transform: translate(2px, 2px);
  }
  25% {
    clip: rect(15px, 9999px, 25px, 0);
    transform: translate(-2px, 0);
  }
  50% {
    clip: rect(20px, 9999px, 60px, 0);
    transform: translate(1px, -1px);
  }
  100% {
    clip: rect(0, 9999px, 0, 0);
    transform: translate(0, 0);
  }
}