@import url("https://fonts.googleapis.com/css2?family=Libertinus+Serif+Display&display=swap");

:root {
  --bg-c: #151415;
  --text-std-c: #cccbcc;
  --text-link-c: #d69ee7;
  --text-link-c-alt: #935fa388;
  --border-c: #777677;

  --filter-1: sepia(100%) hue-rotate(250deg) saturate(60%);
}



@keyframes flicker {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    opacity: 1;
  }
}

html,
body {
  
  color: var(--text-std-c);
  font-family:
    "Libertinus Serif Display", "Times New Roman",
    serif;
  font-size: 18px;
  line-height: 0.9;
  max-height: 100%;
  transition: all 0.3s ease-in-out;
  
}
html {
  background-color: var(--bg-c);
  overflow-x: hidden;
}

.content {
  align-items: center;
  max-width: 800px;
  margin: 100px auto 0;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100px;
  font-size: 40px;

  & .subtitle {
    font-size: 18px;
    line-height: 1.5;
    opacity: 0.6;
  }
}

.boxcontent a {
  color: var(--text-link-c);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  text-shadow:
    0 0 5px #c481d8a2,
    0 0 7px #935fa3a2,
    0 0 10px #c481d8ea;

  &:hover {
    opacity: 0.8;
  }
}

.title {
  text-shadow:
    1px 2px 10px rgba(255, 255, 255, 0.6),
    0 0 20px rgba(255, 255, 255, 0.3),
    0 0 30px rgba(255, 255, 255, 0.1);
  animation: flicker 0.1s infinite alternate;

  &::before {
    content: "[ ";
    opacity: 0.6;
  }

  &::after {
    content: " ]";
    opacity: 0.6;
  }

  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin: 0 auto;
  gap: 50px;
}

.box {
  & .title {
    font-size: 25px;
    position: absolute;
    background-color: var(--bg-c);
    top: -12.5px;
    z-index: 2;
  }

  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  border: var(--border-c) solid 1px;
  position: relative;
  min-width: 200px;

}

.left,
.right {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  gap: 30px;
}

.boxcontent {
  box-sizing: border-box;
  margin: 3px 20px 0px;
  align-self: flex-start;
  text-align: left;
  position: relative;
  z-index: 1;
}

.tooltip {
  position: absolute;
  background-color: var(--bg-c);
  color: var(--text-std-c);
  border: var(--border-c) solid 1px;
  padding: 5px;
  font-size: 14px;
  opacity: 0.7;
  z-index: 1000;
  pointer-events: none;
  max-width: 200px;
}


.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 100%;
  max-width: 460px;
  margin: 60px auto 0;
}

.badges > a {
  flex: 0 0 88px;
}

.badges img {
  filter: var(--filter-1);
  width: 88px;
  height: 31px;
  object-fit: contain;
  &:hover {
    filter: none;
    transform: scale(1.05);
  }

  transition: 0.1s ease;
}


ul {
  list-style-type: none;
  padding: 0;
}

li {
  margin-bottom: 5px;
}

.ch {
  @media (max-width: 800px) {
    display: none;
  }
  position: absolute;
  top: -100px;
  right: -310px;
  z-index: 0;
  filter: sepia(20%) hue-rotate(250deg) saturate(60%);
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.ch img {
  display: block;
  width: 300px;
}


@media (max-width: 530px) {
  .main {
    flex-direction: column;
    align-items: center;
  }

  .left,
  .right {
    width: 90%;
  }

  html, body {
    font-size: 17px;
  }
  
  .content {
    margin: 20px auto 0;
  }
}

