/* ── Страница значений чисел на часах ──────────────────────────────────────── */

.cz-page {
  padding: 40px 0 80px;
  min-height: 70vh;
}
.cz-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.cz-header {
  text-align: center;
  margin-bottom: 36px;
}
.cz-hero-img-wrap {
  margin-bottom: 24px;
  text-align: center;
}
.cz-hero-img {
  width: 100%;
  max-width: 340px;
  height: auto;
  border-radius: 14px;
  display: inline-block;
  box-shadow: 0 0 30px rgba(100,160,255,.25);
}
.cz-title {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  color: #e8d5ff;
  margin: 0 0 10px;
  line-height: 1.25;
}
.cz-subtitle {
  color: #a090c0;
  font-size: 0.95rem;
  margin: 0;
}

/* Search block */
.cz-search-block {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(180,130,255,.2);
  border-radius: 20px;
  padding: 24px 24px 20px;
  margin-bottom: 28px;
}
.cz-search-wrap {
  position: relative;
  margin-bottom: 0;
}
.cz-input {
  width: 100%;
  box-sizing: border-box;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(180,130,255,.35);
  border-radius: 12px;
  color: #e8d5ff;
  font-size: 1.5rem;
  font-family: inherit;
  letter-spacing: 0.08em;
  padding: 16px 48px 16px 20px;
  outline: none;
  transition: border-color .2s;
}
.cz-input::placeholder { color: #6a5a8a; }
.cz-input:focus { border-color: rgba(180,130,255,.7); }

.cz-clear {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  color: #8a7aaa; font-size: 1rem;
  cursor: pointer; display: none;
  align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  transition: color .2s;
}
.cz-clear:hover { color: #e8d5ff; }

/* Result */
.cz-result {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s ease;
}
.cz-result--visible {
  max-height: 300px;
  padding: 20px 0 4px;
}
.cz-result-time {
  font-size: 2.6rem;
  font-weight: 800;
  color: #c4a0ff;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 0 30px rgba(196,160,255,.4);
}
.cz-result-text {
  color: #d0c0e8;
  font-size: 1rem;
  line-height: 1.65;
}

/* Popular chips */
.cz-chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(180,130,255,.1);
}
.cz-chip {
  background: rgba(180,130,255,.08);
  border: 1px solid rgba(180,130,255,.22);
  border-radius: 50px;
  color: #c4a0ff;
  font-size: 0.9rem;
  font-family: inherit;
  letter-spacing: 0.04em;
  padding: 8px 4px;
  cursor: pointer;
  text-align: center;
  transition: background .2s, border-color .2s;
}
.cz-chip:hover {
  background: rgba(180,130,255,.2);
  border-color: rgba(180,130,255,.5);
}


/* Bot CTA */
.cz-bot-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 0 0;
}
.cz-bot-hint {
  color: #8878a8;
  font-size: 0.85rem;
  margin: 0 0 12px;
}
.cz-bot-btn {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: opacity .2s, transform .15s;
  box-shadow: 0 4px 20px rgba(124,58,237,.35);
}
.cz-bot-btn:hover { opacity: .85; transform: translateY(-2px); }
.cz-bot-btn:active { transform: translateY(0); opacity: 1; }

@media (max-width: 480px) {
  .cz-search-block { padding: 18px 16px 16px; }
  .cz-input { font-size: 1.2rem; padding: 14px 44px 14px 16px; }
  .cz-result-time { font-size: 2rem; }
  .cz-bot-btn { width: 100%; }
}
