/* =========================================================
   DosyaKutusu — Vanilla CSS
   Açık/koyu tema, tamamen responsive, harici bağımlılık yok
   ========================================================= */

:root {
  --bg:            #f4f6fb;
  --bg-soft:       #eceff8;
  --surface:       #ffffff;
  --surface-2:     #f7f8fc;
  --border:        #e2e6f0;
  --border-strong: #ccd3e4;
  --text:          #101527;
  --text-soft:     #5b6480;
  --text-faint:    #8b93ab;

  --accent:        #4f46e5;
  --accent-2:      #06b6d4;
  --accent-soft:   rgba(79, 70, 229, .10);
  --success:       #0f9d58;
  --success-soft:  rgba(15, 157, 88, .10);
  --warn:          #b45309;
  --warn-soft:     rgba(217, 119, 6, .12);
  --danger:        #dc2626;
  --danger-soft:   rgba(220, 38, 38, .10);

  --radius:        16px;
  --radius-sm:     10px;
  --shadow:        0 1px 2px rgba(16, 24, 40, .04), 0 12px 32px -12px rgba(16, 24, 40, .18);
  --shadow-lg:     0 24px 60px -20px rgba(16, 24, 40, .28);
  --ring:          0 0 0 3px rgba(79, 70, 229, .35);
  --font:          ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono:          ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg:            #080b16;
    --bg-soft:       #0d1120;
    --surface:       #121729;
    --surface-2:     #171d33;
    --border:        #232a42;
    --border-strong: #333c5c;
    --text:          #e7ebf6;
    --text-soft:     #a3abc4;
    --text-faint:    #757e9a;

    --accent:        #7c74ff;
    --accent-2:      #22d3ee;
    --accent-soft:   rgba(124, 116, 255, .14);
    --success:       #34d399;
    --success-soft:  rgba(52, 211, 153, .12);
    --warn:          #fbbf24;
    --warn-soft:     rgba(251, 191, 36, .12);
    --danger:        #f87171;
    --danger-soft:   rgba(248, 113, 113, .12);
    --shadow:        0 1px 2px rgba(0, 0, 0, .4), 0 16px 40px -16px rgba(0, 0, 0, .7);
    --shadow-lg:     0 30px 70px -24px rgba(0, 0, 0, .8);
  }
}

* { box-sizing: border-box; }

/* [hidden] niteligi, display tanimlayan sinif secicilerine karsi da kazanmali. */
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { line-height: 1.2; margin: 0; letter-spacing: -.02em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
em { font-style: normal; background: linear-gradient(90deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

/* ---------- Arka plan efekti ---------- */
.aurora { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.aurora span {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: .45;
}
.aurora span:nth-child(1) { width: 46vmax; height: 46vmax; top: -18vmax; left: -12vmax; background: var(--accent); opacity: .22; }
.aurora span:nth-child(2) { width: 38vmax; height: 38vmax; top: 12vmax; right: -14vmax; background: var(--accent-2); opacity: .18; }
.aurora span:nth-child(3) { width: 32vmax; height: 32vmax; bottom: -14vmax; left: 30vw; background: var(--accent); opacity: .12; }

/* ---------- Header ---------- */
.site-header {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px clamp(16px, 4vw, 40px);
  max-width: 1080px; width: 100%; margin: 0 auto;
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; font-size: 19px; }
.brand__mark {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 11px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; font-size: 18px; font-weight: 700;
  box-shadow: 0 8px 20px -8px var(--accent);
}
.brand__text { letter-spacing: -.02em; }
.brand__text strong { font-weight: 800; }

.badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 13px; border-radius: 999px; font-size: 13px; font-weight: 500;
  background: var(--success-soft); color: var(--success); border: 1px solid transparent;
}
.badge svg { width: 15px; height: 15px; fill: currentColor; }

/* ---------- Layout ---------- */
.shell {
  flex: 1; width: 100%; max-width: 880px; margin: 0 auto;
  padding: 8px clamp(16px, 4vw, 40px) 64px;
  display: flex; flex-direction: column; gap: 22px;
}

.hero { text-align: center; padding: clamp(16px, 5vw, 44px) 0 6px; }
.hero h1 { font-size: clamp(28px, 5.4vw, 44px); font-weight: 800; }
.hero p { margin-top: 14px; color: var(--text-soft); font-size: clamp(15px, 2vw, 17px); max-width: 56ch; margin-inline: auto; }

/* ---------- Dropzone ---------- */
.dropzone {
  position: relative; display: grid; place-items: center; text-align: center;
  padding: clamp(30px, 7vw, 58px) 24px;
  background: var(--surface);
  border: 2px dashed var(--border-strong); border-radius: 22px;
  cursor: pointer; transition: border-color .18s, background .18s, transform .18s, box-shadow .18s;
  box-shadow: var(--shadow);
}
.dropzone:hover { border-color: var(--accent); background: var(--surface-2); }
.dropzone:focus-visible { outline: none; box-shadow: var(--ring), var(--shadow); }
.dropzone.is-dragover {
  border-color: var(--accent); background: var(--accent-soft);
  transform: scale(1.012); box-shadow: var(--shadow-lg);
}
.dropzone.is-dragover .dropzone__icon { transform: translateY(-4px); }
.dropzone__inner { display: grid; justify-items: center; gap: 6px; pointer-events: none; }
.dropzone__icon {
  width: 46px; height: 46px; margin-bottom: 8px; fill: none; stroke: var(--accent);
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; transition: transform .18s;
}
.dropzone__title { font-size: clamp(17px, 2.6vw, 21px); font-weight: 650; }
.dropzone__sub { color: var(--text-soft); font-size: 15px; }
.dropzone__sub .link { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.dropzone__types { margin-top: 10px; font-size: 12.5px; letter-spacing: .06em; color: var(--text-faint); text-transform: uppercase; }

/* ---------- Panel ---------- */
.panel {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow);
  animation: rise .25s ease both;
}
@keyframes rise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .panel { animation: none; } * { transition: none !important; } }

.panel__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.panel__head h2 { font-size: 16px; font-weight: 650; display: inline-flex; align-items: center; gap: 8px; }
.panel__tools { display: flex; gap: 8px; flex-wrap: wrap; }
.panel__foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border); }
.panel--success { border-color: color-mix(in srgb, var(--success) 45%, var(--border)); }

.pill {
  display: inline-flex; align-items: center; justify-content: center; min-width: 24px; height: 24px; padding: 0 8px;
  border-radius: 999px; background: var(--surface-2); border: 1px solid var(--border);
  font-size: 12.5px; font-weight: 600; color: var(--text-soft);
}
.pill--accent { background: var(--accent-soft); color: var(--accent); border-color: transparent; }

.note { font-size: 13.5px; color: var(--text-soft); }
.note--warn {
  margin-top: 12px; padding: 10px 12px; border-radius: var(--radius-sm);
  background: var(--warn-soft); color: var(--warn); border: 1px solid transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 9px 15px; border-radius: 10px; border: 1px solid var(--border);
  background: var(--surface); color: var(--text);
  font-family: inherit; font-size: 14px; font-weight: 550; line-height: 1.3;
  cursor: pointer; transition: background .15s, border-color .15s, transform .1s, opacity .15s;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover:not(:disabled) { background: var(--surface-2); border-color: var(--border-strong); }
.btn:active:not(:disabled) { transform: translateY(1px); }
.btn:focus-visible { outline: none; box-shadow: var(--ring); }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn--ghost { background: transparent; border-color: transparent; color: var(--text-soft); }
.btn--ghost:hover:not(:disabled) { background: var(--surface-2); border-color: var(--border); color: var(--text); }
.btn--danger { color: var(--danger); }
.btn--danger:hover:not(:disabled) { background: var(--danger-soft); border-color: transparent; }
.btn--primary {
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent-2) 55%, var(--accent)));
  color: #fff; border-color: transparent; font-weight: 600;
  box-shadow: 0 10px 24px -12px var(--accent);
}
.btn--primary:hover:not(:disabled) { filter: brightness(1.06); background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent-2) 55%, var(--accent))); }
.btn--lg { padding: 12px 24px; font-size: 15px; border-radius: 12px; }
.btn--icon { padding: 6px; width: 30px; height: 30px; border-radius: 8px; color: var(--text-faint); border-color: transparent; background: transparent; }
.btn--icon:hover:not(:disabled) { background: var(--surface-2); color: var(--text); }
.btn--icon svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Kuyruk ---------- */
.queue { display: flex; flex-direction: column; gap: 8px; }
.queue__item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: var(--radius-sm);
  background: var(--surface-2); border: 1px solid var(--border);
}
.queue__thumb {
  flex: none; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 9px;
  background: var(--accent-soft); color: var(--accent); font-size: 11px; font-weight: 700; letter-spacing: .02em;
  overflow: hidden;
}
.queue__thumb img { width: 100%; height: 100%; object-fit: cover; }
.queue__meta { min-width: 0; flex: 1; }
.queue__name { display: block; font-size: 14.5px; font-weight: 550; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.queue__sub { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 12.5px; color: var(--text-faint); margin-top: 2px; }
.queue__flag { color: var(--warn); font-weight: 600; }
.queue__ctl { display: flex; align-items: center; gap: 2px; flex: none; }

/* ---------- İşlem menüsü ---------- */
.actions { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; }
.action {
  position: relative; display: flex; align-items: center; gap: 11px; text-align: left;
  padding: 14px; border-radius: var(--radius-sm); border: 1px solid var(--border);
  background: var(--surface-2); color: var(--text); cursor: pointer;
  font-family: inherit; font-size: 14.5px; font-weight: 550;
  transition: border-color .15s, background .15s, transform .12s, box-shadow .15s;
}
.action:hover:not(:disabled) { border-color: var(--accent); background: var(--accent-soft); transform: translateY(-2px); box-shadow: var(--shadow); }
.action:focus-visible { outline: none; box-shadow: var(--ring); }
.action:disabled { cursor: not-allowed; opacity: .55; }
.action.is-active { border-color: var(--accent); background: var(--accent-soft); box-shadow: var(--ring); }
.action__icon { flex: none; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; background: var(--surface); font-size: 17px; border: 1px solid var(--border); }
.action__body { min-width: 0; }
.action__hint { display: block; font-size: 12px; font-weight: 450; color: var(--text-faint); margin-top: 1px; }
.action__label { display: block; }
/* Rozet kosede durur; yalnizca baslik satiri ona yer acar, ipucu tam genisligi kullanir. */
.action--soon .action__label { padding-right: 62px; }
.action__soon {
  position: absolute; top: 10px; right: 10px;
  padding: 3px 8px; border-radius: 999px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  background: var(--warn-soft); color: var(--warn);
}

/* ---------- Ayarlar ---------- */
.options { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field > label { font-size: 13px; font-weight: 600; color: var(--text-soft); }
.field select, .field input[type="text"] {
  width: 100%; padding: 9px 11px; border-radius: 10px; border: 1px solid var(--border);
  background: var(--surface); color: var(--text); font-family: inherit; font-size: 14px;
}
.field select:focus-visible, .field input:focus-visible { outline: none; border-color: var(--accent); box-shadow: var(--ring); }
.field__hint { font-size: 12px; color: var(--text-faint); }
.check { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: var(--text-soft); cursor: pointer; }
.check input { margin-top: 3px; accent-color: var(--accent); width: 16px; height: 16px; flex: none; }

.subdrop {
  grid-column: 1 / -1; display: grid; place-items: center; gap: 4px; text-align: center;
  padding: 20px; border: 2px dashed var(--border-strong); border-radius: var(--radius-sm);
  background: var(--surface-2); cursor: pointer; color: var(--text-soft); font-size: 14px;
  transition: border-color .15s, background .15s;
}
.subdrop:hover, .subdrop.is-dragover { border-color: var(--accent); background: var(--accent-soft); color: var(--accent); }
.subdrop strong { color: var(--text); font-weight: 600; }

/* ---------- İlerleme ---------- */
.panel--progress { display: grid; gap: 14px; }
.progress__top { display: flex; align-items: center; gap: 13px; }
.progress__top > div { flex: 1; min-width: 0; }
.progress__title { font-size: 15px; font-weight: 600; }
.progress__label { font-size: 13px; color: var(--text-soft); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.progress__pct { font-family: var(--mono); font-size: 15px; font-weight: 600; color: var(--accent); font-variant-numeric: tabular-nums; }
.progress__track { height: 8px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--border); overflow: hidden; }
.progress__bar { height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); transition: width .25s ease; }
.panel--progress .btn { justify-self: start; }
.spinner {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  border: 2.5px solid var(--accent-soft); border-top-color: var(--accent);
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Sonuçlar ---------- */
.results {
  display: flex; flex-direction: column; gap: 10px;
  max-height: 420px; overflow-y: auto; overscroll-behavior: contain;
}
.results__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  margin-bottom: 12px; padding: 11px 14px; border-radius: var(--radius-sm);
  background: var(--surface-2); border: 1px solid var(--border);
}
.results__count { font-size: 14px; font-weight: 600; }
.result--more {
  justify-content: center; text-align: center; font-size: 13px;
  color: var(--text-soft); background: var(--surface-2);
  border-color: var(--border); border-style: dashed;
}
.result {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px;
  border-radius: var(--radius-sm); border: 1px solid color-mix(in srgb, var(--success) 35%, var(--border));
  background: var(--success-soft);
}
.result__icon { flex: none; display: grid; place-items: center; width: 36px; height: 36px; border-radius: 9px; background: var(--surface); font-size: 17px; }
.result__meta { flex: 1; min-width: 0; }
.result__name { display: block; font-size: 14.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.result__sub { font-size: 12.5px; color: var(--text-soft); }

/* ---------- Özellik kartları ---------- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; margin-top: 12px; }
.feature { padding: 18px; border-radius: var(--radius); border: 1px solid var(--border); background: color-mix(in srgb, var(--surface) 70%, transparent); }
.feature__icon { font-size: 20px; }
.feature h3 { font-size: 15px; font-weight: 650; margin: 8px 0 5px; }
.feature p { font-size: 13.5px; color: var(--text-soft); }

/* ---------- SEO içerik alanı ---------- */
.container { width: 100%; max-width: 880px; margin-inline: auto; }

#seo-content {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}
#seo-content h2 {
  font-size: 19px; font-weight: 650;
  margin: 30px 0 10px;
}
#seo-content h2:first-child { margin-top: 0; }
#seo-content h3 {
  font-size: 15px; font-weight: 600;
  margin: 18px 0 6px; color: var(--text);
}
#seo-content p {
  font-size: 14.5px; line-height: 1.7; color: var(--text-soft);
  margin-bottom: 12px; max-width: 70ch;
}

/* ---------- Bilgi sayfaları (gizlilik, koşullar, iletişim) ---------- */
.legal { padding: 4px 0 44px; }
.legal__back { margin-bottom: 20px; font-size: 14px; }
.legal__back a { color: var(--text-soft); text-decoration: none; transition: color .15s; }
.legal__back a:hover { color: var(--accent); }
.legal h1 { font-size: clamp(26px, 4.4vw, 36px); font-weight: 800; }
.legal__updated { margin-top: 10px; font-size: 13px; color: var(--text-faint); }
.legal h1 + p { margin-top: 16px; }
.legal h2 { font-size: 19px; font-weight: 650; margin: 34px 0 10px; }
.legal h3 { font-size: 15.5px; font-weight: 600; margin: 22px 0 6px; }
.legal p { font-size: 15px; line-height: 1.75; color: var(--text-soft); margin-bottom: 13px; max-width: 70ch; }
.legal ul { margin: 0 0 16px; padding-left: 22px; list-style: disc; max-width: 70ch; }
.legal li { font-size: 15px; line-height: 1.7; color: var(--text-soft); margin-bottom: 8px; }
.legal li::marker { color: var(--text-faint); }
.legal strong { color: var(--text); font-weight: 600; }
.legal a { color: var(--accent); text-underline-offset: 3px; }

.legal__note {
  padding: 15px 17px; border-radius: var(--radius-sm); max-width: 70ch;
  background: var(--accent-soft); border: 1px solid transparent;
  color: var(--text-soft); font-size: 14.5px; line-height: 1.7;
  margin: 22px 0;
}
.legal__note--muted { background: var(--surface-2); border-color: var(--border); font-size: 13.5px; }

/* E-posta karti: tum kart tiklanabilir (mobilde genis dokunma alani). */
.contact-card {
  display: flex; align-items: center; gap: 14px;
  margin: 24px 0; padding: 16px 18px; max-width: 70ch;
  border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--surface); box-shadow: var(--shadow);
  text-decoration: none; color: var(--text);
  transition: border-color .15s, transform .12s, box-shadow .15s, background .15s;
}
.contact-card:hover { border-color: var(--accent); background: var(--surface-2); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.contact-card:focus-visible { outline: none; box-shadow: var(--ring); }
.contact-card__icon {
  flex: none; display: grid; place-items: center; width: 44px; height: 44px;
  border-radius: 12px; background: var(--accent-soft); font-size: 20px;
}
.contact-card__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.contact-card__label {
  font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-faint);
}
.contact-card__value {
  font-size: clamp(15px, 2.4vw, 17px); font-weight: 600; color: var(--text);
  overflow-wrap: anywhere;
}
.contact-card__action { flex: none; font-size: 18px; color: var(--accent); }

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 10px;
  padding: 24px clamp(16px, 4vw, 40px) 34px;
  border-top: 1px solid var(--border);
}
.site-footer__inner {
  max-width: 880px; margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap;
}
.site-footer__nav { display: flex; gap: 20px; flex-wrap: wrap; }
.site-footer__nav a {
  font-size: 13.5px; color: var(--text-soft); text-decoration: none;
  transition: color .15s;
}
.site-footer__nav a:hover { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.site-footer__nav a:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 4px; }
.site-footer__copy { font-size: 13px; color: var(--text-faint); }

/* ---------- Toast ---------- */
.toasts {
  position: fixed; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 60;
  display: flex; flex-direction: column; gap: 8px; width: min(440px, calc(100vw - 32px)); pointer-events: none;
}
.toast {
  display: flex; align-items: flex-start; gap: 10px; padding: 12px 14px;
  border-radius: 12px; border: 1px solid var(--border); background: var(--surface);
  box-shadow: var(--shadow-lg); font-size: 14px; pointer-events: auto; white-space: pre-line;
  animation: toast-in .2s ease both;
}
.toast.is-out { animation: toast-out .18s ease both; }
.toast__icon { flex: none; font-size: 16px; line-height: 1.4; }
.toast--error { border-color: color-mix(in srgb, var(--danger) 45%, var(--border)); }
.toast--warn  { border-color: color-mix(in srgb, var(--warn) 45%, var(--border)); }
.toast--success { border-color: color-mix(in srgb, var(--success) 45%, var(--border)); }
@keyframes toast-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes toast-out { to { opacity: 0; transform: translateY(6px); } }

/* ---------- Dialog ---------- */
dialog.modal {
  width: min(460px, calc(100vw - 32px)); padding: 0; border: 1px solid var(--border);
  border-radius: var(--radius); background: var(--surface); color: var(--text);
  box-shadow: var(--shadow-lg);
}
dialog.modal::backdrop { background: rgba(8, 11, 22, .55); backdrop-filter: blur(3px); }
.modal__body { padding: 22px 22px 6px; display: flex; gap: 14px; }
.modal__icon { flex: none; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px; font-size: 20px; background: var(--warn-soft); }
.modal--danger .modal__icon { background: var(--danger-soft); }
.modal__title { font-size: 16.5px; font-weight: 650; margin-bottom: 6px; }
.modal__text { font-size: 14px; color: var(--text-soft); white-space: pre-line; }
.modal__foot { display: flex; justify-content: flex-end; gap: 8px; padding: 18px 22px 20px; }

.noscript { position: fixed; inset: auto 0 0; padding: 14px; text-align: center; background: var(--danger); color: #fff; font-size: 14px; }

body.is-busy .dropzone { pointer-events: none; opacity: .6; }

@media (max-width: 560px) {
  .site-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .site-footer__inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .site-footer__nav { gap: 14px 18px; }
  .panel__foot { flex-direction: column; align-items: stretch; }
  .panel__foot .btn { width: 100%; }
  .queue__sub { font-size: 12px; }
}
