@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");
/* BASE STRUCTURE */
html {
  font-size: 20px;
  overflow: hidden;
  line-height: 1.4;
}

body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  height: 100vh;
  height: 100svh;
  height: 100lvh;
  height: 100dvh;
  background: #060606;
  font-family: "Roboto Mono", monospace;
  font-weight: 500;
  color: #f5f5f5;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.8), 6px 0 6px rgba(0, 255, 255, 0.3), -6px 0 6px rgba(255, 0, 255, 0.3);
  filter: contrast(1.1) brightness(1) saturate(1.2) grayscale(0.3);
  animation: text-jitter 0.18s infinite;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 9999;
  background: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0px, rgba(255, 255, 255, 0.1) 1px, transparent 2px, transparent 4px);
  animation: flicker 0.5s infinite;
  mix-blend-mode: screen;
}

@keyframes flicker {
  0% {
    opacity: 0.04;
  }
  5% {
    opacity: 0.08;
  }
  10% {
    opacity: 0.02;
  }
  15% {
    opacity: 0.07;
  }
  25% {
    opacity: 0.05;
  }
  30% {
    opacity: 0.09;
  }
  35% {
    opacity: 0.02;
  }
  45% {
    opacity: 0.06;
  }
  55% {
    opacity: 0.04;
  }
  65% {
    opacity: 0.1;
  }
  75% {
    opacity: 0.02;
  }
  85% {
    opacity: 0.07;
  }
  95% {
    opacity: 0.04;
  }
  100% {
    opacity: 0.05;
  }
}
@keyframes text-jitter {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-0.4px);
  }
  40% {
    transform: translateX(0.4px);
  }
  60% {
    transform: translateX(-0.1px);
  }
  80% {
    transform: translateX(0.2px);
  }
  100% {
    transform: translateX(0);
  }
}
/* BASE STRUCTURE */
#main {
  width: 100%;
  height: 100vh;
  height: 100vh;
  height: 100svh;
  height: 100lvh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.panel {
  display: none;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 80px;
  margin-right: 80px;
}

.logo {
  position: absolute;
  width: 128px;
  height: 128px;
  top: 3vh;
  user-select: none;
}

.complex-logo {
  display: grid;
  position: absolute;
  top: 3vh;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.complex-logo .logo {
  grid-column: 2;
  justify-self: start;
  position: relative;
  top: 0;
}
.complex-logo .btn {
  grid-column: 1;
  justify-self: end;
  margin: auto;
  margin-top: 50px;
}

.logo-open {
  animation: btn-open 0.2s forwards;
}

.wt {
  opacity: 0;
}

.hl {
  color: #f8e992;
}

.err-text {
  display: inline-block;
  color: #ffb4b4;
  text-shadow: 0 0 6px rgba(255, 0, 0, 0.8), 6px 0 6px rgba(255, 103, 103, 0.3), -6px 0 6px rgba(255, 103, 103, 0.3);
  animation: error-jitter 0.1s infinite;
}

.err {
  display: inline-block;
  color: #ff4444;
  animation: error-jitter 0.1s infinite;
  text-shadow: 0 0 6px rgba(255, 0, 0, 0.8), 6px 0 6px rgba(255, 103, 103, 0.3), -6px 0 6px rgba(255, 103, 103, 0.3);
}

@keyframes error-jitter {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-1.2px);
  }
  40% {
    transform: translateX(1.2px);
  }
  60% {
    transform: translateX(-0.3px);
  }
  80% {
    transform: translateX(0.6px);
  }
  100% {
    transform: translateX(0);
  }
}
.a {
  text-decoration: underline;
}

.text-img {
  display: inline-block;
  width: 38px;
  height: 38px;
  margin-right: 10px;
  margin-bottom: -8px;
  user-select: none;
}

hr {
  border: 1px solid #f5f5f5;
  background-color: #f5f5f5;
  height: 0px;
  transition: width 0.5s;
}

img, hr, .btn, .alert, .ag-item {
  text-shadow: none;
  filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.8)) drop-shadow(3px 0 3px rgba(0, 255, 255, 0.3)) drop-shadow(-3px 0 3px rgba(255, 0, 255, 0.3));
}

.btn {
  position: relative;
  background-color: transparent;
  color: #f5f5f5;
  border: 2px solid #f5f5f5;
  border-radius: 2px;
  width: fit-content;
  height: fit-content;
  padding: 8px 18px 10px 18px;
  text-align: center;
  text-shadow: none;
  user-select: none;
  animation: btn-open 0.2s forwards;
  /*&::before {
     content: '';
     position: absolute;
     top: 6px;
     right: 2px;
     width: 10px;
     height: 2px;
     background-color: $white;
     transform: rotate(45deg);
     pointer-events: none;
   }*/
  /*&:hover {
    cursor: pointer;
    background-color: transparent;
    color: $white;
    text-shadow: inherit;

    img {
      filter: drop-shadow(0 0 1px rgba(255,255,255,0.8)) drop-shadow(1px 0 1px rgba(0,255,255,0.3)) drop-shadow(-1px 0 1px rgba(255,0,255,0.3));
    }
  }*/
}
.btn img {
  width: 50px;
  height: 50px;
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.8)) drop-shadow(1px 0 1px rgba(0, 255, 255, 0.3)) drop-shadow(-1px 0 1px rgba(255, 0, 255, 0.3));
}
.btn::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -1%;
  width: 102%;
  height: 2px;
  background-color: #f5f5f5;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 14px solid #f5f5f5;
  border-left: 14px solid transparent;
  pointer-events: none;
}
.btn:hover {
  cursor: pointer;
}
.btn:hover::after {
  transform: scaleX(1);
}

.alert {
  background-color: transparent;
  color: #f5f5f5;
  border: 1px solid #f5f5f5;
  border-radius: 2px;
  width: fit-content;
  padding: 8px 18px 10px 18px;
  text-align: center;
  text-shadow: none;
  user-select: none;
}

#settings {
  display: flex;
  width: 100%;
  justify-content: space-between;
  position: absolute;
  height: 80px;
}
#settings > * {
  margin-bottom: 10px;
  margin: 20px;
}
#settings .btn {
  display: flex;
  border: none;
  background-color: transparent;
  color: #f5f5f5;
  padding: 6px;
  width: fit-content;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.8), 1px 0 1px rgba(0, 255, 255, 0.3), -1px 0 1px rgba(255, 0, 255, 0.3);
}
#settings .btn #ltt {
  margin-right: 8px;
  margin-top: 4px;
  font-size: 16px;
  font-weight: 500;
}
#settings .btn::before {
  content: "";
  opacity: 0;
}
#settings .btn::after {
  content: "";
  opacity: 0;
}
#settings .btn:hover {
  cursor: pointer;
}
#settings .btn img, #settings .btn svg {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.8)) drop-shadow(1px 0 1px rgba(0, 255, 255, 0.3)) drop-shadow(-1px 0 1px rgba(255, 0, 255, 0.3));
}

#alert-layout {
  position: absolute;
  margin-top: 45vh;
}

#info-layout {
  height: 100vh;
  height: 100vh;
  height: 100svh;
  height: 100lvh;
  height: 100dvh;
}
#info-layout #il-content {
  margin-top: 210px;
  height: 70vh;
  height: 70vh;
  height: 70svh;
  height: 70lvh;
  height: 70dvh;
  overflow-x: auto;
  width: 82%;
  padding-right: 40px;
}
#info-layout .panel {
  width: fit-content;
}

#menu-layout {
  margin-top: 25vh;
}

#ml-buttons {
  display: flex;
  flex-direction: row;
  min-height: 50px;
  margin-bottom: 50px;
}
#ml-buttons .btn {
  margin-left: 30px;
  margin-right: 30px;
}

#start-layout {
  margin-top: 45vh;
  transition: margin 1s;
}
#start-layout img {
  width: 135px;
  height: 135px;
}
#start-layout hr {
  width: 0;
  opacity: 0;
}

.panel-options {
  display: flex;
  justify-content: space-evenly;
  flex-direction: row;
}

.btn-special {
  border: 2px solid #f5f5f5;
  animation: btn-highlight 2s infinite;
}
.btn-special::before {
  animation: bg-highlight 2s infinite;
}
.btn-special::after {
  animation: bg-highlight 2s infinite;
}

.btn-clicked {
  cursor: default;
  border-color: #f5f5f5;
  animation: btn-click 1s forwards;
}
.btn-clicked img {
  animation: btn-click-img 1s forwards;
}
.btn-clicked::after {
  transform: scaleX(1);
}
.btn-clicked:hover {
  cursor: default;
}

@keyframes btn-highlight {
  0% {
    border-color: #f5f5f5;
    color: #f5f5f5;
  }
  50% {
    border-color: rgb(255, 248, 174);
    color: rgb(255, 248, 174);
  }
  100% {
    border-color: #f5f5f5;
    color: #f5f5f5;
  }
}
@keyframes bg-highlight {
  0% {
    background-color: #f5f5f5;
  }
  50% {
    background-color: rgb(255, 248, 174);
  }
  100% {
    background-color: #f5f5f5;
  }
}
@keyframes btn-open {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
@keyframes btn-click {
  0% {
    background-color: #f5f5f5;
    color: #060606;
  }
  14% {
    background-color: #f5f5f5;
    color: #060606;
  }
  15% {
    background-color: transparent;
    color: #f5f5f5;
  }
  29% {
    background-color: transparent;
    color: #f5f5f5;
  }
  30% {
    background-color: #f5f5f5;
    color: #060606;
  }
  44% {
    background-color: #f5f5f5;
    color: #060606;
  }
  45% {
    transform: scaleY(1);
  }
  55% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(0);
  }
}
@keyframes btn-click-img {
  0% {
    filter: invert(1);
  }
  14% {
    filter: invert(1);
  }
  15% {
    filter: invert(0);
  }
  29% {
    filter: invert(0);
  }
  30% {
    filter: invert(1);
  }
  44% {
    filter: invert(1);
  }
  100% {
    filter: invert(1);
  }
}
.a-btn {
  cursor: pointer;
  text-decoration: underline;
}

.a-clicked {
  cursor: default;
  animation: a-click 1s forwards;
}
.a-clicked:hover {
  cursor: default;
}

@keyframes a-click {
  0% {
    background-color: #f8e992;
    color: #060606;
  }
  14% {
    background-color: #f8e992;
    color: #060606;
  }
  15% {
    background-color: transparent;
    color: #f8e992;
  }
  29% {
    background-color: transparent;
    color: #f8e992;
  }
  30% {
    background-color: #f8e992;
    color: #060606;
  }
  44% {
    background-color: #f8e992;
    color: #060606;
  }
  45% {
    background-color: transparent;
    color: #f8e992;
  }
  59% {
    background-color: transparent;
    color: #f8e992;
  }
  60% {
    background-color: #f8e992;
    color: #060606;
  }
  75% {
    background-color: #f8e992;
    color: #060606;
  }
  100% {
    background-color: #f8e992;
    color: #060606;
  }
}
#about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 50px;
  margin: auto;
}

.ag-item {
  display: flex;
  flex-direction: column;
  border: 2px solid #f5f5f5;
  border-radius: 2px;
  overflow: hidden;
  align-items: center;
}
.ag-item .img-container {
  width: 100%;
  text-align: center;
  background-color: #f5f5f5;
}
.ag-item img {
  width: 50px;
  height: 50px;
  margin: auto;
  margin-top: 2px;
  margin-bottom: -2px;
  filter: invert(1) drop-shadow(0 0 1px rgba(255, 255, 255, 0.8)) drop-shadow(1px 0 1px rgba(0, 255, 255, 0.5)) drop-shadow(-1px 0 1px rgba(255, 0, 255, 0.5));
}
.ag-item .panel {
  padding: 10px;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}

.shade {
  margin-top: 20px;
  color: lightgray;
  width: 100%;
  text-align: center;
}

.c-footer {
  margin-top: 30px;
}

#games-library hr {
  opacity: 0;
  margin-bottom: 20px;
  margin-top: 20px;
}
#games-library .gl-item {
  display: flex;
}
#games-library .gl-item > .btn {
  border: none;
  align-self: center;
  margin-right: 24px;
  padding-bottom: 0;
}
#games-library .gl-item > .btn img {
  width: 94px;
  height: 94px;
}
#games-library .gl-item .fake-btn {
  cursor: auto;
  border: none;
}
#games-library .gl-item .fake-btn::after {
  border: none;
  width: 0;
  height: 0;
}
#games-library .gl-item .fake-btn::before {
  border: none;
  width: 0;
  height: 0;
}
#games-library .gl-item .gl-item-content .gl-item-price {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 20px;
  color: #f5f5f5;
}
#games-library .gl-item .gl-item-content .gl-item-title {
  display: flex;
  margin: 0;
  margin-bottom: 10px;
}
#games-library .gl-item .gl-item-content .gl-item-title .btn {
  margin-left: 20px;
  font-size: 16px;
  padding: 4px 14px 6px 14px;
}
#games-library .gl-item .gl-item-content .gl-item-title .btn::after {
  bottom: -7px;
}
#games-library .gl-item .gl-item-content .gl-item-text {
  font-size: 18px;
}

@media (max-width: 576px) {
  html {
    font-size: 22px;
    overflow: hidden;
    line-height: 1.4;
  }
  #il-content {
    height: 80vh !important;
    height: 80vh !important;
    height: 80svh !important;
    height: 80lvh !important;
    height: 80dvh !important;
    overflow-x: auto;
    width: 100%;
    margin: auto;
    padding-right: 0 !important;
    margin-top: 170px !important;
  }
  .complex-logo {
    font-size: 12px;
  }
  .complex-logo img {
    width: 100px;
    height: 100px;
  }
  #settings #ltt {
    font-size: 18px !important;
  }
  #settings img, #settings svg {
    width: 32px !important;
    height: 32px !important;
  }
  #menu-layout #ml-buttons {
    flex-direction: column;
    align-items: center;
  }
  #menu-layout #ml-buttons .btn {
    font-size: 36px;
    margin-bottom: 40px;
  }
  #menu-layout > .alert {
    display: none !important;
  }
  #about-grid {
    display: flex;
    flex-direction: column;
    margin: auto;
    padding-top: 20px;
  }
  .ag-item {
    font-size: 20px !important;
  }
  .ag-item .panel {
    width: 90% !important;
    padding: 20px !important;
  }
  .shade {
    font-size: 18px !important;
  }
  .gl-item > .btn {
    display: none;
  }
  .gl-item-content .gl-item-price {
    position: relative !important;
    font-size: 22px !important;
  }
  .gl-item-content .gl-item-title {
    flex-direction: column;
    margin-bottom: 10px !important;
  }
  .gl-item-content .gl-item-title .btn {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    margin-left: 0 !important;
    font-size: 20px !important;
  }
  .gl-item-content .gl-item-text {
    font-size: 18px !important;
  }
  .c-footer {
    font-size: 20px !important;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  html {
    font-size: 30px;
    overflow: hidden;
    line-height: 1.4;
  }
  .complex-logo {
    font-size: 26px;
  }
  #settings #ltt {
    font-size: 26px !important;
  }
  #settings img, #settings svg {
    width: 44px !important;
    height: 44px !important;
  }
  #menu-layout #ml-buttons {
    flex-direction: column;
    align-items: center;
  }
  #menu-layout #ml-buttons .btn {
    font-size: 40px;
    margin-bottom: 40px;
  }
  #menu-layout > .alert {
    display: none !important;
  }
  #about-grid {
    display: flex;
    flex-direction: column;
    margin: auto;
    padding-top: 20px;
  }
  .ag-item .panel {
    width: 90% !important;
    padding: 20px !important;
  }
  .gl-item > .btn {
    display: none;
  }
  .gl-item-content .gl-item-price {
    position: relative !important;
    font-size: 26px !important;
  }
  .gl-item-content .gl-item-title {
    flex-direction: column;
    margin-bottom: 10px !important;
  }
  .gl-item-content .gl-item-title .btn {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    margin-left: 0 !important;
    font-size: 24px !important;
  }
  .gl-item-content .gl-item-text {
    font-size: 24px !important;
  }
  .c-footer, .shade {
    font-size: 24px !important;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  html {
    font-size: 24px;
    overflow: hidden;
    line-height: 1.4;
  }
  #settings #ltt {
    font-size: 20px !important;
  }
  #settings img, #settings svg {
    width: 38px !important;
    height: 38px !important;
  }
  #about-grid {
    display: flex;
    flex-direction: column;
    margin: auto;
    padding-top: 20px;
  }
  .gl-item-content .gl-item-price {
    font-size: 24px;
  }
  .gl-item-content .gl-item-title .btn {
    font-size: 20px;
  }
  .gl-item-content .gl-item-text {
    font-size: 22px;
  }
}

/*# sourceMappingURL=style.css.map */
