* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  background: #020202;
  color: #fa0000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
body.locked {
  overflow: hidden;
}

h1 {
  font-size: max(16px, clamp(16px, 1.6vw, 32px) * 0.71);
  padding-bottom: calc(clamp(16px, 1.6vw, 32px) * 0.71);
  text-transform: uppercase;
}

h2 {
  font-size: max(16px, clamp(16px, 1.6vw, 32px) * 0.67);
  padding-bottom: calc(clamp(16px, 1.6vw, 32px) * 0.71);
  text-transform: uppercase;
}

h3 {
  font-size: calc(clamp(16px, 1.6vw, 32px) * 1.1);
  padding-bottom: calc(clamp(16px, 1.6vw, 32px) * 0.71);
}
h3 span {
  display: inline-block;
  padding-bottom: calc(clamp(16px, 1.6vw, 32px) * 0.5);
}

.button, .site main .main-inner .form #submit {
  border: 1px solid #fa0000;
  background: #fa0000;
  color: #020202;
  font-size: calc(clamp(16px, 1.6vw, 32px) * 1);
  padding: calc(clamp(16px, 1.6vw, 32px) * 0.38) calc(clamp(16px, 1.6vw, 32px) * 1);
  -webkit-transition: 250ms ease-in-out;
  transition: 250ms ease-in-out;
  cursor: pointer;
}
.button:hover, .site main .main-inner .form #submit:hover {
  background: #020202;
  color: #fa0000;
}

.site {
  margin: 0 auto;
  min-height: calc(var(--vh, 1vh) * 100);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.site header {
  padding: clamp(20px, 2vw, 48px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.site header .site-header-left img,
.site header .site-header-right img {
  display: block;
  height: auto;
  width: 100%;
  max-width: 80px;
}
.site main {
  padding: 0 clamp(20px, 2vw, 48px);
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.site main .logo-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: cyan;
  height: 38vmin;
  margin: 10vmin;
  background: url(../img/key.png) center center no-repeat;
  background-size: contain;
}
.site main .main-inner {
  position: absolute;
  height: 100%;
  width: calc(100% - clamp(20px, 2vw, 48px) * 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.site main .main-inner .bingo {
  border-top: 1px solid #fa0000;
  border-left: 1px solid #fa0000;
  margin: 0 auto;
  max-width: 960px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.site main .main-inner .bingo .box {
  display: inline-block;
  height: var(--box);
  width: var(--box);
  position: relative;
  pointer-events: none;
}
.site main .main-inner .bingo .box:before {
  border-right: 1px solid #fa0000;
  border-bottom: 1px solid #fa0000;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.site main .main-inner .bingo .box.found {
  background: rgba(250, 0, 0, 0.71);
  cursor: pointer;
  pointer-events: auto;
}
.site main .main-inner .bingo .box.new {
  background: rgba(250, 0, 0, 0.81);
  cursor: pointer;
  pointer-events: auto;
}
.site main .main-inner .bingo .box.new:after {
  background: url(../img/key-white.png) center center no-repeat;
  background-size: contain;
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  height: calc(100% - 6px);
  width: calc(100% - 6px);
}
.site main .main-inner h2 {
  padding: clamp(20px, 2vw, 48px);
  text-align: center;
}
.site main .main-inner .form {
  -webkit-transition: opacity 250ms ease-in-out;
  transition: opacity 250ms ease-in-out;
}
.site main .main-inner .form #code {
  background: none;
  border: 1px solid #fa0000;
  color: #fa0000;
  font-size: calc(clamp(16px, 1.6vw, 32px) * 0.67);
  padding: calc(clamp(20px, 2vw, 48px) * 0.25) calc(clamp(20px, 2vw, 48px) * 0.5);
}
.site main .main-inner .form #submit {
  font-size: calc(clamp(16px, 1.6vw, 32px) * 0.67);
  margin-left: 1rem;
}
.site main .main-inner .form.shake {
  -webkit-animation: nope 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
          animation: nope 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  opacity: 0.62;
}
.site main .main-inner .sign-up {
  color: #fa0000;
  margin-top: clamp(20px, 2vw, 48px);
  text-transform: uppercase;
  text-decoration: none;
  font-size: calc(clamp(16px, 1.6vw, 32px) * 0.67);
  -webkit-transition: 250ms ease-in-out;
  transition: 250ms ease-in-out;
}
.site main .main-inner .sign-up:hover {
  color: #ff4848;
}
.site footer {
  padding: calc(clamp(20px, 2vw, 48px) * 2) clamp(20px, 2vw, 48px) clamp(20px, 2vw, 48px);
}
.site footer a {
  color: #fa0000;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: 250ms ease-in-out;
  transition: 250ms ease-in-out;
}
.site footer a:hover {
  color: #ff4848;
}
.site footer .site-footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.site footer .site-footer-bottom {
  padding-top: clamp(20px, 2vw, 48px);
  text-align: center;
  font-size: 10px;
  line-height: 1.5;
}

.fancybox-button-close {
  display: block;
  height: 50px;
  width: 50px;
  margin: 2rem;
  position: relative;
}
.fancybox-button-close span {
  display: inline-block;
  background: #fa0000;
  position: absolute;
  top: calc(50% - 5px);
  left: 0;
  height: 10px;
  width: 100%;
  -webkit-transition: 250ms ease-in-out;
  transition: 250ms ease-in-out;
}
.fancybox-button-close span:nth-of-type(1) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.fancybox-button-close span:nth-of-type(2) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.fancybox-button-close:hover span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.fancybox-button-close:hover span:nth-of-type(2) {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.fancybox-lock {
  overflow: hidden;
  margin: 0 !important;
}

.fancybox-slide--video .fancybox-content {
  background: none;
}
.fancybox-slide--video .fancybox-content .underneath {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: calc(clamp(20px, 2vw, 48px) * 0.5);
}
.fancybox-slide--video .fancybox-content .underneath p {
  color: #fa0000;
}

.fancybox-navigation {
  height: calc(var(--vh, 1vh) * 100);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.fancybox-button-arrow-left {
  background: none;
  position: relative;
  display: inline-block;
  pointer-events: auto;
  left: clamp(20px, 2vw, 48px);
  color: #fa0000;
  font-size: calc(clamp(16px, 1.6vw, 32px) * 2);
  -webkit-transition: 250ms ease-in-out;
  transition: 250ms ease-in-out;
}
.fancybox-button-arrow-left:hover {
  color: #fff;
}

.fancybox-button-arrow-right {
  background: none;
  position: relative;
  display: inline-block;
  pointer-events: auto;
  right: clamp(20px, 2vw, 48px);
  color: #fa0000;
  font-size: calc(clamp(16px, 1.6vw, 32px) * 2);
  -webkit-transition: 250ms ease-in-out;
  transition: 250ms ease-in-out;
}
.fancybox-button-arrow-right:hover {
  color: #fff;
}

.preloader {
  background: #020202;
  position: fixed;
  top: 0;
  left: 0;
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  z-index: 10;
}
.preloader-inner {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.preloader-inner img {
  display: block;
  margin: auto;
  max-width: 60px;
  width: 100%;
  -webkit-animation: wom 2s ease-in-out infinite;
          animation: wom 2s ease-in-out infinite;
}

@-webkit-keyframes wom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes wom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes nope {
  10%, 90% {
    -webkit-transform: translate3d(-1px, 0, 0);
            transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    -webkit-transform: translate3d(2px, 0, 0);
            transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    -webkit-transform: translate3d(-4px, 0, 0);
            transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    -webkit-transform: translate3d(4px, 0, 0);
            transform: translate3d(4px, 0, 0);
  }
}
@keyframes nope {
  10%, 90% {
    -webkit-transform: translate3d(-1px, 0, 0);
            transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    -webkit-transform: translate3d(2px, 0, 0);
            transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    -webkit-transform: translate3d(-4px, 0, 0);
            transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    -webkit-transform: translate3d(4px, 0, 0);
            transform: translate3d(4px, 0, 0);
  }
}
.jitter:hover {
  -webkit-animation-name: jittery;
  animation-name: jittery;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes jittery {
  10% {
    -webkit-transform: translate(-1px, -1.5px) scale(1.01, 1.01);
    transform: translate(-1px, -1.5px) scale(1.01, 1.01);
  }
  20% {
    -webkit-transform: translate(1.5px, 1px) scale(0.99, 0.99);
    transform: translate(1.5px, 1px) scale(0.99, 0.99);
  }
  30% {
    -webkit-transform: translate(-0.5px, -1px) scale(1.01, 1.01);
    transform: translate(-0.5px, -1px) scale(1.01, 1.01);
  }
  40% {
    -webkit-transform: translate(1px, 1.5px) scale(1, 1);
    transform: translate(1px, 1.5px) scale(1, 1);
  }
  50% {
    -webkit-transform: translate(-0.5px, -1px) scale(0.99, 0.99);
    transform: translate(-0.5px, -1px) scale(0.99, 0.99);
  }
  60% {
    -webkit-transform: translate(0px, 0.5px) scale(1.01, 1.01);
    transform: translate(0px, 0.5px) scale(1.01, 1.01);
  }
  70% {
    -webkit-transform: translate(-1px, -0.5px) scale(1, 1);
    transform: translate(-1px, -0.5px) scale(1, 1);
  }
  80% {
    -webkit-transform: translate(1.5px, 1.5px) scale(0.995, 0.995);
    transform: translate(1.5px, 1.5px) scale(0.995, 0.995);
  }
  90% {
    -webkit-transform: translate(-0.5px, -1.5px) scale(1.05, 1.05);
    transform: translate(-0.5px, -1.5px) scale(1.05, 1.05);
  }
  100% {
    -webkit-transform: translate(1px, 0.5px) scale(0.98, 0.98);
    transform: translate(1px, 0.5px) scale(0.98, 0.98);
  }
}
@keyframes jittery {
  10% {
    -webkit-transform: translate(-1px, -1.5px) scale(1.01, 1.01);
    transform: translate(-1px, -1.5px) scale(1.01, 1.01);
  }
  20% {
    -webkit-transform: translate(1.5px, 1px) scale(0.99, 0.99);
    transform: translate(1.5px, 1px) scale(0.99, 0.99);
  }
  30% {
    -webkit-transform: translate(-0.5px, -1px) scale(1.01, 1.01);
    transform: translate(-0.5px, -1px) scale(1.01, 1.01);
  }
  40% {
    -webkit-transform: translate(1px, 1.5px) scale(1, 1);
    transform: translate(1px, 1.5px) scale(1, 1);
  }
  50% {
    -webkit-transform: translate(-0.5px, -1px) scale(0.99, 0.99);
    transform: translate(-0.5px, -1px) scale(0.99, 0.99);
  }
  60% {
    -webkit-transform: translate(0px, 0.5px) scale(1.01, 1.01);
    transform: translate(0px, 0.5px) scale(1.01, 1.01);
  }
  70% {
    -webkit-transform: translate(-1px, -0.5px) scale(1, 1);
    transform: translate(-1px, -0.5px) scale(1, 1);
  }
  80% {
    -webkit-transform: translate(1.5px, 1.5px) scale(0.995, 0.995);
    transform: translate(1.5px, 1.5px) scale(0.995, 0.995);
  }
  90% {
    -webkit-transform: translate(-0.5px, -1.5px) scale(1.05, 1.05);
    transform: translate(-0.5px, -1.5px) scale(1.05, 1.05);
  }
  100% {
    -webkit-transform: translate(1px, 0.5px) scale(0.98, 0.98);
    transform: translate(1px, 0.5px) scale(0.98, 0.98);
  }
}