body {
  font-family: 'Helvetica', 'Arial', sans-serif;
  background: #001015 url('../images/bg.png') top center no-repeat;
  color: #fff;
  min-width: 320px;
}

.main {
  position: relative;
  margin: 0 auto;
  padding: 25px;
  max-width: 1000px;
  overflow: hidden;
}

.main:before {
  content: '';
  display: block;
  position: absolute;
  top: -25px;
  right: 0;
  height: 305px;
  width: 305px;
  background-image: url('../images/jayz.png');
  z-index: -1;
}

a {
  color: inherit;
}

h2 {
  font-weight: bold;
  font-size: 12px;
}

h3 {
  margin-top: 25px;
  font-size: 24px;
  font-weight: 100;
  min-height: 24px;
}

.hidden-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding:0 !important;
  border:0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

form {
  margin-top: 25px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

input {
  height: 30px;
  line-height: 30px;
  padding: 0;
  box-sizing: border-box;
  vertical-align: middle;
  font-family: inherit;
  border-radius: 0;
}

input[type=text] {
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  font-size: inherit;
  background: transparent;
  color: #fff;
  border: 0;
  border-bottom: 2px solid #53737f;
  transition: border-color 0.2s ease-in-out;
  text-overflow: ellipsis;
  -webkit-appearance: none;
}

input[type=text]:focus {
  border-color: #fff;
  outline: none;
}

input[type=text].ng-invalid:not(.ng-pristine) {
  border-color: #cc2222;
}

input[type=submit] {
  padding: 0 10px;
  margin-left: 10px;
  font-size: inherit;
  font-weight: bold;
  background-color: #992222;
  color: #fff;
  border: 0;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  -webkit-appearance: none;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

input[type=submit]:focus,
input[type=submit]:hover {
  background-color: #cc2222;
  outline: none;
}

.player-wrapper {
  margin-top: 25px;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.player-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.share {
  margin-top: 25px;
  text-align: center;
  font-size: 0;
}

.share li {
  display: inline-block;
  height: 40px;
  width: 40px;
  margin-right: 10px;
  line-height: 40px;
  text-align: center;
  font-size: 24px;
  border-radius: 50%;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.1);
}

.share li:last-child {
  margin-right: 0;
}

.share li:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.share li a {
  display: block;
  height: 100%;
  width: 100%;
}

.share li a span {
  line-height: 40px;
}

.ad {
  margin-top: 25px;
}

footer {
  margin-top: 25px;
  padding: 10px;
  text-align: center;
  font-size: 12px;
  color: #53737f;
  border-top: 2px solid #53737f;
}

@media screen and (max-width: 500px) {
  .main {
    padding: 25px 10px;
  }

  .main:before {
    right: -100px;
  }

  form {
    display: block;
  }

  input {
    display: block;
    width: 100%;
  }

  input[type=submit] {
    margin: 0;
    margin-top: 10px;
  }
}