:root {
  --accent-color: #73a6d5;
  --accent-color-text: black;

  --background-color: #191e25;
}


::-moz-selection {
  color: var(--accent-color-text);
  background-color: var(--accent-color);
}

::selection {
  color: var(--accent-color-text);
  background-color: var(--accent-color);
}

::-webkit-scrollbar {
  width: 15px;
  background-color: #2e3138;
  border-radius: 5px
}

::-webkit-scrollbar-thumb {
  background-color: #5c6370;
  border-radius: 5px
}

::-webkit-scrollbar-thumb:hover {
  background-color: #454a54
}

* {
  position: relative;
  padding: 0;
  margin: 0;
  box-sizing: border-box
}

a {
  text-decoration: none;
}

html,
body {
  font-size: 24px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  color: #797d86;
  background: var(--background-color);
  scroll-behavior: smooth;
}

.multi-dlblock {
  font-family: inherit;
  font-size: .9em;
  display: block;
  width: fit-content;
  color: #22252a;
  /* padding: .4em .8em; */
  background: #abb0ba;
  border-radius: .3em;

  a {
    color: inherit;
  }


  input {
    display: none;

    &:checked~.dropdown {
      visibility: visible;
      transform: translateY(105%);
      opacity: 1;
    }

    &:checked~label {
      transform: rotate(180deg);
    }
  }

  label {
    cursor: pointer;
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 0.4em;

    &>* {
      pointer-events: none;
    }
  }

  .delimiter {
    width: 2px;
    height: 1.5em;
    background: hsl(0deg 0% 100% / 20%);
    border-radius: 30%;
  }

  .dropdown {
    visibility: hidden;
    position: absolute;
    color: var(--accent-color-text);
    max-height: 10em;
    width: 100%;
    right: 0;
    bottom: 0;
    margin: 0;
    opacity: 0;
    background: var(--accent-color);
    border-radius: 0.3em;
    box-shadow: 0 0.5em 2em #00000094;
    overflow: auto;
    /* transition: all 0.4s cubic-bezier(0.93, 0.88, 0.1, 0.8); */
    z-index: -1;

    &::-webkit-scrollbar {
      width: 15px;
      background-color: #374a5c;
      border-radius: 2px;
    }

    &::-webkit-scrollbar-thumb {
      background-color: #8ac3f8;
      border-radius: 2px;
    }

    &::-webkit-scrollbar-thumb:hover {
      background-color: #6193c2;
    }
  }

  .dropdown-item {
    display: block;
    cursor: pointer;
    padding: 0.3em 0.4em;

    &:hover {
      background: hsl(0deg 0% 100% / 39%);
    }

    &:first-child {
      border-radius: 0.3em 0.3em 0 0;
    }

    &:last-child {
      border-radius: 0 0 0.3em 0.3em;
    }
  }
}

.btn {
  font-family: inherit;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #22252a;
  gap: 0.5em;
  padding: .4em .8em;
  background: #abb0ba;
  border-radius: .3em;
  transition: .2s ease;
  transition-property: filter, translate;

  a {
    color: inherit;
  }

  &:hover {
    filter: brightness(1.1);
    translate: 0 -2px;
  }

  &:active {
    filter: brightness(0.9);
    translate: 0px;
  }


  &.-small {
    font-size: 0.8em;
    padding: 0.3em 0.7em;
  }
}

.tosu-dl {
  color: #191e25 !important;
  background: #73a6d5 !important;
}


.discord {
  color: #191e25 !important;
  background: #7382d5 !important;
}


.flex {
  display: flex;

  &.-btwn {
    justify-content: space-between;
  }

  &.-c {
    align-items: center;
  }

  &.-cc {
    justify-content: center;
    align-items: center;
  }

  &.-cs {
    justify-content: flex-start;
    align-items: center;
  }

  &.-ss {
    justify-content: flex-start;
    align-items: flex-start;
  }

  &.-wrap {
    flex-wrap: wrap;
  }
}

.top-left {
  position: absolute;
  top: 1em;
  left: 0;
}

.container {
  max-width: min(1100px, 100vw - 2em);
  margin: 0 auto 0 auto;
}

.information {
  justify-content: flex-end;
  flex-direction: column;
  display: flex;
  min-height: 18em;
  padding: 4em 0 1em 0;

  h1 {
    color: white;

    img {
      width: 0.8em;
      margin-right: 0.5em;
    }
  }

  b {
    color: var(--accent-color);
  }

  b.-osu {
    color: hsl(330, 84%, 71%);
  }

  &>* {
    z-index: 1;
  }

  .links {
    gap: 0.5em;
  }

  .banner {
    -webkit-user-select: none;
    -moz-user-select: none;
    -webkit-mask-image: linear-gradient(180deg, transparent, white 30%, white 70%, transparent);
    mask-image: linear-gradient(180deg, transparent, white 30%, white 70%, transparent);
    pointer-events: none;
    filter: blur(10px);
    position: absolute;
    user-select: none;
    top: 0;
    left: -1em;
    right: -1em;
    bottom: 0;
    opacity: .2;
    border-radius: 1.2em;
    z-index: 0;
  }

  .banner img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
  }
}

.features-container {
  margin: 4em 0;

  h3 {
    color: White;
    margin-left: 0.5em;
    margin-bottom: 0.5em;
  }
}

.features {
  grid-template-columns: 1fr 1fr;
  display: grid;
  gap: 0.6em;
}

@media(max-width: 850px) {
  .features {
    grid-template-columns: 1fr;
  }
}

.feature-item {
  --text: hsl(208, 35%, 70%);
  --bg: hsl(208, 21%, 18%);
  --hl: hsl(209, 84%, 71%);
  font-size: 0.9em;
  gap: 0.8em;
  color: var(--text);
  padding: 0.6em 1em;
  background: var(--bg);
  border-radius: 0.4em;

  img {
    width: 1.8em;
  }

  i {
    font-size: 1.8em;
    color: var(--hl);
  }

  span {
    display: block;

    &.-lvl1 {
      font-size: 0.85em;
      color: hsl(from var(--text) h s l / 80%);
    }
  }

  b {
    color: var(--hl);
  }

  a {
    text-decoration: underline;
    color: var(--hl);
    text-underline-offset: 2px;
  }
}

blockquote ::-moz-selection,
.feature-item ::-moz-selection {
  color: var(--accent-color-text);
  background-color: var(--hl);
}

blockquote ::selection,
.feature-item ::selection {
  color: var(--accent-color-text);
  background-color: var(--hl);
}

.-lazer {
  --text: hsl(330, 35%, 70%);
  --bg: hsl(330, 21%, 18%);
  --hl: hsl(330, 84%, 71%);
}

.-sc {
  --text: hsl(200, 35%, 70%);
  --bg: hsl(200, 21%, 18%);
  --hl: hsl(200, 84%, 71%);

  img {
    filter: brightness(1.5);
  }
}


.-link {
  transition: 0.1s ease;
  transition-property: filter, translate;

  &:hover {
    filter: brightness(1.1);
    translate: 0 -2px;
  }

  &:active {
    filter: brightness(0.9);
    translate: 0px;
  }
}

.dotted-dot {
  width: 5px;
  height: 5px;
  background: #797d86;
  border-radius: 1em
}



.sections-sticky {
  position: sticky;
  gap: 1em;
  top: 0;
  background: var(--background-color);
  border-radius: .3em;
  box-shadow: 0 .5em 2em rgba(0, 0, 0, 0);
  z-index: 1;

  h3 {
    color: white;
  }
}

.sections-sticky .sections-wrapper {
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
  gap: 1em;

  a {
    transition: color 0.2s ease;
  }

  a:hover,
  a.active {
    color: white;
  }
}

.sections-sticky .sections-wrapper>a {
  cursor: pointer;
  font-size: .9em;
  font-weight: 500;
}

.sections-sticky.sticking {
  filter: brightness(1.4);
  justify-content: flex-start;
  align-items: center;
  display: flex;
  padding: .5em 1em;
  box-shadow: 0 .5em 2em rgba(0, 0, 0, .6);

  h3 {
    font-size: 1em;
  }
}

hr {
  margin: 1em 0;
  border-color: #797d86;
}

.h2-out-left {
  padding-top: .5em;
  padding-left: 1em;
  padding-bottom: .5em
}

.sites {
  margin-bottom: 2em
}



@media(max-width: 1000px) {
  .container {
    margin: 3em .5em 0 .5em
  }
}

.click {
  cursor: pointer
}

.margin-t05 {
  margin-top: .5em
}

.margin-b05 {
  margin-bottom: 0.5em
}

.margin-b1 {
  margin-bottom: 1em
}


.margin-b3 {
  margin-bottom: 3em
}

.max-width-20 {
  max-width: min(20em, 100% - 2em)
}

.max-width-25 {
  max-width: min(25em, 100% - 2em)
}

h2 {
  margin-bottom: .3em
}



.iframe {
  aspect-ratio: 16/9
}

iframe {
  width: 100%;
  height: 100%
}


.-disable {
  filter: grayscale(1);
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none
}


.m1 {
  text-shadow: 0 0 1em;
  color: hsl(350 83% 73%);
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: black;
  paint-order: stroke fill;
}

.m2 {
  text-shadow: 0 0 1em;
  color: #694cec;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: black;
  paint-order: stroke fill;
}

.m3 {
  text-shadow: 0 0 1em;
  color: hsl(245 83% 73%);
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: black;
  paint-order: stroke fill;
}


blockquote {
  color: var(--text);
  padding: 0.8em 1em;
  background: var(--bg);
  border-left-color: var(--text);
  border-left: 4px solid var(--hl);

  h2 {
    color: var(--hl);
  }


  a {
    filter: brightness(1.3);
    color: var(--text);

    text-decoration: underline;
    text-underline-offset: 2px;

    &:hover {
      color: var(--hl);
    }
  }

  b {
    font-weight: 900;
    color: var(--hl);
  }
}