[data-brand="monster"] body {
  background: url('../img/hero-wo_gradient-mobile.jpg') fixed center center / cover no-repeat;
  background-size: cover !important;
}

@media (min-width:768px) {
  [data-brand="monster"] body {
    background: url('../img/hero-wo_gradient.jpg') fixed center center / cover no-repeat;
  }
}

.coming_soon {
  height: 100vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-content: space-between;
  align-items: center;
  padding: 100px 16px; }
.coming_soon img {
  max-width: 200px; 
  margin: 32px;
}

h1 {
  text-transform: uppercase;
}

.fixed-logo {
  background: black;
  padding: 5px 10px;
  position: absolute;
  left: 0;
  right: 0;
  text-align: left;
  top: 0;
}

@media (min-width:768px){
  .fixed-logo {
    padding: 10px 30px;
  }
}

.fixed-logo img {
    display: block;
    max-width: 30px;
    margin: 0;
}

.signup .button {
    position: relative;
    display: inline-flex; 
    align-items: center;  
    justify-content: center;
    padding: 12px 40px;
    border: 0;  
    background: #2b4000 !important;  
    color: #fff;
    font-family: 'Industry', Impact, "Arial Narrow", sans-serif;  
    font-size: 22px;  
    font-weight: 900;  
    font-style: normal;  
    line-height: 1;
    /*outline: 1px solid var(--ring);*/
    box-shadow: none;
    border-radius: 0;
}

.signup p {
  font-size: 16px;
  margin-top: 15px;
  color: white;
  font-weight: bold;
}

@media (min-width:768px){
  .signup p {
    font-size: 20px;
    margin-top: 20px;
  }
}

.signup {
    margin-bottom: 50px;
}

.signup .button::before {
    content: "";
    position: absolute;
    inset: -2px;
    pointer-events: none;
    background: linear-gradient(#b8e05a, #b8e05a) left top / 10px 2px no-repeat, linear-gradient(#b8e05a, #b8e05a) left top / 2px 10px no-repeat, linear-gradient(#b8e05a, #b8e05a) right top / 10px 2px no-repeat, linear-gradient(#b8e05a, #b8e05a) right top / 2px 10px no-repeat, linear-gradient(#b8e05a, #b8e05a) left bottom / 10px 2px no-repeat, linear-gradient(#b8e05a, #b8e05a) left bottom / 2px 10px no-repeat, linear-gradient(#b8e05a, #b8e05a) right bottom / 10px 2px no-repeat, linear-gradient(#b8e05a, #b8e05a) right bottom / 2px 10px no-repeat;
}

@media (min-width: 768px) {
    .signup .button {
      padding: 18px 55px;
      min-width: 300px;
      font-size: 25px;
    }
    .signup .button::before {
        content: "";
        position: absolute;
        inset: -3px;
        pointer-events: none;
        background: linear-gradient(#b8e05a, #b8e05a) left top / 15px 3px no-repeat, 
                    linear-gradient(#b8e05a, #b8e05a) left top / 3px 15px no-repeat, 
                    linear-gradient(#b8e05a, #b8e05a) right top / 15px 3px no-repeat, 
                    linear-gradient(#b8e05a, #b8e05a) right top / 3px 15px no-repeat, 
                    linear-gradient(#b8e05a, #b8e05a) left bottom / 15px 3px no-repeat, 
                    linear-gradient(#b8e05a, #b8e05a) left bottom / 3px 15px no-repeat, 
                    linear-gradient(#b8e05a, #b8e05a) right bottom / 15px 3px no-repeat, 
                    linear-gradient(#b8e05a, #b8e05a) right bottom / 3px 15px no-repeat;
    }
}

.countdown {
  margin-top: 60px;
  padding: 0 15px;
  position: fixed;
  bottom: 10px;
}

.countdown__title {
  color: var(--white, #FFF);
  text-align: center;
  font-family: 'Industry', 'Open Sans Condensed Extra Bold', 'Open Sans';
  font-size: 28px;
  font-weight: 800;
  line-height: 110%; /* 44px */
  text-transform: uppercase;
}

@media (min-width:768px){
  .countdown__title {
    font-size: 40px;
  }
}

.countdown__title sup {
  position: relative;
  top: 12px;
  font-size: .95em;
}


.countdown__timer {
  padding: 8px 0;
}

.countdown__list {
  padding: 0;
  display: flex;
  gap: 1px;
  justify-content: center;
  align-items: center;
  min-height: 150px;
}

@media (min-width:768px){
  .countdown__list {
    gap: 15px;
  }
}

.countdown__item {
  display: flex;
  flex-direction: column;

  color: var(--color-01, #98D801);
  font-family: Industry;
  font-size: 18px;
  font-weight: 700;
  line-height: 160%; /* 28.8px */
  text-transform: uppercase;
  text-align: left;
}
.countdown__item .countdown__value {
  color: var(--white, #FFF);
  font-family: inherit;
  font-size: 48px;
  font-weight: 500;
  line-height: 100%; /* 78px */
}

@media (min-width:768px){
  .countdown__item .countdown__value {
    font-size: 56px;
  }
}

.countdown__item .countdown__tags {
  padding-left: 7px;
}
.countdown__item .countdown__tags.days {
  padding-left: 18px;
}

@media (min-width:768px){
  .countdown__item .countdown__tags {
    padding-left: 15px;
  }
  .countdown__item .countdown__tags.days {
    padding-left: 30px;
  }
}

.countdown__item:not(:last-child) .countdown__value::after {
  content: ':';
  font-size: inherit;
  color: grey;
  margin: 0 3px;
}

@media (min-width:768px){
  .countdown__item .countdown__value {
    font-size: 78px;
  }
  .countdown__item:not(:last-child) .countdown__value::after {
    margin: 0 15px;
  }
}