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

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

/* Общий фон и центрирование для обеих страниц */
.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Пастельные фоны для страниц (серо-пастельные, нейтральные) */
.page-main {
  background: linear-gradient(135deg, #f1f3f6, #e9edf2, #f5f6fa);
}

.page-hidden {
  background: linear-gradient(135deg, #f2f4f7, #eceff4, #f6f8fb);
}

/* Центрирующий контейнер */
.center-wrapper {
  text-align: center;
  padding: 24px 16px;
  width: 100%;
  max-width: 460px;
}

/* Градиентная надпись chupep.xyz (спокойные серо-голубые тона) */
.logo {
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(120deg, #8f9bb0, #a3afc2, #b7c1d2, #9aa6ba);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-flow 8s ease-in-out infinite;
  cursor: default;
}

/* Кликабельная точка (визуально как обычный текст) */
.chupep-dot {
  cursor: default;
  display: inline-block;
  transition: transform 0.12s ease;
}

.chupep-dot:active {
  transform: scale(1.08);
}

/* Анимация переливающегося градиента */
@keyframes gradient-flow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Вторая страница */
.hidden-text {
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  font-weight: 600;
  background: linear-gradient(120deg, #8f9bb0, #a3afc2, #b7c1d2, #9aa6ba);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-flow 8s ease-in-out infinite;
  margin-bottom: 1.5rem;
}

/* Большая яркая кнопка на скрытой странице */
.big-cta-button {
  display: inline-block;
  margin-bottom: 1.2rem;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #ffb347, #ff6b6b, #ff9f7c);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.big-cta-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
  filter: brightness(1.05);
}

.big-cta-button:active {
  transform: translateY(1px) scale(0.99);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

/* Кнопка звукового сопровождения */
.sound-button {
  display: inline-block;
  margin-bottom: 1.2rem;
  padding: 0.7rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  color: #384055;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease;
}

.sound-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
  background: #ffffff;
}

.sound-button:active {
  transform: translateY(1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

/* Адаптивность для телефонов и десктопов на скрытой странице */
@media (max-width: 600px) {
  .center-wrapper {
    padding: 24px 20px;
  }

  .big-cta-button,
  .sound-button {
    width: 100%;
  }
}

/* Ссылка назад (опционально) */
.back-link {
  display: inline-block;
  font-size: 0.95rem;
  color: rgba(40, 40, 60, 0.7);
  text-decoration: none;
  border-bottom: 1px dashed rgba(40, 40, 60, 0.4);
  padding-bottom: 2px;
}

.back-link:hover {
  color: rgba(40, 40, 60, 0.9);
  border-bottom-style: solid;
}
