/* ═══════════ Coming Soon — صفحاتِ به‌زودی ═══════════ */
.cs {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #06060a;
}
.cs__bg,
.cs__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* اسکریمِ ملایمِ پایین تا دکمه/شماره خوانا بماند (بدونِ پوشاندنِ تصویر) */
.cs::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 42%;
  background: linear-gradient(to top, rgba(4, 5, 9, .92), rgba(4, 5, 9, .55) 40%, transparent);
  z-index: 1;
  pointer-events: none;
}
.cs__panel {
  position: absolute;
  z-index: 2;
  inset-inline: 0;
  bottom: clamp(28px, 7vh, 70px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  text-align: center;
}
/* دکمهٔ توخالی با استروکِ طلایی */
.cs__notify {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: 14px;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  color: var(--gold, #ffbe18);
  background: rgba(10, 11, 16, .28);
  border: 2px solid var(--gold, #ffbe18);
  backdrop-filter: blur(3px);
  box-shadow: 0 0 22px rgba(255, 190, 24, .18);
  transition: transform .16s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.cs__notify svg { width: 20px; height: 20px; }
.cs__notify:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #ffe58a, #ffbe18);
  color: #141002;
  box-shadow: 0 16px 38px rgba(255, 179, 0, .4);
}

/* ── مودالِ گرفتنِ شماره ── */
.cs-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(3, 4, 8, .74);
  backdrop-filter: blur(6px);
  animation: csFade .2s ease both;
}
.cs-modal[hidden] { display: none; }
@keyframes csFade { from { opacity: 0; } to { opacity: 1; } }
.cs-modal__box {
  position: relative;
  width: min(430px, 100%);
  padding: 30px 26px 26px;
  text-align: center;
  border-radius: 20px;
  background: linear-gradient(180deg, #14161d, #0b0d13);
  border: 1px solid rgba(255, 190, 24, .45);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .6), inset 0 0 40px rgba(255, 190, 24, .05);
  animation: csPop .25s cubic-bezier(.2, .8, .25, 1) both;
}
@keyframes csPop { from { opacity: 0; transform: translateY(14px) scale(.96); } to { opacity: 1; transform: none; } }
.cs-modal__close {
  position: absolute;
  top: 12px;
  inset-inline-start: 14px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  color: #cfd6e0;
  background: rgba(255, 255, 255, .06);
  transition: color .15s, background .15s;
}
.cs-modal__close:hover { color: #fff; background: rgba(255, 255, 255, .12); }
.cs-modal__ic {
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold, #ffbe18);
  background: rgba(255, 190, 24, .12);
  border: 1px solid rgba(255, 190, 24, .4);
}
.cs-modal__ic svg { width: 28px; height: 28px; }
.cs-modal__title { margin: 0 0 8px; font-size: 21px; font-weight: 800; color: #fff; }
.cs-modal__text { margin: 0 0 18px; font-size: 14px; line-height: 1.9; color: rgba(255, 255, 255, .72); }
.cs-modal__input {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(0, 0, 0, .35);
  color: #fff;
  font-family: inherit;
  font-size: 17px;
  letter-spacing: 1.5px;
  direction: ltr;
  text-align: center;
  outline: none;
}
.cs-modal__input:focus { border-color: var(--gold, #ffbe18); box-shadow: 0 0 0 3px rgba(255, 190, 24, .16); }
.cs-modal__input::placeholder { color: rgba(255, 255, 255, .35); letter-spacing: 0; }
.cs-modal__submit {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  color: #141002;
  background: linear-gradient(180deg, #ffe58a, #ffbe18 55%, #e39a06);
  box-shadow: 0 12px 28px rgba(255, 179, 0, .32);
  transition: transform .15s ease, box-shadow .2s ease;
}
.cs-modal__submit:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(255, 179, 0, .45); }
.cs-modal__submit:disabled { opacity: .6; cursor: default; }
.cs-modal__msg { margin: 12px 0 0; font-size: 13.5px; font-weight: 700; min-height: 18px; }
.cs-modal__msg.ok { color: #6ee7a0; }
.cs-modal__msg.err { color: #ff8a96; }
.cs-modal--done .cs-modal__ic { color: #6ee7a0; background: rgba(110, 231, 160, .12); border-color: rgba(110, 231, 160, .4); }

@media (max-width: 700px) {
  .cs::after { height: 34%; }
}
