@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: local('Open Sans Light'), local('OpenSans-Light'),
       url('fonts/open-sans-v17-latin-300.woff2') format('woff2'),
       url('fonts/open-sans-v17-latin-300.woff') format('woff');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans Regular'), local('OpenSans-Regular'),
       url('fonts/open-sans-v17-latin-regular.woff2') format('woff2'),
       url('fonts/open-sans-v17-latin-regular.woff') format('woff');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'),
       url('fonts/open-sans-v17-latin-600.woff2') format('woff2'),
       url('fonts/open-sans-v17-latin-600.woff') format('woff');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: local('Open Sans Bold'), local('OpenSans-Bold'),
       url('fonts/open-sans-v17-latin-700.woff2') format('woff2'),
       url('fonts/open-sans-v17-latin-700.woff') format('woff');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  src: local('Open Sans ExtraBold'), local('OpenSans-ExtraBold'),
       url('fonts/open-sans-v17-latin-800.woff2') format('woff2'),
       url('fonts/open-sans-v17-latin-800.woff') format('woff');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', arial, helvetica, sans-serif;
  font-size: 14px;
}

img, iframe { border: 0; vertical-align: top; }
a { text-decoration: none; }

.linkpage {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #000;
}

.back {
  position: fixed;
  width: 100%;
  height: 100%;
  background: transparent url('images/bg.jpg') no-repeat;
  background-size: 100% 100%;
  box-shadow: inset 0 0 100px 50px #000;
  filter: blur(8px);
}

.wrapper {
  width: 450px;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 108px;
  color: #ccc;
  background-color: #111;
  box-shadow: 0 0 10px 5px #000;
  transform: translateX(-50%);
}

.about,
.links { 
  text-align: center;
}

.footer { 
  text-align: center;
  color: #888;
}

.avatar {
  width: 144px;
  height: 144px;
  border-radius: 50%;
  margin-top: -56px;
  border: 4px solid #303030;
  box-shadow: 0 0 20px 10px #111;
}

h1 { 
  font-size: 32px;
  font-weight: 300;
  margin: 4px 0;
}

h2 { 
  padding: 9px 0 10px 0;
  border-bottom: 1px solid #303030;
  position: relative;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 8px;
  text-transform: uppercase;
  text-align: center;
  color: #888;
}

h2:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #303030;
  transform: rotate(45deg);
  position: absolute;
  bottom: -7px;
  left: calc(50% - 8px);
}

h2:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #111;
  transform: rotate(45deg);
  position: absolute;
  bottom: -5px;
  left: calc(50% - 8px);
}

.center { text-align: center; }
.outnow {
  width: 100%;
  position: relative;
}

.outnow .cover { width: 100%; }

.video {
  width: 100%;
  height: 253px;
  border: 0;
}

.row {
  width: 100%;
  height: 64px;
  transition: all 250ms;
}

@keyframes ani-dialog {
  0% {
      opacity: .5;
      top: 30vh
  }

  100% {
      opacity: 1;
      top: 20vh;
  }
}

.dialog {
  max-width: 600px;
  width: 90vw;
  padding: 20px;
  position: fixed;
  top: 20vh;
  left: 50vw;
  z-index: 20;
  display: none;
  background-color: #222;
  color: #fff;
  transform: translateX(-50%);
  border-radius: 8px;
  box-shadow: 0 0 40px 10px #000;
  animation: ani-dialog 1s;
}

.dialog.show { display: block; }

.dialog h2 { margin-bottom: 16px; }
.dialog h2:after { background-color: #222; }

.dialog .content {
  min-height: 20vh;
  max-height: 60vh;
  overflow: auto;
  line-height: 1.5;
}

.dialog .content::-webkit-scrollbar { width: 12px; height: 12px; }
.dialog .content::-webkit-scrollbar-button { display: none; }
.dialog .content::-webkit-scrollbar-track { background-color: transparent; }
.dialog .content::-webkit-scrollbar-track-piece { background-color: transparent; }
.dialog .content::-webkit-scrollbar-corner { background-color: transparent; }
.dialog .content::-webkit-scrollbar-thumb {
      height: 60px;
      border: 2px solid #222;
      background-color: #888;
      border-radius: 8px;
  }
.dialog .content::-webkit-resizer { background-color: transparent; }

.dialog .content h3
.dialog .content h4 { 
  margin-bottom: 12px; 
  color: #fff;
  font-size: 16px;
  margin-top: 20px;
}

.dialog .content p { margin: 8px 0; }

.dialog .content a {
  text-decoration: underline;
  color: #ccc;
}

.btn {
  width: 48px;
  height: 60px;
  margin: 2px;
  border: 0;
  display: inline-block;
  vertical-align: top;
  border-radius: 6px;
  font-size: 20px;
  line-height: 56px;
  color: #ccc;
  cursor: pointer;
  transition: all 250ms;
  outline: none;
}

.btn.btn-support {
  width: 144px;
  font-size: 14px;
}

.btn.btn-support.mdi:before {
  font-size: 24px; 
  vertical-align: bottom;
}

.btn.btn-footer {
  width: 100px;
  font-size: 12px;
  color: #888; 
}

.btn.btn-play {
  position: absolute;
  left: 0;
  top: 30%;
  line-height: 36px;
  text-align: center;
  text-shadow: 0 0 8px #000, 0 0 8px #000;
  width: 100%;

}

.btn.btn-play:before { 
  font-size: 60px;
  text-shadow: 0 0 8px #000;
}

.btn.btn-close {
  position: absolute;
  right: 0;
  top: 0;
  background-color: transparent;
  color: #888;
  z-index: 5;
}

.btn:focus,
.btn:hover,
.btn:active { 
  color: #00c4ff;
  text-shadow: 0 0 16px #00c4ff;
  transform: scale(1.25);
}

.btn.btn-support:hover { 
  transform: scale(1.1);
}

@media (max-width: 450px) {
  h1 { font-size: 28px; }

  .back {
    box-shadow: inset 0 0 24px 12px #000;
    filter: blur(4px);
  }

  .avatar {
    width: 102px;
    height: 102px;
    margin-top: -40px;
  }

  .wrapper { 
    width: 300px; 
    top: 68px;
  }

  .video { height: 169px; }

  .btn.btn-footer { width: 88px; }

}