@import url('https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400..700&display=swap');

:root {
    --bgColor: #000;
    --accentColor: #00ff00;
    --font: 'Pixelify Sans', sans-serif;
    --delay: .1s;
}

::selection {
  background: #00ff00;
  color: #000000;
}

::-moz-selection {
  background: #00ff00;
  color: #000000;
}

select.decorated option:hover {
    background: #000;
}

@keyframes pulse {
  0% { box-shadow: 0 0 8px #00ff00; }
  50% { box-shadow: 0 0 16px #00ff00; }
  100% { box-shadow: 0 0 8px #00ff00; }
}
.review-button {
  animation: pulse 3s infinite;
}

}
.file {
    justify-content: space-between;
}

hr {
  border: none;
  height: 0;
  margin: 1em 0;
  background: none;
  color: transparent;
}

#fileGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin: 20px auto 0;
    max-width: 600px;
    padding: 0 10px;
}
.file {
    background: #000;
    padding: 6px;
    border: 1px solid #0f0;
    border-radius: 2px;
    text-align: center;
    align-items: center;
    font-size: 1.2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.file img,
.file video {
    max-width: 100%;
    max-height: 72px;
    border-radius: 2px;
    border: 1px solid #333;
}

.file .info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.file .info a {
    color: #8ef;
    text-decoration: none;
    word-break: break-word;
    font-size: 0.75em;
}

.file .filesize {
    color: #0f0;
    font-size: 0.7em;
}

.file button {
    margin-top: 3px;
    background: #090;
    border: none;
    color: #fff;
    padding: 3px 8px;
    font-family: var(--font);
    font-size: 0.75em;
    cursor: pointer;
}

button:focus,
a:focus {
  outline: none;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #00ff00 #000000;
}

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

::-webkit-scrollbar-track {
  background: #000000;
}

::-webkit-scrollbar-thumb {
  background-color: #00ff00;
  border-radius: 4px;
  border: 1px solid #000000;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #00cc00;
}

#site-wrapper {
  position: relative;
  opacity: 1;
  height: 100dvh;
  transition: opacity 0.5s ease-in, transform 0.5s ease-in;
  overflow: auto;
  background: rgba(0, 0, 0, 0);
}


#site-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}

body {
    margin: 0;
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    width: 100vw;
    height: 100vh;
    font-family: var(--font);
    background: #000;
    opacity: 0;
    animation: 1s ease-out var(--delay) 1 transitionAnimation; /* duration/timing-function/delay/iterations/name */
    animation-fill-mode: forwards;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

body.booting {
  overflow: hidden;
  height: 100dvh;
}


#boot-sequence {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: black;
  overflow-y: hidden;
  overflow-x: hidden;
  color: #00ff00;
  font-size: 16px;
  z-index: 9999;
  animation: fadeOut 1s ease 2.5s forwards;
  display: block;
  box-sizing: border-box;
}

#boot-text p {
  margin: 0;
  max-height: 90vh;
  line-height: 1.5;
  overflow-y: hidden;
  overflow-x: hidden;
  opacity: 0;
  animation: typeIn 0.2s forwards;
  text-align: left;
}

#boot-text p:nth-child(1) { animation-delay: 0s; }
#boot-text p:nth-child(2) { animation-delay: 0.25s; }
#boot-text p:nth-child(3) { animation-delay: .5s; }
#boot-text p:nth-child(4) { animation-delay: .75s; }
#boot-text p:nth-child(5) { animation-delay: 1s; }
#boot-text p:nth-child(6) { animation-delay: 1.5s; }

@keyframes typeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.green {
  color: #00ff00;
}

#boot-progress {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: #000;
  border-top: 1px solid #00ff00;
  border-bottom: none;
  overflow: hidden;
  z-index: 9999;
}

#boot-bar {
  height: 100%;
  width: 0%;
  background-color: #00ff00;
  animation: fillBar 2.5s linear forwards;
}

@keyframes fillBar {
  to {
    width: 100%;
  }
}


#slogan {
    color: #00ff00;
    font-size: .9rem;
    font-weight: bold;
    line-height: 1.25;
    display: block;
    font-family: var(--font);
    width: 100%;
    margin: 0px;
    text-align: center;
    text-decoration: none;
}

#links {
  max-width: none;
  width: 100%;
  display: block;
  text-align: center;
}

.link {
    position: relative;
    background-color: transparent;
    color: var(--accentColor);
    border: solid var(--accentColor) 2px;
    border-radius: 0px;
    align-items: center;
    font-size: 1rem;
    font-family: var(--font);
    text-align: left;
    display: flex;
    margin: 0 auto 10px auto;
    padding: 10px; /* 17px */
    text-decoration: none;
    /* transition: all .25s cubic-bezier(.08, .59, .29, .99); */
    -webkit-tap-highlight-color: transparent;
    width: 120px;
    box-sizing: border-box;
    cursor:pointer;
    box-shadow: 0 0 4px #00ff00;
}

.link i {
  width: 20px; /* gives all icons equal space */
  text-align: center;
  margin-right: 10px;
}


.dropdown {
  margin-bottom: 5px;
  width: 100%;
}

.dropdown-toggle {
    position: relative;
    background-color: transparent;
    color: var(--accentColor);
    border: solid var(--accentColor) 2px;
    border-radius: 0px;
    align-items: center;
    font-size: 1rem;
    font-family: var(--font);
    text-align: left;
    display: flex;
    margin: 0 auto 10px auto;
    padding: 10px; /* 17px */
    text-decoration: none;
    /* transition: all .25s cubic-bezier(.08, .59, .29, .99); */
    -webkit-tap-highlight-color: transparent;
    width: 120px;
    box-sizing: border-box;
    cursor:pointer;
    box-shadow: 0 0 4px #00ff00;
}

.dropdown-toggle i {
  width: 20px; /* gives all icons equal space */
  text-align: center;
  margin-right: 10px;
}

.dropdown-toggle: {
  background-color: rgba(0, 255, 0, 0.1);
}

button, a, dropdown-toggle, body {
  caret-color: transparent;
  user-select: none;
}

.dropdown-content {
  display: none;
  padding: 10px;
  margin: 5px auto;
  margin-bottom: 10px;
  border: 1px dashed var(--accentColor);
  color: var(--accentColor);
  background-color: rgba(0, 0, 0, 0.5);
  text-align: left;
  width: 70%;
  max-width: 400px;
  box-sizing: border-box;
  font-size: 0.9rem;
  line-height: 1.5;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}


.dropdown-content.open {
    opacity: 1;
    pointer-events: auto;
}

#tagline {
  color: #00ff00;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  min-height: 3.2em;
  max-width: 90vw;
  margin: 0 auto;
  text-align: center;
  line-height: 1.3;
  padding: 0 10px;
  word-break: break-word;
  overflow-wrap: break-word;
  display: block;
}

#tagline::after {
  content: "_";
  animation: blink-cursor 1s steps(1, start) infinite;
  animation-delay: 0s; /* Syncs every new render */
  margin-left: 1px;
  vertical-align: baseline;
  display: inline-block;
}

@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

#logo {
  color: #00ff00;
  font-size: 2.2em;
  text-align: center;
  margin: 0;
  margin-top: 20px;
}


.blink {
  animation: blink-cursor 1s steps(1, start) infinite;
}

#tos {
   color: var(--accentColor);
   border: none;
   text-align: center;
   margin-bottom: 10px;
}

#tos:visited {
   color: var(--accentColor);
   text-align: center;
}

#map {
  text-align: center;
  margin-bottom: 10px;
}

#map img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 480px) {
  #map img {
    max-width: 90%;
  }
}


@media (hover: hover) {
    .link:hover {
        background-color: rgba(0, 255, 0, 0.1);
    }
}

.link:active {
    background-color: var(--accentColor);
    color: var(--bgColor);
}

#copyright {
    position: relative;
    padding-bottom: 20px;
    color: #00ff00;
    font-size: 1rem;
    display: block;
    font-family: var(--font);
    text-align: center;
    /*  animation   */
    background: linear-gradient(90deg, var(--bgColor), var(--accentColor), var(--bgColor));
    background-repeat: no-repeat;
    background-size: 80%;
    animation: animate 3s linear var(--delay) infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
}

.service-list {
  margin: 0 auto;
  padding: 0;
  max-width: 600px;
  font-family: var(--font);
  color: var(--accentColor);
}

.service-list dt {
  font-weight: bold;
  margin-top: 1.5em;
  color: var(--accentColor);
}

.service-list dd {
  margin-left: 0;
  margin-bottom: 1.5em;
  color: var(--accentColor);
}

.tos-toggle {
  background: none;
  color: var(--accentColor);
  font-family: var(--font);
  border: none;
  font-size: 0.9rem;
  text-decoration: underline;
  cursor: pointer;
  margin: 10px auto;
  display: block;
}

.tos-toggle:hover {
  text-decoration: none;
  color: #00ff80;
}

#tosContent {
  text-align: left;
  margin: 0 auto;
  max-width: 600px;
  font-family: var(--font);
  color: var(--accentColor);
}

#tosContent h1,
#tosContent h2,
#tosContent h3 {
  text-align: left;
  margin-bottom: 10px;
}

#tosContent p,
#tosContent li {
  text-align: left;
  line-height: 1.6;
}

.tool-list dt {
  font-weight: bold;
  margin-top: 1em;
  color: #00ff00;
}

.tool-list dd {
  margin-bottom: 1em;
  line-height: 1.6;
}

body {
  background:#000;
  color:#00ff00;
  font-family: monospace;
  margin: 0;
  overflow-x: hidden;
}

/* Background animation layer */
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  will-change: transform;
  transform: translateZ(0);
}

/* Wrapper that holds the form */
#site-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Form Styling */
form {
  max-width: 450px;
  width: 90%;
  background: rgba(0, 0, 0, 0.7);
  padding: 30px;
  border: 1px solid #00ff00;
}

input, textarea {
  width: 100%;
  margin: 10px 0;
  background: black;
  border: 1px solid #00ff00;
  color: #00ff00;
  padding: 8px;
}

button {
  cursor: pointer;
  background: #00ff00;
  color: black;
  border: none;
  padding: 10px;
  margin-top: 15px;
  width: 100%;
  font-weight: bold;
}

.hidden { display:none; }


#starfield-wrapper {
  position: absolute;
  width: 100%;
  height: 100dvh;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
  overscroll-behavior: contain;
}
body, html {
  max-width: 100vw;
  height: 100vh;
}

.blog-wrapper {
  max-width: 700px;
  margin: 10px auto;
  padding: 10px;
}

h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.blog-entry {
  border-left: 3px solid #00ff00;
  padding-left: 20px;
  margin-bottom: 40px;
}

.blog-date {
  font-size: 0.9rem;
  color: #00cc00;
  display: block;
  margin-bottom: 8px;
}

.blog-title {
  font-size: 1.4rem;
  margin: 0 0 10px 0;
}

.blog-content {
  font-size: 1rem;
  line-height: 1.6;
}

.blog-image {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 20px 0;
  border: 1px solid var(--accentColor);
  background-color: rgba(0, 0, 0, 0.5);
}

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1; /* so your content stays on top */
  background-color: #000; /* optional */
  overflow: hidden;
  overscroll-behavior: contain;

}

html, body {overflow-x: none; }

/*-------------------------animations-----------------------*/
@keyframes transitionAnimation {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes animate {
    0% {
      background-position: -500%;
    }
    100% {
      background-position: 500%;
    }
}

#reason {
  caret-color: #00ff00 !important;
}

#reason:focus {
  outline: none !important;
}
