@font-face {
  font-family: 'Courier Prime';
  src: url("../fonts/CourierPrime-Regular.woff2") format("woff2"), url("../fonts/CourierPrime-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Courier Prime';
  src: url("../fonts/CourierPrime-Bold.woff2") format("woff2"), url("../fonts/CourierPrime-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

button,
input,
textarea {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
}

button:focus {
  box-shadow: none !important;
}

*:focus {
  outline: none;
}

body {
  font-family: 'Courier Prime';
  font-weight: 400;
  color: #008f11;
}

a {
  display: inline-block;
  font: inherit;
  color: inherit;
  transition: 300ms;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  max-height: 100%;
}

a img {
  border: none;
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wrapper {
  background: #000;
  overflow: hidden;
  position: relative;
  min-height: 100vh;
}

.egg {
  width: 600px;
  height: 400px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .egg {
    width: 320px;
    height: 200px;
  }
}

.egg img {
  width: 100%;
  height: 100%;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  cursor: pointer;
  margin: 0 auto -100px auto;
}

.btn a {
  display: block;
  width: 100%;
  line-height: 0;
}

.btn img {
  width: 100%;
  height: auto;
  display: block;
}

@media only screen and (max-width: 767px) {
  .btn {
    margin-bottom: 0;
    width: 280px;
  }
}

.items {
  display: flex;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .items {
    display: block;
  }
}

.socials {
  width: 400px;
  min-width: 400px;
  margin-right: -120px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .socials {
    margin: -80px auto -60px auto;
  }
}

.socials__image {
  display: flex;
  align-items: center;
  width: 100%;
}

.socials__image img {
  width: 100%;
}

.socials__list {
  position: absolute;
  top: 80px;
  left: 125px;
  width: 160px;
  height: 240px;
}

.socials__list a {
  display: block;
  width: 100%;
  height: 50px;
}

.static {
  width: 400px;
}

@media only screen and (max-width: 767px) {
  .static {
    width: 100%;
  }
}

.number {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -50px;
}

.number input::-webkit-outer-spin-button,
.number input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

.number-text {
  width: 130px;
  height: 40px;
  border-radius: 30px;
  border: 2px solid #008f11;
  margin: 0 16px;
  background: none;
  color: #008f11;
  font-size: 24px;
  text-align: center;
  font-weight: 700;
}

.number-plus {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  border: 2px solid #008f11;
  font-weight: 700;
}

.number-plus strong {
  margin-top: 3px;
}

.number-minus {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  border: 2px solid #008f11;
  font-weight: 700;
}

.number-minus strong {
  margin-top: 3px;
}

.end {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 20px 56px;
  text-align: center;
  position: relative;
}

.end__line {
  width: 180px;
  height: 1px;
  margin-bottom: 28px;
  background: linear-gradient(90deg, transparent 0%, #c9a962 20%, #f0e6c8 50%, #c9a962 80%, transparent 100%);
  box-shadow: 0 0 12px rgba(201, 169, 98, 0.45);
  opacity: 0.85;
}

.end__text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
}

.end__label {
  color: #8a7a5a;
  font-weight: 400;
}

.end__studio {
  position: relative;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
  background: linear-gradient(
    110deg,
    #8a7340 0%,
    #c9a962 18%,
    #f5ecd0 35%,
    #e8d5a3 50%,
    #c9a962 65%,
    #f0e6c8 80%,
    #8a7340 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: luxuryShimmer 6s linear infinite;
  filter: drop-shadow(0 0 6px rgba(201, 169, 98, 0.35));
  transition: filter 0.4s ease;
}

.end__studio:hover {
  filter: drop-shadow(0 0 14px rgba(240, 230, 200, 0.7)) drop-shadow(0 0 4px rgba(201, 169, 98, 0.9));
  animation-duration: 2.8s;
}

.end__sep {
  color: #6b5c3e;
  opacity: 0.7;
  font-weight: 300;
}

.end__reveal {
  color: #a8946a;
  font-weight: 500;
  letter-spacing: 0.14em;
}

@keyframes luxuryShimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 220% center;
  }
}

@media only screen and (max-width: 767px) {
  .end {
    padding: 32px 16px 40px;
  }

  .end__line {
    width: 120px;
    margin-bottom: 20px;
  }

  .end__text {
    font-size: 12px;
    gap: 6px 10px;
    letter-spacing: 0.08em;
  }

  .end__studio {
    letter-spacing: 0.12em;
  }
}

.absolute {
  background: none;
  border: 0;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}

.absolute svg:last-child {
  display: none;
}

.absolute.active svg:first-child {
  display: none;
}

.absolute.active svg:last-child {
  display: block;
}

#countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 40px;
}

@media screen and (max-width: 991px) {
  #countdown {
    justify-content: center;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  #countdown {
    margin-bottom: 20px;
  }
}

#countdown .counter {
  width: 132px;
}

@media screen and (max-width: 767px) {
  #countdown .counter {
    width: 77px;
  }
}

#countdown .counter span::before {
  content: attr(b);
  font-size: 64px;
  display: block;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #countdown .counter span::before {
    font-size: 32px;
  }
}

#countdown .counter span.ping::before {
  -webkit-animation: pingEffect 0.4s 1 forwards;
  animation: pingEffect 0.4s 1 forwards;
}

#countdown .counter b {
  font-size: 24px;
  display: block;
  text-align: center;
  letter-spacing: 0.06em;
  color: #f3ebe1;
}

@media screen and (max-width: 767px) {
  #countdown .counter b {
    font-size: 16px;
  }
}

@-webkit-keyframes pingEffect {
  0% {
    transform: scale(0.92);
  }
  10% {
    opacity: 0.7;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

@keyframes pingEffect {
  0% {
    transform: scale(0.92);
  }
  10% {
    opacity: 0.7;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

.counter {
  position: relative;
}

.counter__points {
  font-size: 64px;
  display: block;
  position: absolute;
  top: -3px;
  right: -12px;
}

@media screen and (max-width: 767px) {
  .counter__points {
    font-size: 24px;
    top: 2px;
    right: -5px;
  }
}