:root {
  --bg: #f7f7fb;
  --panel: rgba(20,20,45,0.035);
  --border: rgba(20,20,40,0.10);
  --text: #16161f;
  --text-dim: #64667a;
  --violet: #8b5cf6;
  --cyan: #22d3ee;
  --pink: #ec4899;
}

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

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  background: var(--bg);
  font-family: 'Inter', sans-serif;
  color: var(--text);
  position: relative;
  overflow-x: hidden;
  transition: background-color 0.25s ease, color 0.25s ease;
}

a { color: inherit; text-decoration: none; }

/* Ambient glow blobs in background */
.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.16;
  z-index: 0;
  pointer-events: none;
}
.glow.one { width: 380px; height: 380px; background: var(--violet); top: -120px; left: -100px; animation: float1 12s ease-in-out infinite; }
.glow.two { width: 320px; height: 320px; background: var(--cyan); bottom: -100px; right: -80px; animation: float2 14s ease-in-out infinite; }
.glow.three { width: 260px; height: 260px; background: var(--pink); top: 40%; right: 10%; opacity: 0.09; animation: float1 16s ease-in-out infinite reverse; }

@keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(40px, 30px); } }
@keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-30px, -40px); } }

/* ---------- Site header / nav ---------- */
.site-header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 24px 0;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 46px; height: 46px; object-fit: contain; display: block; }
.brand span {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 23px;
  letter-spacing: -0.3px;
  background: linear-gradient(120deg, #16161f 40%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-actions { display: flex; align-items: center; gap: 10px; }

/* Theme toggle switch */
.theme-toggle {
  position: relative;
  width: 56px;
  height: 30px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(20,20,40,0.06);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.theme-toggle .tt-icon {
  font-size: 13px;
  line-height: 1;
  z-index: 1;
  color: var(--text-dim);
  transition: color 0.2s ease;
}
.theme-toggle .tt-sun { color: #fbbf24; }
.theme-toggle .tt-moon { color: #a78bfa; }
.theme-toggle .tt-knob {
  position: absolute;
  top: 2px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  transition: transform 0.25s cubic-bezier(.4,0,.2,1);
}
body.dark-theme .theme-toggle .tt-knob { transform: translateX(24px); }

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
nav.main-nav a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dim);
  padding: 8px 14px;
  border-radius: 9px;
  transition: color 0.15s ease, background 0.15s ease;
}
nav.main-nav a:hover { color: var(--text); background: rgba(20,20,40,0.05); }
nav.main-nav a.active { color: var(--text); background: rgba(139,92,246,0.14); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(20,20,40,0.04);
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 720px) {
  nav.main-nav {
    position: absolute;
    top: 64px;
    left: 16px;
    right: 16px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    flex-direction: column;
    align-items: stretch;
    padding: 8px;
    display: none;
    box-shadow: 0 20px 50px rgba(20,20,45,0.15);
  }
  nav.main-nav.open { display: flex; }
  nav.main-nav a { padding: 12px 14px; }
  .nav-toggle { display: flex; }
}

/* ---------- Page wrap / hero used on index ---------- */
.page-body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.wrap { position: relative; z-index: 1; width: 100%; max-width: 540px; margin: 0 auto; }

header.hero { text-align: center; margin-bottom: 30px; }
header.hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(124,58,237,0.09);
  border: 1px solid rgba(124,58,237,0.25);
  font-size: 11.5px;
  color: #7c3aed;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 16px;
}
header.hero .badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}
header.hero h1 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.4px;
  background: linear-gradient(120deg, #16161f 30%, #7c3aed 70%, #0891b2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}
header.hero p { color: var(--text-dim); font-size: 14px; }
header.hero p b { color: var(--text); font-weight: 600; }

.card {
  background: var(--panel);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 20px 50px rgba(20,20,45,0.07), inset 0 1px 0 rgba(255,255,255,0.6);
}

.search { display: flex; flex-wrap: wrap; gap: 10px; }
.input-shell { flex: 1 1 220px; min-width: 0; position: relative; }
input[type="text"] {
  width: 100%;
  padding: 15px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(20,20,40,0.03);
  color: var(--text);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input[type="text"]:focus { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(139,92,246,0.15); }
input[type="text"]::placeholder { color: #9a9db0; }

button#fetchBtn {
  flex: 1 1 100%;
  padding: 15px 22px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  font-family: 'Sora', sans-serif;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(139,92,246,0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
button#fetchBtn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(139,92,246,0.5); }
button#fetchBtn:active { transform: translateY(0); }
button#fetchBtn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

@media (min-width: 460px) { button#fetchBtn { flex: 0 0 auto; } }

.status-line { margin-top: 14px; font-size: 13px; color: var(--text-dim); min-height: 16px; }
.status-line.error { color: #f87171; }
.status-line.success { color: #4ade80; }

.loading { display: none; align-items: center; gap: 12px; padding: 16px 0 4px; color: var(--text-dim); font-size: 13px; }
.loading.show { display: flex; }
.pulse-ring {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid var(--violet);
  border-top-color: var(--cyan);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.result { display: none; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--border); }
.result.show { display: block; }

.video-info { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; }
.video-info .thumb-wrap { position: relative; flex-shrink: 0; border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
.video-info img { width: 100px; height: 68px; object-fit: cover; display: block; }
.video-info .meta { flex: 1 1 auto; min-width: 0; max-width: 100%; }
.video-info h3 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.video-info .plat-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 7px;
  font-size: 11px;
  font-weight: 600;
  color: #0e7490;
  background: rgba(14,116,144,0.09);
  border: 1px solid rgba(14,116,144,0.25);
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: capitalize;
}

.qualities-label { font-size: 11.5px; font-weight: 700; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 10px; }
.qualities { display: flex; flex-direction: column; gap: 8px; }
.quality-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(20,20,40,0.025);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}
.quality-row:hover { border-color: var(--violet); background: rgba(139,92,246,0.08); transform: translateX(2px); }
.quality-row .q-left { display: flex; align-items: center; gap: 10px; }
.quality-row .q-label { font-size: 13.5px; font-weight: 700; font-family: 'Sora', sans-serif; }
.quality-row .q-size { font-size: 11.5px; color: var(--text-dim); }
.quality-row .q-download {
  font-size: 12px;
  font-weight: 700;
  background: linear-gradient(120deg, #0e7490, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Long-form landing sections (used on homepage) ---------- */
.section {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 70px 24px;
}
.section.tight { padding-top: 40px; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.section-header .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(124,58,237,0.09);
  border: 1px solid rgba(124,58,237,0.25);
  font-size: 11.5px;
  color: #7c3aed;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 14px;
}
.section-header .eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.section-header h2 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.4px;
  color: var(--text);
  margin-bottom: 12px;
}
.section-header p { color: var(--text-dim); font-size: 14.5px; line-height: 1.7; }

.divider {
  max-width: 1080px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
}

.intro-copy { max-width: 720px; margin: 0 auto; text-align: center; }
.intro-copy p { color: var(--text-dim); font-size: 14.5px; line-height: 1.8; }
.intro-copy p + p { margin-top: 12px; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 780px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card {
  background: var(--panel);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px 22px;
  text-align: center;
}
.step-card .step-badge {
  width: 44px; height: 44px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step-card h3 { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.step-card p { color: var(--text-dim); font-size: 13.5px; line-height: 1.65; }

.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 18px;
}
.why-card .icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(34,211,238,0.12);
  color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  margin-bottom: 14px;
}
.why-card h3 { font-family: 'Sora', sans-serif; font-size: 14.5px; font-weight: 700; margin-bottom: 6px; }
.why-card p { color: var(--text-dim); font-size: 13px; line-height: 1.6; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }
.feature-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.feature-card:hover { border-color: var(--violet); transform: translateY(-3px); }
.feature-card .tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #0e7490;
  background: rgba(14,116,144,0.09);
  border: 1px solid rgba(14,116,144,0.25);
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.feature-card h3 { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { color: var(--text-dim); font-size: 13.5px; line-height: 1.65; }

/* ---------- Content pages (About / FAQ / Terms / Privacy / How-to) ---------- */
.content-wrap {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 36px 24px 60px;
}
.content-hero { text-align: center; margin-bottom: 34px; }
.content-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(124,58,237,0.09);
  border: 1px solid rgba(124,58,237,0.25);
  font-size: 11.5px;
  color: #7c3aed;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 14px;
}
.content-hero h1 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -0.4px;
  background: linear-gradient(120deg, #16161f 30%, #7c3aed 70%, #0891b2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}
.content-hero p { color: var(--text-dim); font-size: 14.5px; max-width: 520px; margin: 0 auto; }

.content-card {
  background: var(--panel);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(20,20,45,0.07), inset 0 1px 0 rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.content-card h2 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.content-card h2 .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 8px;
  background: rgba(139,92,246,0.15);
  color: var(--cyan);
  font-size: 12px;
  margin-right: 8px;
  font-family: 'Inter', sans-serif;
}
.content-card p, .content-card li { color: var(--text-dim); font-size: 14px; line-height: 1.75; }
.content-card p + p { margin-top: 10px; }
.content-card ul, .content-card ol { padding-left: 20px; margin-top: 6px; }
.content-card li { margin-bottom: 6px; }
.content-card a.inline-link { color: var(--cyan); font-weight: 600; }
.content-card a.inline-link:hover { text-decoration: underline; }

.step-list { display: flex; flex-direction: column; gap: 14px; }
.step-item { display: flex; gap: 14px; align-items: flex-start; }
.step-item .step-num {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.step-item .step-text h3 { font-size: 14.5px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.step-item .step-text p { font-size: 13.5px; color: var(--text-dim); line-height: 1.6; }

.faq-item { border: 1px solid var(--border); border-radius: 14px; margin-bottom: 10px; overflow: hidden; background: rgba(20,20,40,0.02); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-q .icon { color: var(--cyan); font-size: 16px; transition: transform 0.2s ease; flex-shrink: 0; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 18px 16px; color: var(--text-dim); font-size: 13.5px; line-height: 1.7; }

.cta-band {
  text-align: center;
  padding: 30px;
}
.cta-band a.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  color: #fff;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(139,92,246,0.35);
}

/* ---------- Footer ---------- */
footer.site-footer {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 60px auto 0;
  padding: 46px 24px 28px;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 30px;
}

.footer-brand { max-width: 340px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo img { width: 34px; height: 34px; object-fit: contain; display: block; }
.footer-logo span {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 18px;
  background: linear-gradient(120deg, var(--violet), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-brand p { font-size: 13px; color: var(--text-dim); line-height: 1.7; }

.footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 56px;
}
.footer-col h4 {
  font-family: 'Sora', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13.5px; font-weight: 500; color: var(--text-dim); transition: color 0.15s ease; }
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px 20px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.7;
}
.footer-bottom b {
  background: linear-gradient(120deg, var(--violet), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  white-space: nowrap;
}
.footer-bottom .footer-disclaimer { color: var(--text-dim); }
.footer-br { display: none; }

@media (max-width: 640px) {
  .footer-top { gap: 30px; }
  .footer-cols { flex-direction: column; gap: 26px; }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .footer-bottom .footer-disclaimer {
    padding-top: 10px;
    margin-top: 4px;
    border-top: 1px solid var(--border);
    max-width: 320px;
    font-size: 11.5px;
  }
  .footer-br { display: inline; }
}

/* ---------- Dark theme (opt-in via toggle) ---------- */
body.dark-theme {
  --bg: #0a0b12;
  --panel: rgba(255,255,255,0.045);
  --border: rgba(255,255,255,0.09);
  --text: #eef0f6;
  --text-dim: #8b8fa3;
}
body.dark-theme .glow.one,
body.dark-theme .glow.two { opacity: 0.35; }
body.dark-theme .glow.three { opacity: 0.18; }
body.dark-theme .card,
body.dark-theme .content-card {
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
}
body.dark-theme .brand span {
  background: linear-gradient(120deg, #fff 40%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.dark-theme header.hero h1,
body.dark-theme .content-hero h1 {
  background: linear-gradient(120deg, #fff 30%, #c4b5fd 70%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.dark-theme .theme-toggle { background: rgba(255,255,255,0.06); }
body.dark-theme header.hero .badge,
body.dark-theme .section-header .eyebrow,
body.dark-theme .content-hero .eyebrow {
  color: #c4b5fd;
  background: rgba(139,92,246,0.12);
  border-color: rgba(139,92,246,0.3);
}
body.dark-theme .video-info .plat-tag,
body.dark-theme .feature-card .tag {
  color: var(--cyan);
  background: rgba(34,211,238,0.1);
  border-color: rgba(34,211,238,0.25);
}
body.dark-theme .quality-row .q-download {
  background: linear-gradient(120deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.dark-theme nav.main-nav a:hover { background: rgba(255,255,255,0.05); }
body.dark-theme .nav-toggle,
body.dark-theme input[type="text"] {
  background: rgba(255,255,255,0.04);
}
body.dark-theme input[type="text"]::placeholder { color: #5c5f6f; }
body.dark-theme .quality-row,
body.dark-theme .faq-item {
  background: rgba(255,255,255,0.02);
}
@media (max-width: 720px) {
  body.dark-theme nav.main-nav { background: #12101d; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
}
