html,
body {
  height: 100%;
  margin: 0;
  background-color: #000;
  color: #fff;
  font-family: 'Source Sans Pro', sans-serif;
  text-shadow: 4px 4px 10px #000;
}
h1 {
  text-transform: uppercase;
}
#loader {
  width: 100%;
  height: 100%;
  background-color: #000;
  position: fixed;
  margin: 0;
  z-index: 10;
  pointer-events: none;
  -webkit-transition: all cubic-bezier(0.35, 0.005, 0.085, 0.995) 4s;
  -moz-transition: all cubic-bezier(0.35, 0.005, 0.085, 0.995) 4s;
  -ms-transition: all cubic-bezier(0.35, 0.005, 0.085, 0.995) 4s;
  transition: all cubic-bezier(0.35, 0.005, 0.085, 0.995) 4s;
}
#loader.notactive {
  opacity: 0;
}
#pica {
  background-image: url("../img/bg.jpg");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: fixed;
  margin: 0;
  pointer-events: none;
  opacity: 0.6;
  -webkit-transition: all cubic-bezier(0.35, 0.005, 0.085, 0.995) 5s;
  -moz-transition: all cubic-bezier(0.35, 0.005, 0.085, 0.995) 5s;
  -ms-transition: all cubic-bezier(0.35, 0.005, 0.085, 0.995) 5s;
  transition: all cubic-bezier(0.35, 0.005, 0.085, 0.995) 5s;
}
#pica.active {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
#content {
  position: absolute;
  width: 100%;
  padding-top: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-transition: transform 3s cubic-bezier(0.35, 0.005, 0.085, 0.995);
  -moz-transition: transform 3s cubic-bezier(0.35, 0.005, 0.085, 0.995);
  -ms-transition: transform 3s cubic-bezier(0.35, 0.005, 0.085, 0.995);
  transition: transform 3s cubic-bezier(0.35, 0.005, 0.085, 0.995);
}
#content.start {
  -webkit-transform: translate3d(0, -100px, 0);
  -moz-transform: translate3d(0, -100px, 0);
  -ms-transform: translate3d(0, -100px, 0);
  transform: translate3d(0, -100px, 0);
}
#content .block {
  width: 40%;
  margin: 60px 60px;
}
#content .block h1 {
  font-size: 4rem;
}
#content .block p {
  font-size: 1.3rem;
}
#content #logo {
  display: flex;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#content #logo img {
  width: 550px;
  align-self: center;
}
#content #trailerblock {
  background-color: #000;
  padding: 25px;
  -webkit-transform: rotateZ(-1.5deg);
  -moz-transform: rotateZ(-1.5deg);
  -ms-transform: rotateZ(-1.5deg);
  transform: rotateZ(-1.5deg);
}
#content #trailer-frame {
  width: 100%;
}
#content #storebuttons {
  text-align: center;
}
#content #storebuttons .storebutton {
  width: 300px;
  height: auto;
  margin: 10px;
  display: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#content #storebuttons .storebutton:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  cursor: pointer;
}
#content #storebuttons .storebutton.active {
  display: inline;
}
#logos {
  width: 550px;
  position: fixed;
  z-index: 9;
  bottom: 0;
  right: 0;
  pointer-events: none;
  text-align: right;
}
#logos img {
  width: 20%;
  margin: 10px;
  -webkit-transition: transform 0.2s ease;
  -moz-transition: transform 0.2s ease;
  -ms-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
}
#logos img:hover {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
#logos .tblogo {
  background-color: #fff;
  border-radius: 250px;
  padding: 10px;
  box-shadow: 10px 10px 0 #000;
}
#deco .topleft {
  position: fixed;
  z-index: 8;
  margin: 0;
  top: 0;
  left: 0;
  background-image: url("../img/inkcorner.svg");
  background-size: 100%;
  width: 397px;
  height: 318px;
  -webkit-transform: translate3d(-3px, -10px, 0);
  -moz-transform: translate3d(-3px, -10px, 0);
  -ms-transform: translate3d(-3px, -10px, 0);
  transform: translate3d(-3px, -10px, 0);
}
#deco .bottomright {
  position: fixed;
  z-index: 8;
  margin: 0;
  bottom: -10px;
  right: -10px;
  background-image: url("../img/inkcorner.svg");
  background-size: 100%;
  width: 397px;
  height: 318px;
  -webkit-transform: translate3d(3px, 20px, 0);
  -moz-transform: translate3d(3px, 20px, 0);
  -ms-transform: translate3d(3px, 20px, 0);
  transform: translate3d(3px, 20px, 0);
  -webkit-transform: rotateZ(180deg);
  -moz-transform: rotateZ(180deg);
  -ms-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
  pointer-events: none;
}
#localized .en,
#localized .fr,
#localized .de,
#localized .ru,
#localized .es,
#localized .it,
#localized .pt,
#localized .ko,
#localized .jp,
#localized .zh,
#localized .zh-tr {
  display: none;
}
#localized .en.active,
#localized .fr.active,
#localized .de.active,
#localized .ru.active,
#localized .es.active,
#localized .it.active,
#localized .pt.active,
#localized .ko.active,
#localized .jp.active,
#localized .zh.active,
#localized .zh-tr.active {
  display: inline;
}
#smarturl {
  position: absolute;
  width: 60%;
  padding: 200px 20% 0 20%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  -webkit-transition: transform 3s cubic-bezier(0.35, 0.005, 0.085, 0.995);
  -moz-transition: transform 3s cubic-bezier(0.35, 0.005, 0.085, 0.995);
  -ms-transition: transform 3s cubic-bezier(0.35, 0.005, 0.085, 0.995);
  transition: transform 3s cubic-bezier(0.35, 0.005, 0.085, 0.995);
  display: none;
}
#smarturl.active {
  display: inline !important;
}
#smarturl a {
  color: #fff;
  align-self: center;
  display: block;
}
#smarturl .playrw {
  background-color: #000;
  border-radius: 5px;
  padding: 50px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.3rem;
  display: none;
}
#smarturl .playrw.active {
  display: table !important;
}
#smarturl #storebuttons {
  text-align: center;
  margin-top: 100px;
}
#smarturl #storebuttons .storebutton {
  width: 300px;
  height: auto;
  margin: 10px;
  display: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#smarturl #storebuttons .storebutton:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  cursor: pointer;
}
#smarturl #storebuttons .storebutton.active {
  display: inline;
}
@media (max-width: 1200px) {
  #content .block {
    width: 98%;
  }
  #content .block:nth-of-type(4) {
    padding-bottom: 130px;
  }
  #content #logo {
    width: 50%;
  }
  #content #logo img {
    width: 100%;
  }
  #content #trailerblock {
    padding: 15px;
  }
  #logos {
    width: 350px;
  }
  #deco .topleft {
    -webkit-transform: translate3d(-80px, -80px, 0);
    -moz-transform: translate3d(-80px, -80px, 0);
    -ms-transform: translate3d(-80px, -80px, 0);
    transform: translate3d(-80px, -80px, 0);
  }
  #deco .bottomright {
    -webkit-transform: translate3d(30px, 50px, 0) rotateZ(180deg);
    -moz-transform: translate3d(30px, 50px, 0) rotateZ(180deg);
    -ms-transform: translate3d(30px, 50px, 0) rotateZ(180deg);
    transform: translate3d(30px, 50px, 0) rotateZ(180deg);
  }
}
@media (max-width: 800px) {
  #logo {
    width: 90% !important;
  }
  #smarturl {
    position: absolute;
    width: 80%;
    padding: 200px 10% 0 10%;
  }
  #smarturl .playrw {
    font-size: 1rem;
  }
}
.hide {
  display: none !important;
}
