:root {
  --bg0: #0d1117;
  --bg1: #010409;
  --glass: rgba(22, 27, 34, 0.65);
  --glass-border: rgba(240, 246, 252, 0.12);
  --text: #e6edf3;
  --muted: #8b949e;
  /* رنگ سازمانی چابکان */
  --accent: #f16334;
  --accent-deep: #c73e1a;
  --accent-hover: #ff8f72;
  --accent-dim: rgba(241, 99, 52, 0.35);
  --danger: #f85149;
  --radius: 12px;
  --font: "Vazirmatn", system-ui, -apple-system, "Segoe UI", sans-serif;
  --surface: rgba(13, 17, 23, 0.72);
  --line: rgba(240, 246, 252, 0.1);
  --accent-soft: rgba(241, 99, 52, 0.14);
}

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

html {
  direction: rtl;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  max-width: 100%;
  overflow-x: hidden;
  font-family: var(--font);
  color: var(--text);
  background: radial-gradient(1200px 800px at 20% -10%, #1f2937 0%, transparent 55%),
    radial-gradient(900px 600px at 100% 0%, rgba(241, 99, 52, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg1) 0%, var(--bg0) 40%, #0b1220 100%);
}

.site-body--home {
  position: relative;
}

.site-body--home::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 85% 55% at 90% -5%, rgba(241, 99, 52, 0.2), transparent 52%),
    radial-gradient(ellipse 65% 45% at 5% 25%, rgba(199, 62, 26, 0.12), transparent 48%),
    radial-gradient(ellipse 50% 35% at 70% 85%, rgba(241, 99, 52, 0.06), transparent 50%);
  animation: home-ambient-shift 28s ease-in-out infinite alternate;
}

.site-body--home .site-header {
  z-index: 50;
}

.site-body--home .site-main {
  position: relative;
  z-index: 1;
}

.site-body--home .site-footer {
  position: relative;
  z-index: 1;
}

@keyframes home-ambient-shift {
  0% {
    opacity: 0.88;
    transform: scale(1) translate(0, 0);
  }
  100% {
    opacity: 1;
    transform: scale(1.04) translate(-1.5%, 1%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-body--home::before {
    animation: none;
    opacity: 0.95;
  }
}

/* متن لاتین، دامنه، تاریخ میلادی، رکورد DNS — جهت چپ‌به‌راست برای خوانایی */
.ltr-block {
  direction: ltr;
  unicode-bidi: isolate;
  text-align: left;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.shell {
  max-width: 880px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.brand h1 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand .sub {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.chabokan-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  color: var(--muted);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}

.glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.search-panel {
  padding: 1.25rem 1.25rem 1.1rem;
  margin-bottom: 1.25rem;
}

.search-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 560px) {
  .search-form {
    flex-direction: row;
    align-items: stretch;
  }
}

.search-form input[type="text"] {
  flex: 1;
  min-width: 0;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  background: rgba(1, 4, 9, 0.45);
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
}

.search-form input[type="text"]:focus {
  border-color: var(--accent-dim);
  box-shadow: 0 0 0 3px rgba(241, 99, 52, 0.15);
}

.search-form button {
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  border: 1px solid rgba(241, 99, 52, 0.45);
  background: linear-gradient(180deg, rgba(241, 99, 52, 0.22), rgba(241, 99, 52, 0.08));
  color: var(--text);
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
}

.search-form button:hover {
  border-color: rgba(241, 99, 52, 0.65);
}

.search-form button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.hint {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.result-panel {
  padding: 1.25rem;
  min-height: 120px;
}

.result-panel.empty .placeholder {
  display: block;
}

.placeholder {
  display: none;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.status {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  color: var(--muted);
}

.status.error {
  color: #ffa657;
}

.raw-block {
  margin: 0;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(1, 4, 9, 0.55);
  border: 1px solid var(--glass-border);
  overflow-x: auto;
  font-size: 0.8rem;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
}

.kv-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.kv-table th,
.kv-table td {
  text-align: right;
  padding: 0.45rem 0.5rem;
  vertical-align: top;
  border-bottom: 1px solid rgba(240, 246, 252, 0.06);
}

.kv-table th {
  width: 28%;
  color: var(--muted);
  font-weight: 500;
}

.attempts {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(240, 246, 252, 0.08);
}

.attempts summary {
  cursor: pointer;
  color: var(--muted);
  font-size: 0.85rem;
  user-select: none;
}

.attempt-block {
  margin-top: 0.75rem;
  padding: 0.75rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(240, 246, 252, 0.06);
}

.attempt-head {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

footer {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}

.loader {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: -2px;
  margin-left: 0.35rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ——— چیدمان سایت (هدر / فوتر / صفحات داخلی) ——— */

.site-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
}

.site-header__bar {
  border-bottom: 1px solid rgba(240, 246, 252, 0.08);
  background: linear-gradient(180deg, rgba(22, 27, 34, 0.92) 0%, rgba(13, 17, 23, 0.88) 100%);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 8px 32px rgba(0, 0, 0, 0.35);
}

.site-header__bar::after {
  content: "";
  display: block;
  height: 1px;
  margin: 0 auto;
  max-width: min(960px, 100% - 2.5rem);
  background: linear-gradient(90deg, transparent, rgba(241, 99, 52, 0.28), transparent);
  opacity: 0.9;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  flex-wrap: wrap;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text);
  text-decoration: none;
  min-width: 0;
}

.site-brand:hover {
  text-decoration: none;
}

.site-brand:hover .site-brand__text {
  color: var(--accent);
}

.site-brand__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(241, 99, 52, 0.12), rgba(1, 4, 9, 0.5));
  border: 1px solid rgba(240, 246, 252, 0.1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.site-brand__logo {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: contain;
}

.site-brand__cluster {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  text-align: right;
}

.site-brand__text {
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
  transition: color 0.15s ease;
}

.site-brand__tag {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  border: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.site-nav__link:hover {
  color: var(--text);
  border-color: rgba(240, 246, 252, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.site-nav__link--cta {
  color: var(--accent);
  border-color: rgba(241, 99, 52, 0.35);
  background: rgba(241, 99, 52, 0.08);
}

.site-nav__link--cta:hover {
  color: var(--accent-hover);
  border-color: rgba(241, 99, 52, 0.5);
  background: rgba(241, 99, 52, 0.14);
}

.site-header__search {
  flex: 1 1 200px;
  max-width: min(420px, 100%);
  min-width: 0;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.35rem 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(240, 246, 252, 0.14);
  background: rgba(1, 4, 9, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.header-search:focus-within {
  border-color: rgba(241, 99, 52, 0.45);
  box-shadow: 0 0 0 1px rgba(241, 99, 52, 0.1);
}

.header-search__icon {
  display: flex;
  flex-shrink: 0;
  color: var(--muted);
  opacity: 0.88;
}

.header-search__input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 0.88rem;
  padding: 0.45rem 0.2rem;
  outline: none;
}

.header-search__input::placeholder {
  color: rgba(139, 148, 158, 0.65);
}

.header-search__submit {
  flex-shrink: 0;
  padding: 0.38rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(241, 99, 52, 0.5);
  background: linear-gradient(180deg, rgba(241, 99, 52, 0.24), rgba(241, 99, 52, 0.08));
  color: var(--text);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
}

.header-search__submit:hover:not(:disabled) {
  border-color: rgba(241, 99, 52, 0.75);
}

@media (max-width: 720px) {
  .site-header__search {
    order: 3;
    flex: 1 1 100%;
    max-width: none;
  }

  .site-nav {
    order: 2;
    margin-inline-start: auto;
  }
}

.site-main {
  flex: 1;
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
  max-width: 960px;
}

.site-footer {
  margin-top: auto;
  padding: 0;
  border-top: 1px solid rgba(240, 246, 252, 0.07);
  background: linear-gradient(180deg, rgba(1, 4, 9, 0.2) 0%, rgba(1, 4, 9, 0.75) 100%);
}

.site-footer__inner {
  padding: 2rem 1.25rem 1.35rem;
  max-width: 960px;
}

.site-footer__primary {
  display: grid;
  gap: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(240, 246, 252, 0.06);
}

@media (min-width: 720px) {
  .site-footer__primary {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    align-items: start;
    gap: 2rem;
  }
}

.site-footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.site-footer__mark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(240, 246, 252, 0.08);
}

.site-footer__logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: contain;
  opacity: 0.98;
}

.site-footer__intro {
  min-width: 0;
}

.site-footer__title {
  display: block;
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.site-footer__lead {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 28rem;
}

.site-footer__nav {
  padding-top: 0.15rem;
}

.site-footer__nav-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.65rem;
  opacity: 0.9;
}

.site-footer__nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.site-footer__nav-list a {
  font-size: 0.86rem;
  color: var(--text);
  text-decoration: none;
  padding: 0.2rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.site-footer__nav-list a:hover {
  color: var(--accent);
  border-bottom-color: rgba(241, 99, 52, 0.35);
}

.site-footer__legal {
  margin: 0;
  padding-top: 1.15rem;
  padding-bottom: 1.15rem;
}

.site-footer__legal p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.65;
  color: var(--muted);
  opacity: 0.92;
}

.shell {
  max-width: 960px;
}

/* Hero / خانه */
.hero {
  padding: 1.75rem 1.5rem;
  margin-bottom: 1.5rem;
}

.eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 600;
}

.hero-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 700;
}

.hero-lead {
  margin: 0 0 1.25rem;
  line-height: 1.75;
  max-width: 42rem;
}

.inline-code {
  direction: ltr;
  unicode-bidi: isolate;
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  background: rgba(241, 99, 52, 0.12);
  border: 1px solid var(--glass-border);
  font-size: 0.85em;
}

.hero-search.search-form {
  margin-bottom: 0.75rem;
}

.btn-primary {
  padding: 0.75rem 1.35rem;
  border-radius: 8px;
  border: 1px solid rgba(241, 99, 52, 0.5);
  background: linear-gradient(180deg, rgba(241, 99, 52, 0.28), rgba(241, 99, 52, 0.1));
  color: var(--text);
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
}

.btn-primary:hover:not(:disabled) {
  border-color: rgba(241, 99, 52, 0.75);
}

.btn-secondary {
  padding: 0.55rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: inherit;
  cursor: pointer;
  font-size: 0.9rem;
}

.feature-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature {
  padding: 1.1rem 1.25rem;
}

.feature h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
}

.feature p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.6;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 0.8rem;
}

/* صفحهٔ دامنه */
.page-head {
  padding: 1.25rem 1.35rem;
  margin-bottom: 1.25rem;
}

.page-head__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.report-page {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.site-body--report .site-main.shell {
  padding-top: 1.25rem;
}

.page-head--report {
  position: relative;
  padding: 0;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(241, 99, 52, 0.12);
  background: linear-gradient(165deg, rgba(22, 27, 34, 0.88) 0%, rgba(13, 17, 23, 0.95) 100%);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.page-head__accent {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--accent-deep) 40%, rgba(241, 99, 52, 0.25));
  border-radius: 4px 0 0 4px;
  opacity: 0.95;
}

.page-head__inner {
  position: relative;
  padding: 1.35rem 1.45rem 1.4rem 1.55rem;
}

.eyebrow--report {
  margin-bottom: 0.45rem;
  letter-spacing: 0.1em;
}

.page-title--report {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.domain-code--report {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(241, 99, 52, 0.14), rgba(241, 99, 52, 0.06));
  border: 1px solid rgba(241, 99, 52, 0.22);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.page-meta-row--report {
  margin-top: 0.85rem;
  align-items: flex-end;
}

.btn-ghost--refresh {
  font-weight: 500;
  border-color: rgba(240, 246, 252, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost--refresh:hover {
  color: var(--accent);
  border-color: rgba(241, 99, 52, 0.35);
  background: rgba(241, 99, 52, 0.06);
}

.btn-ghost__icon {
  display: inline-block;
  transition: transform 0.2s ease;
}

.btn-ghost--refresh:hover .btn-ghost__icon {
  transform: rotate(-45deg);
}

.page-title {
  margin: 0.25rem 0 0.35rem;
  font-size: clamp(1.2rem, 3vw, 1.65rem);
}

.domain-code {
  font-size: 1.1em;
  padding: 0.1rem 0.4rem;
  border-radius: 6px;
  background: rgba(241, 99, 52, 0.1);
}

.page-meta {
  margin: 0;
  font-size: 0.85rem;
}

.link-quiet {
  color: var(--muted);
}

.link-quiet:hover {
  color: var(--accent);
}

.mini-search {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.mini-search input {
  min-width: 12rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  background: rgba(1, 4, 9, 0.45);
  color: var(--text);
  font-family: inherit;
}

.section {
  padding: 1.35rem 1.35rem;
  margin-bottom: 1.15rem;
}

.section-title {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid rgba(240, 246, 252, 0.08);
  padding-bottom: 0.5rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

.info-card {
  padding: 0.85rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(240, 246, 252, 0.08);
  background: rgba(1, 4, 9, 0.35);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.info-card.span-2 {
  grid-column: span 2;
}

@media (max-width: 560px) {
  .info-card.span-2 {
    grid-column: span 1;
  }
}

.info-card .label {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}

.info-card .value {
  font-size: 0.9rem;
  word-break: break-word;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.82rem;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.badge {
  font-size: 0.72rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(241, 99, 52, 0.12);
  border: 1px solid rgba(241, 99, 52, 0.25);
}

.ns-list {
  margin: 0;
  padding-right: 1.1rem;
  font-size: 0.85rem;
}

.ns-list li {
  margin: 0.2rem 0;
}

.kv-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.warn {
  color: #ffa657;
}

.ok {
  color: #3fb950;
}

.dns-blocks {
  display: grid;
  gap: 1rem;
}

@media (min-width: 600px) {
  .dns-blocks {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

.dns-type {
  margin: 0 0 0.4rem;
  font-size: 0.8rem;
  color: var(--accent);
}

.dns-list {
  margin: 0;
  padding-right: 1rem;
  font-size: 0.82rem;
}

.table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.data-table th,
.data-table td {
  padding: 0.5rem 0.65rem;
  text-align: right;
  border-bottom: 1px solid rgba(240, 246, 252, 0.06);
}

.data-table thead {
  background: rgba(1, 4, 9, 0.5);
}

.raw-details {
  margin-top: 0.75rem;
}

.raw-details summary {
  cursor: pointer;
  color: var(--muted);
  font-size: 0.9rem;
}

.raw-block.small {
  font-size: 0.72rem;
  max-height: 22rem;
}

/* ——— به‌روزرسانی UI + تاریخ دوگانه ——— */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* صفحهٔ اصلی — پس‌زمینهٔ متحرک و هیرو */
.home-page {
  position: relative;
  padding-bottom: 0.25rem;
  overflow-x: hidden;
  max-width: 100%;
}

.home-page__glow {
  position: absolute;
  inset: -2rem 0 0 0;
  max-height: min(560px, 85vh);
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.home-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.42;
  animation: home-glow-drift 26s ease-in-out infinite;
}

.home-glow--a {
  width: min(340px, 70vw);
  height: min(340px, 70vw);
  background: radial-gradient(circle, rgba(241, 99, 52, 0.65) 0%, transparent 68%);
  top: -6rem;
  right: max(-8%, -2rem);
  animation-delay: 0s;
}

.home-glow--b {
  width: min(280px, 55vw);
  height: min(280px, 55vw);
  background: radial-gradient(circle, rgba(199, 62, 26, 0.45) 0%, transparent 70%);
  bottom: 10%;
  left: max(-8%, -2rem);
  animation-delay: -8s;
  animation-duration: 32s;
}

.home-glow--c {
  width: min(200px, 40vw);
  height: min(200px, 40vw);
  background: radial-gradient(circle, rgba(255, 143, 114, 0.35) 0%, transparent 72%);
  top: 35%;
  left: 40%;
  animation-delay: -14s;
  animation-duration: 22s;
  opacity: 0.28;
}

@keyframes home-glow-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(-6%, 8%) scale(1.06);
  }
  66% {
    transform: translate(5%, -5%) scale(0.94);
  }
}

.hero--home {
  position: relative;
  z-index: 1;
  padding: 2.15rem 1.85rem 2.25rem;
  border: 1px solid rgba(241, 99, 52, 0.14);
  background: linear-gradient(
    165deg,
    rgba(241, 99, 52, 0.1) 0%,
    rgba(22, 27, 34, 0.75) 38%,
    rgba(13, 17, 23, 0.92) 100%
  );
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-eyebrow {
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.hero-title--home {
  font-size: clamp(1.5rem, 4.5vw, 2.05rem);
  line-height: 1.28;
  letter-spacing: -0.035em;
  max-width: 22ch;
}

.hero-lead--home {
  margin: 0 0 1rem;
  font-size: clamp(0.92rem, 2vw, 1.02rem);
  line-height: 1.85;
  color: rgba(230, 237, 243, 0.92);
  max-width: 38rem;
}

.hero-lead--home strong {
  color: var(--accent-hover);
  font-weight: 600;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent-hover);
  border: 1px solid rgba(241, 99, 52, 0.35);
  background: rgba(241, 99, 52, 0.1);
}

.hero-hint {
  margin: 0 0 1.15rem;
  font-size: 0.84rem;
}

.hero-search--home.search-form {
  margin-bottom: 0;
}

.hero-search--home input[type="text"] {
  padding: 0.85rem 1.05rem;
  font-size: 1.02rem;
  border-radius: 10px;
  border-color: rgba(241, 99, 52, 0.2);
  background: rgba(1, 4, 9, 0.55);
}

.btn-primary--hero {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(241, 99, 52, 0.2);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary--hero:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(241, 99, 52, 0.28);
}

.home-features {
  position: relative;
  z-index: 1;
  margin-top: 1.35rem;
}

.feature--home {
  position: relative;
  padding: 1.35rem 1.35rem 1.4rem;
  border: 1px solid rgba(240, 246, 252, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.feature--home:hover {
  border-color: rgba(241, 99, 52, 0.22);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

.feature__icon {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.75rem;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(241, 99, 52, 0.28), rgba(241, 99, 52, 0.06));
  border: 1px solid rgba(241, 99, 52, 0.25);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.feature__icon--b {
  background: linear-gradient(145deg, rgba(199, 62, 26, 0.35), rgba(241, 99, 52, 0.08));
}

.feature__icon--c {
  background: linear-gradient(145deg, rgba(255, 143, 114, 0.22), rgba(241, 99, 52, 0.08));
}

.feature--home h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.feature--home .muted {
  line-height: 1.65;
}

@media (prefers-reduced-motion: reduce) {
  .home-glow {
    animation: none !important;
  }

  .feature--home:hover {
    transform: none;
  }

  .btn-primary--hero:hover:not(:disabled) {
    transform: none;
  }
}

/* موبایل: بدون اسکرول افقی + سبک‌سازی GPU (backdrop-filter / بلور سنگین) */
@media (max-width: 719px) {
  .site-body--home::before {
    animation: none;
    opacity: 0.92;
    transform: none;
  }

  .site-header__bar {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero--home {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
    padding: 1.65rem 1.1rem 1.85rem;
  }

  .site-body--home .feature--home.glass {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .home-glow {
    animation: none;
    opacity: 0.2;
    filter: blur(36px);
  }

  .feature--home:hover {
    transform: none;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  }

  .btn-primary--hero {
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
  }

  .btn-primary--hero:hover:not(:disabled) {
    transform: none;
  }
}

.feature h3 {
  color: var(--text);
  font-weight: 600;
}

.section-head {
  margin-bottom: 1.15rem;
}

.section-desc {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
  max-width: 40rem;
}

.section--ssl .card-grid--tight {
  margin-bottom: 1rem;
}

.page-head__main {
  flex: 1;
  min-width: 0;
}

.page-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.65rem;
}

.page-meta-dates {
  flex: 1;
  min-width: 200px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.85rem;
  text-decoration: none;
}

.btn-ghost:hover {
  color: var(--accent);
  border-color: rgba(241, 99, 52, 0.35);
  text-decoration: none;
}

.domain-code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* تاریخ میلادی + شمسی */
.date-dual {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  align-items: stretch;
}

.date-dual__item {
  flex: 1;
  min-width: 140px;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(1, 4, 9, 0.45);
}

.date-dual__item--jalali {
  border-color: rgba(241, 99, 52, 0.22);
  background: var(--accent-soft);
  text-align: left;
  unicode-bidi: isolate;
  direction: ltr;
}

.date-dual__cap {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.3rem;
  text-align: right;
  direction: rtl;
}

.date-dual__tz-hint {
  font-size: 0.92em;
  font-weight: normal;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.9;
}

.date-dual__val {
  display: block;
  line-height: 1.45;
}

.date-dual__val--mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.82rem;
  color: var(--text);
}

.date-dual__val--fa {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.date-events {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0;
}

@media (min-width: 640px) {
  .date-events {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
}

.date-event-card {
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(1, 4, 9, 0.35);
}

.date-event-card__title {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

.ssl-dates {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0;
}

@media (min-width: 560px) {
  .ssl-dates {
    grid-template-columns: 1fr 1fr;
  }
}

.card-grid--tight {
  gap: 0.5rem;
}

.info-card--wide {
  grid-column: span 2;
}

@media (max-width: 560px) {
  .info-card--wide {
    grid-column: span 1;
  }
}

.info-card--full {
  grid-column: 1 / -1;
}

.info-card--date .label {
  margin-bottom: 0.5rem;
}

.ok-msg {
  color: #3fb950;
  font-size: 0.92rem;
  margin: 0 0 0.75rem;
}

.table-dates {
  vertical-align: top;
  min-width: 11rem;
}

.table-dates .date-dual {
  flex-direction: column;
  gap: 0.4rem;
}

.table-dates .date-dual__item {
  min-width: 0;
  padding: 0.35rem 0.5rem;
}

.table-dates .date-dual__cap {
  font-size: 0.6rem;
}

.table-dates .date-dual__val--mono {
  font-size: 0.68rem;
}

.table-dates .date-dual__val--fa {
  font-size: 0.75rem;
}

.section--raw .section-title {
  margin-bottom: 0.25rem;
}

/* ——— خلاصهٔ WHOIS و DNS ——— */

.section-head--spacious {
  margin-bottom: 1.35rem;
}

.section-head--report {
  margin-bottom: 1.1rem;
}

.section-title--report {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-bottom: none !important;
  padding-bottom: 0 !important;
  margin-bottom: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-title__mark {
  flex-shrink: 0;
  width: 4px;
  height: 1.15em;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--accent), rgba(241, 99, 52, 0.35));
  box-shadow: 0 0 12px rgba(241, 99, 52, 0.25);
}

.section-title--lg.section-title--report {
  font-size: 1.22rem;
  padding-bottom: 0 !important;
}

.section-head .section-title--report {
  margin-bottom: 0;
}

.report-section {
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(240, 246, 252, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
}

.report-section--raw {
  margin-top: 0.25rem;
}

.section-title--lg {
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  padding-bottom: 0.55rem;
}

.section--whois,
.section--dns {
  padding: 1.5rem 1.5rem 1.65rem;
}

/* خلاصهٔ WHOIS — یک ستون، فاصلهٔ ثابت، بدون باکس تودرتو */

.whois-summary {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.whois-summary__source {
  margin: 0 0 1.1rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--muted);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.whois-summary__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  border: 1px solid rgba(241, 99, 52, 0.35);
  background: rgba(241, 99, 52, 0.08);
}

.whois-summary__identity {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

@media (min-width: 560px) {
  .whois-summary__identity {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.whois-id-card {
  padding: 0.95rem 1.05rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(1, 4, 9, 0.5);
}

.whois-id-card__label {
  margin: 0 0 0.4rem;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--muted);
}

.whois-id-card__value {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  word-break: break-word;
  color: var(--text);
}

.whois-id-card__value--mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92rem;
  font-weight: 500;
}

.whois-summary__section {
  padding-top: 1.1rem;
  margin-top: 1.1rem;
  border-top: 1px solid rgba(240, 246, 252, 0.08);
}

.whois-summary__h {
  margin: 0 0 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.whois-date-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 520px) {
  .whois-date-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 880px) {
  .whois-date-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}

.whois-date-card {
  padding: 0.8rem 0.95rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(1, 4, 9, 0.42);
}

.whois-date-card__title {
  margin: 0 0 0.55rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

.whois-status-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.whois-status-chip {
  display: inline-block;
  padding: 0.32rem 0.72rem;
  border-radius: 8px;
  font-size: 0.76rem;
  line-height: 1.4;
  background: rgba(241, 99, 52, 0.07);
  border: 1px solid rgba(241, 99, 52, 0.2);
  color: var(--text);
}

.whois-ns-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.whois-ns-list li {
  margin: 0;
}

.whois-ns-list code {
  display: block;
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
  font-size: 0.8rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(240, 246, 252, 0.08);
}

.whois-abuse-dl {
  margin: 0;
}

.whois-abuse-row {
  display: grid;
  grid-template-columns: minmax(5.5rem, 8.5rem) minmax(0, 1fr);
  gap: 0.5rem 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(240, 246, 252, 0.06);
  align-items: baseline;
}

.whois-abuse-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.whois-abuse-row dt {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
}

.whois-abuse-row dd {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
  word-break: break-word;
}

@media (max-width: 480px) {
  .whois-abuse-row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}

.whois-text-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.whois-field-card {
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(1, 4, 9, 0.4);
}

.whois-field-card--dates {
  grid-column: span 1;
}

@media (min-width: 640px) {
  .whois-field-card--dates {
    grid-column: span 2;
  }
}

.whois-field-card__label {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.whois-field-card__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  word-break: break-word;
}

.whois-empty-hint {
  margin: 0.5rem 0 0;
  line-height: 1.6;
}

/* DNS عمومی — کارت به ازای نوع رکورد */

.dns-type-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .dns-type-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .dns-type-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.dns-rtype-card {
  --rtype-accent: var(--muted);
  display: flex;
  flex-direction: column;
  min-height: 7.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(1, 4, 9, 0.42);
  overflow: hidden;
  border-inline-start: 4px solid var(--rtype-accent);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}

.dns-rtype-card--a {
  --rtype-accent: #3fb950;
}

.dns-rtype-card--aaaa {
  --rtype-accent: #56d364;
}

.dns-rtype-card--ns {
  --rtype-accent: var(--accent);
}

.dns-rtype-card--mx {
  --rtype-accent: #a371f7;
}

.dns-rtype-card--txt {
  --rtype-accent: #ffa657;
}

.dns-rtype-card--cname {
  --rtype-accent: var(--accent-hover);
}

.dns-rtype-card--soa {
  --rtype-accent: #8b949e;
}

.dns-rtype-card--ptr {
  --rtype-accent: #f778ba;
}

.dns-rtype-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  background: rgba(0, 0, 0, 0.22);
  border-bottom: 1px solid rgba(240, 246, 252, 0.06);
}

.dns-rtype-badge {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
}

.dns-rtype-meta {
  font-size: 0.72rem;
  color: var(--muted);
  white-space: nowrap;
}

.dns-rtype-meta--warn {
  color: #ffa657;
}

.dns-rtype-card__body {
  flex: 1;
  padding: 0.75rem 0.85rem 0.9rem;
}

.dns-rtype-err {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
}

.dns-rtype-empty {
  margin: 0;
  font-size: 0.85rem;
}

.dns-value-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.dns-value-list li {
  margin: 0;
}

.dns-value-line {
  display: block;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(240, 246, 252, 0.06);
}

.dns-value-line code {
  font-size: 0.78rem;
  line-height: 1.45;
  word-break: break-all;
  white-space: pre-wrap;
  color: var(--text);
}

/* لودینگ ناوبری به گزارش دامنه */

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.page-loader[hidden] {
  display: none;
}

body.page-loader--open {
  overflow: hidden;
}

.page-loader__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 4, 9, 0.78);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
}

.page-loader__card {
  position: relative;
  z-index: 1;
  width: min(100%, 22rem);
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--glass-border);
  background: linear-gradient(165deg, rgba(22, 27, 34, 0.92) 0%, rgba(13, 17, 23, 0.96) 100%);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(241, 99, 52, 0.08);
  text-align: center;
}

.page-loader__visual {
  position: relative;
  width: 7.5rem;
  height: 7.5rem;
  margin: 0 auto 1.1rem;
}

.page-loader__orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(241, 99, 52, 0.28);
  animation: page-loader-orbit 10s linear infinite;
}

.page-loader__arm {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.65rem;
  height: 1.65rem;
  margin: -0.825rem;
}

.page-loader__arm--1 {
  transform: rotate(0deg) translateY(-3.35rem);
}

.page-loader__arm--2 {
  transform: rotate(90deg) translateY(-3.35rem);
}

.page-loader__arm--3 {
  transform: rotate(180deg) translateY(-3.35rem);
}

.page-loader__arm--4 {
  transform: rotate(270deg) translateY(-3.35rem);
}

.page-loader__node {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--accent);
  background: rgba(241, 99, 52, 0.12);
  border: 1px solid rgba(241, 99, 52, 0.35);
  box-shadow: 0 0 20px rgba(241, 99, 52, 0.15);
  animation: page-loader-orbit 10s linear infinite reverse;
}

.page-loader__pulse {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2.5rem;
  height: 2.5rem;
  margin: -1.25rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 99, 52, 0.35) 0%, transparent 70%);
  animation: page-loader-pulse 2.2s ease-in-out infinite;
}

.page-loader__pulse::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(241, 99, 52, 0.45);
  animation: page-loader-ring 2.2s ease-out infinite;
}

@keyframes page-loader-orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes page-loader-pulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes page-loader-ring {
  0% {
    transform: scale(0.85);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

.page-loader__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.page-loader__domain {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  word-break: break-all;
  text-align: center;
}

.page-loader__steps {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.page-loader__steps span {
  color: rgba(139, 148, 158, 0.95);
}

.page-loader__error {
  margin: 0 0 0.85rem;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  font-size: 0.82rem;
  line-height: 1.55;
  text-align: right;
  color: #ffb1ad;
  background: rgba(248, 81, 73, 0.12);
  border: 1px solid rgba(248, 81, 73, 0.28);
}

.page-loader__dismiss {
  width: 100%;
  max-width: 12rem;
  margin-inline: auto;
}

@media (prefers-reduced-motion: reduce) {
  .page-loader__orbit,
  .page-loader__node,
  .page-loader__pulse,
  .page-loader__pulse::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* اسکلت بارگذاری ناهمزمان SSL / DNS */

.network-section-skeleton[aria-busy="true"] {
  pointer-events: none;
}

.network-skeleton-hint {
  margin: 0.75rem 0 0;
  text-align: center;
}

.network-skeleton-grid {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.25rem 0;
}

.network-skeleton-line {
  height: 0.65rem;
  border-radius: 6px;
  background: linear-gradient(
    90deg,
    rgba(240, 246, 252, 0.06) 0%,
    rgba(241, 99, 52, 0.12) 50%,
    rgba(240, 246, 252, 0.06) 100%
  );
  background-size: 200% 100%;
  animation: network-skeleton-shimmer 1.35s ease-in-out infinite;
}

.network-skeleton-line--lg {
  width: 88%;
}

.network-skeleton-line--md {
  width: 62%;
}

.network-skeleton-line--sm {
  width: 42%;
}

.network-skeleton-dns {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
}

.network-skeleton-card {
  min-height: 4.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(240, 246, 252, 0.08);
  background: linear-gradient(
    90deg,
    rgba(240, 246, 252, 0.04) 0%,
    rgba(241, 99, 52, 0.08) 50%,
    rgba(240, 246, 252, 0.04) 100%
  );
  background-size: 200% 100%;
  animation: network-skeleton-shimmer 1.35s ease-in-out infinite;
}

@keyframes network-skeleton-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .network-skeleton-line,
  .network-skeleton-card {
    animation: none;
    opacity: 0.65;
  }
}
