html,
body {
  background-color: black;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
html .slides,
body .slides,
html > .dg,
body > .dg {
  display: none;
}

.dribbble {
  position: fixed;
  display: block;
  right: 20px;
  bottom: 20px;
}
.dribbble img {
  display: block;
  height: 28px;
}
.twitter {
  position: fixed;
  display: block;
  right: 64px;
  bottom: 14px;
}
.twitter svg {
  width: 32px;
  height: 32px;
  fill: #1da1f2;
}
.center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 100%;
  pointer-events: none;
}
.center-text #timer-numbers {
  font-size: 4.2rem !important;
}
.center-text #timer-labels {
  font-size: 2.25rem !important;
}
.logo-img {
  display: block;
  margin: 48px auto 32px auto;
  width: 40vw;
  max-width: 320px;
}
.linear-wipe {
  background: linear-gradient(to right, #FFF 20%, #FF0 40%, #FF0 60%, #FFF 80%);
  background-size: 200% auto;
  color: #000;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 1s linear infinite;
  background-position: 0 center;
}
@keyframes shine {
  to {
    background-position: 200% center;
  }
}
.draw {
  display: block;
  margin: 0 auto;
  margin-top: -300px;
}
.timer-cards {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
}
.timer-card {
  background: rgba(255,255,255,0.02);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  padding: 24px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 90px;
}
.timer-number {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 700;
  font-family: 'SF Pro Display', 'Segoe UI', Arial, sans-serif;
  margin-bottom: 8px;
  letter-spacing: 2px;
}
.timer-label {
  color: #fff;
  font-size: 1.2rem;
  opacity: 0.8;
  font-family: 'SF Pro Display', 'Segoe UI', Arial, sans-serif;
  letter-spacing: 1px;
}
.logo-shine {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40vw;
  max-width: 320px;
  margin: 88px auto 32px auto;
  position: relative;
}
.logo-shine img {
  width: 100%;
  display: block;
  /* Маска для shine */
  -webkit-mask-image: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.8) 40%, rgba(255,255,255,0.8) 60%, transparent 80%);
  -webkit-mask-size: 200% 100%;
  -webkit-mask-position: 0 0;
  mask-image: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.8) 40%, rgba(255,255,255,0.8) 60%, transparent 80%);
  mask-size: 200% 100%;
  mask-position: 0 0;
  animation: logo-shine 5.5s linear infinite;
}
@-webkit-keyframes logo-shine {
  to {
    -webkit-mask-position: 200% 0;
  }
}
@keyframes logo-shine {
  to {
    mask-position: 200% 0;
  }
}
@media (max-width: 600px) {
  .timer-cards {
    gap: 10px;
  }
  .timer-card {
    min-width: 56px;
    padding: 12px 6px 8px 6px;
  }
  .timer-number {
    font-size: 1.6rem;
    min-width: 32px;
    margin-bottom: 4px;
  }
  .timer-label {
    font-size: 0.8rem;
    min-width: 32px;
  }
}