@font-face {
  font-family: "manrope";
  font-display: swap;
  src: url("../font/Manrope-VariableFont_wght.ttf");
}
@font-face {
  font-family: "calsans";
  font-display: swap;
  src: url("../font/CalSans-Regular.ttf");
}

img {
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

:root {
  --accent-color: #a04e8b;
  --accent-color-highlight: rgb(154, 99, 180);
  --bg-color: linear-gradient(to right, #020001, #0a0006);
  --secondary-color: linear-gradient(to right, #020001, #14000c);
  --text-main: #fff;
  --text-secondary: #aaa;
  --step--3: clamp(0.64rem, 0.6549rem + -0.0192vw, 0.651rem);
  --step--2: clamp(0.7813rem, 0.7747rem + 0.0326vw, 0.8rem);
  --step--1: clamp(0.9375rem, 0.9158rem + 0.1087vw, 1rem);
  --step-0: clamp(1.125rem, 1.0815rem + 0.2174vw, 1.25rem);
  --step-1: clamp(1.35rem, 1.2761rem + 0.3696vw, 1.5625rem);
  --step-2: clamp(1.62rem, 1.5041rem + 0.5793vw, 1.9531rem);
  --step-3: clamp(1.944rem, 1.771rem + 0.8651vw, 2.4414rem);
  --step-4: clamp(2.3328rem, 2.0827rem + 1.2504vw, 3.0518rem);
  --step-5: clamp(2.7994rem, 2.4462rem + 1.7658vw, 3.8147rem);
  --step-6: clamp(3.3592rem, 2.8691rem + 2.4507vw, 4.7684rem);
  --step-7: clamp(4.0311rem, 3.36rem + 3.3555vw, 5.9605rem);
  --step-8: clamp(4.8373rem, 3.9283rem + 4.5448vw, 7.4506rem);
  --step-9: clamp(5.8048rem, 4.5844rem + 6.1017vw, 9.3132rem);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*::selection {
  background-color: #a04e8b;
  color: white;
}

a:link {
  text-decoration: none;
  color: white;
}

a:visited {
  text-decoration: none;
  color: white;
}

h1 {
  font-size: 24px;
}

.bold {
  font-weight: bold;
}

html {
  width: 100%;
  height: 100%;
  background-color: #111111;
  overflow: hidden;
  overflow-y: auto;
}

body {
  font-family: manrope;
  line-height: 1.6;
  color: var(--text-main);
  overflow: hidden;
  overflow-y: auto;

  padding-top: 100px;
}

header {
  width: calc(100vw);
  height: 100px;

  background: linear-gradient(180deg, #290a21, #111111);

  padding: 25px;
  padding-right: calc(25px + 15px);

  font-family: "calsans";

  position: sticky;
  top: 0px;
  z-index: 999;

  display: flex;
  justify-content: space-between;
  align-items: center;

  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);

  color: #fff;

  
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  z-index: 999;

  transition: transform 0.3s ease;
}

header.hamburger {
  background: none;
  background-color: #111111 !important;
}

header.hide {
  transform: translateY(-100%);
}

header .logo {
  width: fit-content;
  height: 65px;

  filter: invert(100%);
}

header .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

header nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

header nav ul {
  padding: 0px;

  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

header nav ul li {
  list-style: none;

  padding-left: 25px;

  color: #fff;

  position: relative;
}

header nav ul li .line {
  position: absolute;
  top: 25px;

  width: 0px;
  height: 2px;

  background-color: #a04e8b;

  border-radius: 12px;

  transition: width 0.2s ease-in-out;
}

header nav ul a.active li .line,
header nav ul a li:hover .line {
  width: calc(100% - 25px);
}

header nav .langSwitcherWrapper {
  margin-left: 25px;
}

.langSwitcherWrapper {
  position: relative;
  display: inline-block;
}

.langSwitcherWrapper button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.langSwitcherWrapper img {
  width: 32px;
  height: 24px;
  border-radius: 4px;
}

#lang-dropdown {

  position: absolute;
  top: 40px;
  left: 100vw;
  background: #111;
  border-radius: 4px;
  /* padding: 4px; */
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 999;

  transition: left .3s ease-in-out;
}

#lang-dropdown li {
  cursor: pointer;
  padding: 2px;
  transition: transform 0.1s ease;
}
#lang-dropdown li:hover {
  transform: scale(1.05);
}

#lang-dropdown li img {
  border: 1px solid transparent;
}

#lang-dropdown li.active img {
  border: 1px solid white;
}

.separator {
  padding: 0px;
  margin-left: 25px;

  width: 2px;
  border-radius: 3px;
  height: 25px;
  background: var(--text-main);
}

footer {
  width: 100vw;
  height: fit-content;

  padding: 25px;

  background: linear-gradient(0deg, #290a21, #111111, #111111);
}

footer .copyright-notice {
  width: fit-content;
  margin: 0px auto;
  text-align: center;
}

footer .links {
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer .links .socials {
  margin: 15px 0px;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
}

footer .links .socials a {
  height: fit-content;
  padding: 0px 12.5px;

  display: flex;
  justify-content: center;
  align-content: center;
}

footer .links .socials a i {
  font-size: 20px;
}

footer .links .legal {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

footer .links .legal a {
  padding: 0px 12.5px;
  text-decoration: none;
}

section.legal {
  max-width: 1200px;
  width: 100%;
  min-height: calc(100dvh - 100px - 151px);

  margin: 0px auto;

  padding: 25px;
}

section.legal.english {
  display: none;
}

section.legal ul {
  padding-left: 25px;
}

section.legal ul li {
  list-style: disc;
}

.legal a:link {
  text-decoration: underline;
}

.buttons {
  width: fit-content;
  height: fit-content;

  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.btn {
  width: fit-content;
  height: fit-content;

  padding: 10px 15px;

  border-radius: 12px;

  cursor: pointer;

  user-select: none;
}

.btn i {
  padding-left: 10px;
}

.btn:active {
  transform: scale(0.95);
}

.btn-full {
  width: 100%;
  text-align: center;
}

.btn-disabled {
  border: 2px solid #717171 !important;
  background-color: #717171 !important;
}

.btn-disabled:hover {
  background-color: #505050 !important;
}

.btn-disabled:active {
  transform: scale(1) !important;
}

.btn-primary {
  border: 2px solid #a04e8b;
  background-color: #a04e8b;

  transition: background-color 0.15s ease-in-out;
}

.btn-primary:hover {
  background-color: #7a2e67;
}

.btn-secondary {
  border: 2px solid #a04e8b;

  transition: background-color 0.15s ease-in-out;
}

.btn-secondary:hover {
  background-color: #a04e8b50;
}

/* HAMBURGER */

header.hamburger {
  width: 100vw;
  height: calc(100dvh - 100px);

  position: fixed;
  top: 100px;
  left: 100%;
  right: 0px;
  bottom: 0px;

  padding: 25px;

  background-color: #111111;
  z-index: 999999;

  transition: left .3s ease-in-out;
}

header.hamburger.opened {
  left: 0px;
}

header.hamburger nav {
  display: block !important;

  width: 100%;
  height: 100%;
}

header.hamburger nav ul {
  padding: 0px;

  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

header.hamburger nav ul a {
  margin: 7.5px 0px;
}

header.hamburger nav ul a:active {
  background-color: #a04e8b;
}

header.hamburger nav ul li {
  width: fit-content;
  padding: 10px;
}

header.hamburger nav ul li .line {
  display: none;
}

header.hamburger nav ul a.active {
  background-color: #a04e8b25;
  border-radius: 12px;
}

header .hamburgerBtn {
  display: none;
}

header .hamburgerBtn #checkbox {
  display: none;
}

header .hamburgerBtn .toggle {
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition-duration: 0.3s;
}

header .hamburgerBtn .bars {
  width: 100%;
  height: 4px;
  background-color: rgb(253, 255, 243);
  border-radius: 5px;
  transition-duration: 0.3s;
}

header .hamburgerBtn #checkbox:checked + .toggle #bar2 {
  transform: translateY(14px) rotate(60deg);
  margin-left: 0;
  transform-origin: right;
  transition-duration: 0.3s;
  z-index: 2;

  background-color: #a04e8b;
}

header .hamburgerBtn #checkbox:checked + .toggle #bar1 {
  transform: translateY(28px) rotate(-60deg);
  transition-duration: 0.3s;
  transform-origin: left;
  z-index: 1;

  background-color: #a04e8b;
}

header .hamburgerBtn #checkbox:checked + .toggle {
  transform: rotate(-90deg);
}

header .hamburgerBtn #checkbox:checked + .toggle #bar3 {
  background-color: #a04e8b;
}

/* LOADER */

.loader {
  position: fixed;

  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;

  overflow: hidden;

  background-color: #111111;

  z-index: 9999999999999999999;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;

  opacity: 1;
}

.loader p {
  font-family: manrope, sans-serif;

  padding-top: 85px;
}

.loader .boxes {
  --size: 32px;
  --duration: 800ms;
  height: calc(var(--size) * 2);
  width: calc(var(--size) * 3);
  position: relative;
  transform-style: preserve-3d;
  transform-origin: 50% 50%;
  margin-top: calc(var(--size) * 1.5 * -1);
  transform: rotateX(60deg) rotateZ(45deg) rotateY(0deg) translateZ(0px);
}

.loader .boxes .box {
  width: var(--size);
  height: var(--size);
  top: 0;
  left: 0;
  position: absolute;
  transform-style: preserve-3d;
}

.loader .boxes .box:nth-child(1) {
  transform: translate(100%, 0);
  -webkit-animation: box1 var(--duration) linear infinite;
  animation: box1 var(--duration) linear infinite;
}

.loader .boxes .box:nth-child(2) {
  transform: translate(0, 100%);
  -webkit-animation: box2 var(--duration) linear infinite;
  animation: box2 var(--duration) linear infinite;
}

.loader .boxes .box:nth-child(3) {
  transform: translate(100%, 100%);
  -webkit-animation: box3 var(--duration) linear infinite;
  animation: box3 var(--duration) linear infinite;
}

.loader .boxes .box:nth-child(4) {
  transform: translate(200%, 0);
  -webkit-animation: box4 var(--duration) linear infinite;
  animation: box4 var(--duration) linear infinite;
}

.loader .boxes .box > div {
  --background: #a04e8b;
  --top: auto;
  --right: auto;
  --bottom: auto;
  --left: auto;
  --translateZ: calc(var(--size) / 2);
  --rotateY: 0deg;
  --rotateX: 0deg;
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--background);
  top: var(--top);
  right: var(--right);
  bottom: var(--bottom);
  left: var(--left);
  transform: rotateY(var(--rotateY)) rotateX(var(--rotateX))
    translateZ(var(--translateZ));
}

.loader .boxes .box > div:nth-child(1) {
  --top: 0;
  --left: 0;
}

.loader .boxes .box > div:nth-child(2) {
  --background: #a04e8b;
  --right: 0;
  --rotateY: 90deg;
}

.loader .boxes .box > div:nth-child(3) {
  --background: #853470;
  --rotateX: -90deg;
}

.loader .boxes .box > div:nth-child(4) {
  --background: #a04e8b38;
  --top: 0;
  --left: 0;
  --translateZ: calc(var(--size) * 3 * -1);
}

@-webkit-keyframes box1 {
  0%,
  50% {
    transform: translate(100%, 0);
  }

  100% {
    transform: translate(200%, 0);
  }
}

@keyframes box1 {
  0%,
  50% {
    transform: translate(100%, 0);
  }

  100% {
    transform: translate(200%, 0);
  }
}

@-webkit-keyframes box2 {
  0% {
    transform: translate(0, 100%);
  }

  50% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(100%, 0);
  }
}

@keyframes box2 {
  0% {
    transform: translate(0, 100%);
  }

  50% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(100%, 0);
  }
}

@-webkit-keyframes box3 {
  0%,
  50% {
    transform: translate(100%, 100%);
  }

  100% {
    transform: translate(0, 100%);
  }
}

@keyframes box3 {
  0%,
  50% {
    transform: translate(100%, 100%);
  }

  100% {
    transform: translate(0, 100%);
  }
}

@-webkit-keyframes box4 {
  0% {
    transform: translate(200%, 0);
  }

  50% {
    transform: translate(200%, 100%);
  }

  100% {
    transform: translate(100%, 100%);
  }
}

@keyframes box4 {
  0% {
    transform: translate(200%, 0);
  }

  50% {
    transform: translate(200%, 100%);
  }

  100% {
    transform: translate(100%, 100%);
  }
}

@media screen and (max-width: 750px) {
  header {
    padding-right: 25px;
  }

  header nav {
    display: none;
  }

  header .hamburgerBtn {
    display: block;
  }

  header .logo img {
    width: 75%;
  }

  header nav .langSwitcherWrapper {
    width: fit-content;
    display: block;
    margin: 0px auto;
    margin-top: 25px;
  }
}

.cookieBanner {
  display: none;

  height: fit-content;

  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;

  background-color: #111111;

  padding: 25px;

  border-radius: 30px;

  box-shadow: 0px 0px 20px #a04e8b;

  z-index: 99999999999;
}

.cookieBanner a:link {
  text-decoration: underline;
}

.cookieBanner .title {
  margin-bottom: 15px;
}

.cookieBanner .radios {
  margin-top: 15px;

  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.cookieBanner .radios .radio {
  margin: 12.5px;
}

.cookieBanner .radios .name {
  padding-left: 10px;
}

.cookieBanner .buttons {
  margin-top: 15px;
  
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.cookieBanner .buttons .btn:first-child {
  margin-right: 15px;
}

.cookieBanner .buttons .declineBtn {
  margin-left: 15px;
  color: #ddd;

  cursor: pointer;

  user-select: none;
}

.cookieBanner .buttons .declineBtn:active {
  transform: scale(.98);
}

/* From Uiverse.io by csozidev */ 
/* Minecraft switch made by: csozi | Website: english.csozi.hu*/

/* The switch - the box around the slider */
.switch {
  font-size: 17px;
  position: relative;
  display: inline-block;
  width: 4em;
  height: 2em;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 1;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  transform: translateY(-50%);
  background-color: #ccc;
  transition: .4s;
  border-radius: 30px;
}

.off {
  position: absolute;
  content: "";
  height: 2em;
  width: 2em;
  background-color: white;
  transition: .4s;
  image-rendering: pixelated;
  opacity: 1;
}

.on {
  position: absolute;
  content: "";
  height: 2em;
  width: 2em;
  background-color: white;
  transition: .4s;
  image-rendering: pixelated;
  opacity: 0;
}

.switch input:checked + .slider {
  background-color: #ccc;
}

.switch input:focus + .slider {
  box-shadow: 0 0 1px #ccc;
}

.switch input:checked ~ .off {
  transform: translateX(2em);
}

.switch input:checked ~ .on {
  transform: translateX(2em);
  opacity: 1;
}

@media screen and (max-width: 556px) {
  .cookieBanner .buttons .btn-secondary {
    margin: 0px;
    margin-right: 15px;
    margin-bottom: 15px;
  }
  .cookieBanner .buttons .btn-primary {
    margin: 0px;
    margin-right: 15px;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 385px) {
  .cookieBanner {
    top: 100px;
    height: calc(100dvh - 100px - 15px);
    overflow-y: auto;
  }
}