.days-count,
.hours-count,
.minutes-count {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  line-height: 1;
  padding-right: 15px;
  text-align: center;
}

@media (max-width: 768px) {
  .days-count,
  .hours-count,
  .minutes-count {
    font-size: 24px;
  }
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .timer-number {
    font-size: 30px;
  }
}

.cursor-dot {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #a854ff;
  box-shadow: 0 0 8px #a854ff, 0 0 16px #a854ff;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot {
    display: none !important;
  }
}

.burger-icon {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1002;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  cursor: pointer;
}
.custom-burger span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

.custom-menu {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 1001;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 20px;
}

.menu-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.menu-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #FFFFFF;
}
.menu-links a {
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-family: DrukTextWideTT;
}

.menu-btn {
  background: #00fc98;
  color: #000 !important;
  text-align: center;
  font-weight: 800;
  font-size: 16px;
  border-radius: 100px;
  padding: 15px 15px;
  text-decoration: none;
  width: 180px;
  font-family: Open Sans;
}

.menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  z-index: 1003;
  font-weight: bold;
}




