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

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: #000;
  color: #fff;
}

.page {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background-image: url("bg.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 8vh; /* отступ снизу, чтобы кнопки были над самым краем */
}

/* Обёртка для двух кнопок */
.buttons-wrapper {
  display: flex;
  gap: 6vw;
  align-items: center;
  justify-content: center;
}

/* Кнопки в стиле луны */
.moon-btn {
  position: relative;
  width: min(26vw, 120px);
  height: min(26vw, 120px);
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer;
  background: radial-gradient(circle at 30% 30%, #ffffff, #89ffd6 55%, #0b1b18 100%);
  color: #000;
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: clamp(10px, 2.8vw, 14px);
  text-transform: uppercase;
  box-shadow:
    0 0 25px rgba(103, 255, 194, 0.75),
    0 0 80px rgba(103, 255, 194, 0.6);
  transition:
    transform 0.2s ease-out,
    box-shadow 0.2s ease-out,
    filter 0.2s ease-out;
}

/* Мягкое свечение вокруг кнопки */
.moon-btn::before {
  content: "";
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103, 255, 194, 0.3), transparent 65%);
  z-index: -1;
  filter: blur(4px);
}

/* Ховер / нажатие */
.moon-btn:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow:
    0 0 40px rgba(140, 255, 210, 0.9),
    0 0 110px rgba(140, 255, 210, 0.8);
  filter: brightness(1.05);
}

.moon-btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow:
    0 0 18px rgba(103, 255, 194, 0.8),
    0 0 60px rgba(103, 255, 194, 0.6);
  filter: brightness(0.98);
}

/* Чуть ближе друг к другу на маленьких экранах */
@media (max-width: 480px) {
  .buttons-wrapper {
    gap: 12vw;
  }
}
