* {
  position: relative;
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  display: flex;
  font-family: "JetBrains Mono";
  text-shadow: -1px 1px 0 red, 1px -1px 0 #00ff47;
  color: white;
  font-weight: bold;
  -webkit-tap-highlight-color: transparent;
}
*::-webkit-scrollbar {
  width: 3px;
}
*::-webkit-scrollbar-track {
  background: rgba(240, 240, 240, 0);
}
*::-webkit-scrollbar-thumb {
  background: rgba(204, 204, 204, 0.4352941176);
  border-radius: 2px;
}

img,
video {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

title {
  display: none;
}

html,
body {
  display: flex;
  padding: 0px;
  margin: 0px;
  overflow-x: hidden;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

html {
  height: 100%;
  min-height: 100%;
  max-height: 100%;
}

body {
  flex-direction: row;
  width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: 100%;
}

.header-side {
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 100%;
  min-width: 300px;
  border-right: 3px solid rgba(255, 255, 255, 0.5);
}
@media (max-width: 1270px) {
  .header-side {
    max-width: 200px;
    min-width: 200px;
  }
}
@media (max-width: 500px) {
  .header-side {
    max-width: 100%;
    min-width: 100%;
    border-right: unset;
  }
}
.header-side .separator {
  height: 170px;
  min-height: 170px;
  width: 100%;
  border-bottom: 3px solid rgba(255, 255, 255, 0.5);
}
@media (max-width: 1270px) {
  .header-side .separator {
    height: 120px;
    min-height: 120px;
  }
}
@media (max-width: 767px) {
  .header-side .separator {
    height: 80px;
    min-height: 80px;
  }
}
.header-side nav {
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-self: center;
  align-items: flex-start;
  justify-content: space-between;
  overflow-y: scroll;
}
@media (max-width: 1270px) {
  .header-side nav {
    max-width: 200px;
  }
  .header-side nav .nav-item {
    font-size: 24px !important;
  }
}
@media (max-width: 767px) {
  .header-side nav {
    max-width: 100%;
  }
}
.header-side nav .nav-item {
  width: 100%;
  cursor: pointer;
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  padding: 10px 0px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding-left: 20px;
}
.header-side nav .selected {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.278), transparent);
}
.header-side .participants {
  height: 170px;
  min-height: 170px;
  max-height: 170px;
  padding-left: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 3px solid rgba(255, 255, 255, 0.5);
  overflow-y: scroll;
}
@media (max-width: 1270px) {
  .header-side .participants {
    padding-left: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    min-height: 140px;
    max-height: 140px;
    font-size: 12px;
  }
}

.header-hidden {
  display: none;
}

.logo-container {
  position: absolute;
  top: 20px;
  left: 20px;
  height: auto;
  width: 250px;
  z-index: 2;
}
.logo-container a {
  text-decoration: none;
}
.logo-container h1 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 900;
  font-size: 48px;
  line-height: 90%;
  height: auto;
}
@media (max-width: 1270px) {
  .logo-container {
    top: 30px;
    left: 30px;
  }
  .logo-container h1 {
    font-size: 26px;
    width: 20px;
  }
}
@media (max-width: 767px) {
  .logo-container {
    left: 30px;
    top: 20px;
  }
  .logo-container h1 {
    font-size: 18px;
  }
}
@media (max-width: 500px) {
  .logo-container {
    right: 0;
    width: 86px;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    top: 20px;
  }
  .logo-container h1 {
    font-size: 18px;
  }
}

.participants {
  flex-direction: column;
  width: 100%;
}
.participants div {
  flex-direction: column;
}

.body-content {
  width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}
.body-content .title-container {
  width: 100%;
  height: 170px;
  min-height: 170px;
  max-height: 170px;
  flex-grow: 0;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-bottom: 3px solid rgba(255, 255, 255, 0.5);
}
.body-content .title-container .title {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 300;
  white-space: nowrap;
  font-size: 4vw;
  line-height: 100%;
}
.body-content .title-container .menu-button {
  display: none;
  position: absolute;
  top: 60px;
  right: 20px;
  width: auto;
  height: 50px;
  cursor: pointer;
  z-index: 2;
  transition: opacity linear 0.2s;
  filter: drop-shadow(-1px 1px 0 red) drop-shadow(1px -1px 0 #00ff47);
}
@media (max-width: 1270px) {
  .body-content .title-container .menu-button {
    top: 60px;
    display: block;
  }
}
@media (max-width: 767px) {
  .body-content .title-container .menu-button {
    top: 25px;
    bottom: 30px;
    height: 30px;
  }
}
@media (max-width: 1270px) {
  .body-content .title-container {
    height: 120px;
    min-height: 120px;
    max-height: 120px;
  }
}
@media (max-width: 767px) {
  .body-content .title-container {
    height: 80px;
    min-height: 80px;
    max-height: 80px;
  }
}
.body-content .carousell {
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-basis: 100%;
}
@media (max-width: 767px) {
  .body-content .carousell {
    min-height: 400px;
  }
}
.body-content .carousell .video-player {
  display: none;
  position: absolute;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 100%;
  bottom: 60px;
  z-index: 2;
}
@media (max-width: 1270px) {
  .body-content .carousell .video-player {
    display: flex !important;
  }
}
.body-content .carousell .video-player .player-button {
  height: 25px;
  width: auto;
  cursor: pointer;
  mix-blend-mode: exclusion;
  filter: drop-shadow(-1px 1px 0 red) drop-shadow(1px -1px 0 #00ff47);
}
.body-content .carousell .projected-img {
  height: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
}
.body-content .carousell .projected-video {
  height: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.body-content .carousell .logo-container h1 {
  color: white;
}
@media (max-width: 500px) {
  .body-content .carousell .logo-container {
    right: unset;
    left: 20px;
    margin-left: unset;
    margin-right: unset;
  }
}
.body-content .game-info {
  height: 170px;
  min-height: 170px;
  max-height: 170px;
  width: 100%;
  flex-direction: row;
  border-top: 3px solid rgba(255, 255, 255, 0.5);
}
@media (max-width: 1270px) {
  .body-content .game-info {
    min-height: 140px;
    max-height: 140px;
  }
  .body-content .game-info .date,
  .body-content .game-info .role-value {
    font-size: 13px !important;
  }
  .body-content .game-info .role-value {
    padding-right: 0px !important;
  }
}
@media (max-width: 767px) {
  .body-content .game-info .game-info-separator {
    min-height: -moz-fit-content;
    min-height: fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
}
.body-content .game-info .game-info-separator {
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  overflow-y: scroll;
}
.body-content .game-info .date {
  font-family: "JetBrains Mono";
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  line-height: 100%;
}
.body-content .game-info .description p {
  display: block;
  margin-top: 10px;
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
}
.body-content .game-info .description p a {
  display: inline;
}
.body-content .game-info .role {
  position: absolute;
  top: 30px;
  right: 30px;
}
.body-content .game-info .role h2 {
  font-family: "JetBrains Mono";
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
}
.body-content .game-info .images-carousell {
  z-index: 1;
  max-width: 50%;
  min-width: 50%;
  flex: 1;
  flex-direction: row;
  overflow-x: visible;
  overflow-y: hidden;
}
.body-content .game-info .images-carousell img,
.body-content .game-info .images-carousell video {
  height: 110px;
  width: auto;
}
.body-content .game-info .images-carousell img:hover,
.body-content .game-info .images-carousell video:hover {
  width: auto;
}

.images-carousell {
  width: 300px;
  min-width: 300px;
  max-width: 300px;
  height: 100%;
  padding: 30px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  border-left: 3px solid rgba(255, 255, 255, 0.5);
  overflow-x: hidden;
  overflow-y: visible;
  cursor: grab;
}
.images-carousell img,
.images-carousell video {
  position: relative;
  width: 240px;
  height: auto;
  box-shadow: 0px 0px 0px rgba(255, 255, 255, 0);
  transition: all 0.2s cubic-bezier(0.22, 0.61, 0.36, 1);
  cursor: pointer;
}
.images-carousell img:hover,
.images-carousell video:hover {
  filter: brightness(1.5);
  box-shadow: 0px 0px 4px rgba(255, 255, 255, 0.25);
  width: 270px;
}
.images-carousell .selected {
  filter: brightness(1.5);
  position: relative;
  width: 270px;
  border: 3px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@media (max-width: 1270px) {
  .images-carousell {
    display: none;
  }
}

.hide {
  display: none !important;
}

.container-effects {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 10;
}
.container-effects::after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(212, 212, 212, 0.1);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}
.container-effects::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(rgba(212, 212, 212, 0) 50%, rgba(187, 187, 187, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  z-index: 2;
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
  mix-blend-mode: color;
}

.container-effect-borders {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 11;
  mix-blend-mode: multiply;
  box-shadow: inset 0px 0px 20px 15px black, 0px 0px 0px 30px black;
  border-radius: 50px;
}
@media (max-width: 500px) {
  .container-effect-borders {
    display: none;
  }
}

html {
  background-color: #000000;
}

.turn-on {
  animation: turn-on 4s linear forwards;
}

.turn-off {
  animation: turn-off 0.55s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes turn-off {
  0% {
    transform: scale(1, 1.3) translate3d(0, 0, 0);
    filter: brightness(1);
    opacity: 1;
  }
  60% {
    transform: scale(1.3, 0.001) translate3d(0, 0, 0);
    filter: brightness(10);
  }
  100% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: scale(0, 0.0001) translate3d(0, 0, 0);
    filter: brightness(50);
  }
}
@keyframes turn-on {
  0% {
    transform: scale(1, 0.8) translate3d(0, 0, 0);
    filter: brightness(30);
    opacity: 1;
  }
  3.5% {
    transform: scale(1, 0.8) translate3d(0, 100%, 0);
  }
  3.6% {
    transform: scale(1, 0.8) translate3d(0, -100%, 0);
    opacity: 1;
  }
  9% {
    transform: scale(1.3, 0.6) translate3d(0, 100%, 0);
    filter: brightness(30);
    opacity: 0;
  }
  11% {
    transform: scale(1, 1) translate3d(0, 0, 0);
    filter: contrast(0) brightness(0);
    opacity: 0;
  }
  100% {
    transform: scale(1, 1) translate3d(0, 0, 0);
    filter: contrast(1) brightness(1.2) saturate(1.3);
    opacity: 1;
  }
}
.container-intro {
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 10% 20%;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 9;
}
.container-intro .title-intro {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 900;
  font-size: 8vw;
  line-height: 92.5%;
}
.container-intro .subtitle-intro {
  font-style: normal;
  font-weight: 700;
  font-size: 2vw;
  line-height: 120%;
}
.container-intro .intro-buttons {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.container-intro .intro-button {
  align-items: center;
  justify-content: center;
  gap: 27px;
  background-color: unset;
  border: 3px solid #ffffff;
  border-radius: 16px;
  width: 580px;
  height: 100px;
  cursor: pointer;
}
.container-intro .intro-button p,
.container-intro .intro-button a {
  font-weight: 900;
  font-size: 40px;
  line-height: 96%;
  text-decoration: none;
}
.container-intro .intro-button img {
  width: 30px;
  filter: drop-shadow(-1px 1px 0 red) drop-shadow(1px -1px 0 #00ff47);
}
.container-intro .intro-button-cv {
  width: auto;
  padding: 0px 20px;
}
@media (max-width: 1367px) {
  .container-intro {
    padding: 80px;
  }
  .container-intro .title-intro {
    font-size: 10vw;
  }
  .container-intro .subtitle-intro {
    font-size: 3vw;
  }
}
@media (max-width: 767px) {
  .container-intro .intro-button {
    width: 330px;
    height: 70px;
  }
  .container-intro .intro-button p {
    font-size: 28px;
  }
}
@media (max-width: 500px) {
  .container-intro {
    align-items: center;
    justify-content: space-around;
    padding: 10%;
  }
  .container-intro .title-intro {
    font-size: 18vw;
  }
  .container-intro .subtitle-intro {
    font-size: 32px;
    margin-bottom: 36px;
  }
  .container-intro .intro-button {
    width: 100%;
  }
  .container-intro .intro-button p {
    font-size: 28px;
  }
}

.crt-effect-video {
  position: absolute;
  pointer-events: none;
  min-width: 100%;
  min-height: 100%;
  max-width: 100%;
  max-height: 100%;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 8;
  -o-object-fit: fill;
     object-fit: fill;
}

.crt-effect-click {
  opacity: 0;
}

.video-turned-down {
  animation: turned-down 4s infinite;
}

@keyframes turned-down {
  0% {
    opacity: 0.3;
  }
  20% {
    opacity: 0.3;
  }
  21% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}/*# sourceMappingURL=style.css.map */