/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== GLOBAL ===== */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.04), transparent 60%),
    #111827;
  color: #e5e7eb;
  line-height: 1.7;
}

/* ===== HEADER ===== */
.site-header {
  background: #0b1220;
  padding: 64px 20px;
  text-align: center;
  border-bottom: 1px solid #1f2937;
}

.site-title {
  font-size: 36px;
  color: #f9fafb;
}

.site-subtitle {
  margin-top: 16px;
  color: #9ca3af;
}

.trust {
  margin-top: 24px;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  background: rgba(16,185,129,0.12);
  color: #a7f3d0;
}

/* ===== MAIN ===== */
.main {
  max-width: 900px;
  margin: 64px auto;
  padding: 0 20px;
}

/* ===== CARD ===== */
.card {
  background: #0b1220;
  border: 1px solid #1f2937;
  border-radius: 18px;
  padding: 36px;
  margin-bottom: 48px;
}

.card-tool {
  text-align: center;
}

/* ===== TEXTAREA ===== */
textarea {
  width: 100%;
  min-height: 180px;
  padding: 16px;

  background: rgba(15, 23, 42, 0.55); /* yarim shaffof qora */
  backdrop-filter: blur(8px);

  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;

  color: #e5e7eb;
  font-size: 16px;

  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}


textarea::placeholder {
  color: #6b7280;
}

textarea:focus {
  outline: none;
  border-color: rgba(255,255,255,0.12);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.04),
    0 8px 24px rgba(0,0,0,0.35);
}


/* ===== STATS ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.stats div {
  background: #0f172a;
  border: 1px solid #1f2937;
  border-radius: 14px;
  padding: 14px;
}

.stats span {
  display: block;
  font-size: 13px;
  color: #9ca3af;
}

.stats strong {
  display: block;
  margin-top: 4px;
  font-size: 26px;
  color: #60a5fa;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0b1220;
  border-top: 1px solid #1f2937;
  padding: 60px 20px;
  text-align: center;
  font-size: 14px;
  color: #9ca3af;
}

.site-footer a {
  display: inline-block;
  margin: 6px 12px;
  color: #9ca3af;
  text-decoration: none;
}

.site-footer a:hover {
  color: #e5e7eb;
}

.site-footer hr {
  border: none;
  border-top: 1px solid #1f2937;
  margin-bottom: 26px;
}

.site-footer p {
  margin-top: 18px;
}
