/* ===========================================================
   DailyLifeKit — VERY premium shared stylesheet
   Fast, self-contained, accessible. Light + dark. Reduced-motion aware.
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&display=swap');

:root {
  --bg: #faf9fe;
  --bg-2: #f3eefc;
  --card: #ffffff;
  --ink: #2c2940;
  --ink-soft: #6a6785;
  --ink-faint: #9c99b2;
  --line: #eee9f8;
  --brand: #8172d8;
  --brand-2: #c3a2ea;
  --brand-3: #8fd6dd;
  --brand-ink: #6f5fc4;
  --brand-soft: #f3effd;
  --good: #16a34a;
  --warn: #d97706;
  --bad: #dc2626;
  --radius: 20px;
  --radius-sm: 13px;
  --shadow-sm: 0 1px 2px rgba(60,50,110,.05), 0 3px 10px rgba(60,50,110,.05);
  --shadow: 0 8px 24px rgba(70,55,130,.09), 0 24px 60px rgba(70,55,130,.07);
  --shadow-lg: 0 20px 50px rgba(70,55,130,.16);
  --grad: linear-gradient(135deg, #8f7ce4 0%, #b884cb 52%, #e79fa6 120%);
  --grad-text: linear-gradient(120deg, #8877e2, #cf82b0 48%, #f0a683);
  --grad-warm: linear-gradient(135deg, #f3b0c4 0%, #f6c3a8 100%);
  --maxw: 920px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
  overflow-x: hidden;
}
/* Ambient aurora behind everything */
body::before {
  content: ""; position: fixed; inset: -20% -10% auto -10%; height: 620px; z-index: -1;
  background:
    radial-gradient(560px 360px at 16% 10%, rgba(197,164,235,.32), transparent 60%),
    radial-gradient(640px 400px at 84% 6%, rgba(249,197,176,.32), transparent 60%),
    radial-gradient(520px 360px at 48% 30%, rgba(244,182,210,.28), transparent 65%),
    radial-gradient(420px 300px at 72% 58%, rgba(168,224,219,.20), transparent 65%);
  filter: blur(6px); pointer-events: none;
}

a { color: var(--brand-ink); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(233,234,242,.9);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 1.28rem; color: var(--ink); letter-spacing: -.03em; }
.logo:hover { text-decoration: none; }
.logo .dot {
  width: 32px; height: 32px; border-radius: 10px; background: var(--grad);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(108,92,231,.4); position: relative;
}
.logo .dot::after { content:""; width: 10px; height: 10px; border-radius: 50%; background: #fff; }
.logo span { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.nav { display: flex; align-items: center; }
.nav a { color: var(--ink-soft); margin-left: 24px; font-size: .95rem; font-weight: 600; transition: color .15s; }
.nav a:hover { color: var(--brand); text-decoration: none; }
@media (max-width: 560px) {
  .nav a { margin-left: 16px; font-size: .88rem; }
  .site-header .container { height: 60px; }
  .logo { font-size: 1.12rem; }
}

/* ---------- Hero (cinematic) ---------- */
.hero { position: relative; overflow: hidden; padding: 24px 0 34px; }
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; }
.hero-orbs { position: absolute; inset: 0; z-index: -2; pointer-events: none; }
.hero-orbs span {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5;
  animation: float 15s ease-in-out infinite;
}
.hero-orbs span:nth-child(1){ width: 300px; height: 300px; left: 1%; top: -20px; background: rgba(197,164,235,.5); }
.hero-orbs span:nth-child(2){ width: 260px; height: 260px; right: 1%; top: 40px; background: rgba(249,197,176,.5); animation-delay: -5s; }
.hero-orbs span:nth-child(3){ width: 220px; height: 220px; left: 42%; bottom: -50px; background: rgba(244,182,210,.48); animation-delay: -9s; }
@keyframes float { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-26px) } }

.hero-inner { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 32px; min-height: 64vh; padding: 22px 0; }
.hero-copy { text-align: left; }
@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; min-height: auto; gap: 6px; padding-top: 40px; }
  .hero-copy { text-align: center; }
  .hero-visual { order: -1; margin: 0 auto 14px; }
}

.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 7px; font-size: .78rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--brand-ink);
  background: rgba(255,255,255,.7); border: 1px solid rgba(90,85,224,.18);
  padding: 7px 15px; border-radius: 999px; margin-bottom: 22px;
  box-shadow: var(--shadow-sm); backdrop-filter: blur(6px);
}
.hero h1 {
  font-family: "Fraunces", Georgia, serif; font-weight: 600;
  font-size: clamp(2.4rem, 5.4vw, 3.6rem); line-height: 1.04; margin: 0 0 18px;
  letter-spacing: -.025em;
}
.hero h1 .accent { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-copy p { color: var(--ink-soft); font-size: 1.15rem; max-width: 470px; margin: 0; }
@media (max-width: 820px){ .hero-copy p { margin: 0 auto; } }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
@media (max-width: 820px){ .hero-cta { justify-content: center; } }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 24px; font-size: 1rem;
  font-weight: 700; border-radius: var(--radius-sm); color: var(--brand-ink);
  background: rgba(255,255,255,.7); border: 1.5px solid var(--line); backdrop-filter: blur(6px);
  transition: border-color .15s, transform .14s, box-shadow .15s;
}
.btn-outline:hover { border-color: var(--brand); transform: translateY(-2px); box-shadow: var(--shadow-sm); text-decoration: none; }

.trust-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-start; margin-top: 26px; }
@media (max-width: 820px){ .trust-row { justify-content: center; } }
.trust-row span {
  font-size: .85rem; font-weight: 600; color: var(--ink-soft);
  background: rgba(255,255,255,.75); border: 1px solid var(--line);
  padding: 8px 14px; border-radius: 999px; box-shadow: var(--shadow-sm);
  backdrop-filter: blur(6px);
}

/* Signature visual: breathing orb + floating tool chips */
.hero-visual { position: relative; width: min(430px, 84vw); aspect-ratio: 1; margin-left: auto; }
@media (max-width: 820px){ .hero-visual { width: min(320px, 80vw); } }
.orb-rings span { position: absolute; inset: 15%; border-radius: 50%; border: 1px solid rgba(90,85,224,.18); animation: ripple 4.2s ease-out infinite; }
.orb-rings span:nth-child(2){ animation-delay: 1.4s; }
.orb-rings span:nth-child(3){ animation-delay: 2.8s; }
@keyframes ripple { 0%{ transform: scale(.68); opacity: .7 } 100%{ transform: scale(1.3); opacity: 0 } }
.orb-core {
  position: absolute; inset: 27%; border-radius: 50%;
  background: radial-gradient(circle at 38% 34%, #e0cef7 0%, #c1a8ee 44%, #9f88de 100%);
  box-shadow: 0 0 60px 14px rgba(190,164,236,.38), 0 0 130px 30px rgba(160,224,219,.16), inset 0 2px 0 rgba(255,255,255,.45);
  display: flex; align-items: center; justify-content: center; animation: breathe 8s ease-in-out infinite;
}
.orb-core .orb-mark { width: 32%; height: 32%; border-radius: 50%; background: radial-gradient(circle at 40% 35%, #fff, rgba(255,255,255,.45)); opacity: .85; }
@keyframes breathe { 0%,100%{ transform: scale(.9); } 50%{ transform: scale(1.07); } }
.chip {
  position: absolute; display: flex; align-items: center; gap: 8px;
  padding: 9px 14px 9px 11px; border-radius: 14px; font-size: .9rem; font-weight: 700;
  color: var(--ink); white-space: nowrap;
  background: rgba(255,255,255,.92); border: 1px solid var(--line);
  box-shadow: var(--shadow); backdrop-filter: blur(8px);
  animation: floatchip 7s ease-in-out infinite;
}
.chip .ce { font-size: 1.15rem; line-height: 1; }
@media (max-width: 820px){ .chip { font-size: .8rem; padding: 7px 11px 7px 9px; } .chip .ce { font-size: 1rem; } }
@media (max-width: 480px){ .chip-3, .chip-5 { display: none; } }
.chip-1{ left: -6%; top: 15%; animation-delay: -1s; }
.chip-2{ right: 3%; top: 1%; animation-delay: -3s; }
.chip-3{ right: 1%; bottom: 24%; animation-delay: -5s; }
.chip-4{ left: -4%; bottom: 5%; animation-delay: -2.2s; }
.chip-5{ left: 26%; top: -6%; animation-delay: -4s; }
@keyframes floatchip { 0%,100%{ transform: translateY(0) rotate(-3deg); } 50%{ transform: translateY(-15px) rotate(3deg); } }

/* Scroll cue */
.scroll-cue { display: flex; flex-direction: column; align-items: center; gap: 8px; margin: 10px auto 0; width: fit-content; color: var(--ink-faint); }
.scroll-cue small { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; }
.scroll-cue i { width: 1px; height: 34px; background: linear-gradient(to bottom, var(--brand), transparent); animation: cue 2.2s ease-in-out infinite; transform-origin: top; }
@keyframes cue { 0%,100%{ transform: scaleY(.4); opacity: .4 } 50%{ transform: scaleY(1); opacity: .9 } }

/* ---------- Tool grid ---------- */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(252px, 1fr)); gap: 18px; margin: 26px 0; }
.tool-card {
  position: relative; background: rgba(255,255,255,.82); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm); color: var(--ink); overflow: hidden;
  transition: transform .2s cubic-bezier(.2,.7,.2,1), box-shadow .2s, border-color .2s;
}
/* gradient hairline on hover */
.tool-card::after {
  content:""; position:absolute; inset:0; border-radius: inherit; padding:1px;
  background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity:0; transition: opacity .2s;
}
.tool-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); text-decoration: none; }
.tool-card:hover::after { opacity: 1; }
.tool-card .emoji {
  font-size: 1.55rem; width: 54px; height: 54px; border-radius: 15px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--brand-soft), #fdeadf); margin-bottom: 14px;
  box-shadow: inset 0 0 0 1px rgba(129,114,216,.09);
}
.tool-card h3 { margin: 0 0 6px; font-size: 1.14rem; letter-spacing: -.02em; }
.tool-card p { margin: 0; color: var(--ink-soft); font-size: .93rem; }
.tool-card .go { margin-top: 14px; font-size: .85rem; font-weight: 700; color: var(--brand); display: inline-flex; align-items: center; gap: 5px; transition: gap .2s; }
.tool-card:hover .go { gap: 9px; }

.section-label { display:inline-flex; align-items:center; gap:9px; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--brand); margin: 40px 0 2px; }
.section-label::before { content:""; width: 22px; height: 2px; border-radius: 2px; background: var(--grad); }
.section-note { color: var(--ink-soft); font-size: .96rem; margin: 0 0 6px; }

/* ---------- Tool page ---------- */
main { padding: 34px 0 64px; }
.crumbs { font-size: .85rem; color: var(--ink-faint); margin-bottom: 18px; }
.crumbs a { color: var(--ink-soft); }
.tool-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 62px; height: 62px; border-radius: 18px; font-size: 1.95rem; margin-bottom: 14px;
  background: linear-gradient(135deg, var(--brand-soft), #fde6dd);
  box-shadow: var(--shadow-sm), inset 0 0 0 1px rgba(129,114,216,.08);
}
.tool-title { font-family: "Fraunces", Georgia, serif; font-weight: 600; font-size: clamp(1.9rem, 4vw, 2.5rem); margin: 0 0 12px; letter-spacing: -.025em; }
.tool-intro { color: var(--ink-soft); font-size: 1.12rem; margin: 0 0 28px; max-width: 640px; }

.tool-box {
  position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow); margin-bottom: 32px;
}
.tool-box::before { content:""; position:absolute; inset:0 0 auto 0; height:4px; border-radius: var(--radius) var(--radius) 0 0; background: var(--grad); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; margin-bottom: 8px; font-size: .95rem; }
.field input, .field select {
  width: 100%; padding: 13px 15px; font-size: 1rem; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); background: #fff; color: var(--ink); font-family: inherit;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-soft); }
.row { display: flex; gap: 14px; }
.row .field { flex: 1; }

.btn {
  display: inline-flex; align-items: center; gap: 8px; position: relative; overflow: hidden;
  background: var(--grad); color: #fff; border: none;
  padding: 14px 28px; font-size: 1rem; font-weight: 700; border-radius: var(--radius-sm);
  cursor: pointer; font-family: inherit; box-shadow: 0 8px 22px rgba(108,92,231,.34);
  transition: transform .14s, box-shadow .14s, filter .14s;
}
.btn::before { content:""; position:absolute; top:0; left:-120%; width:60%; height:100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent); transform: skewX(-18deg); transition: left .6s; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(108,92,231,.42); filter: brightness(1.05); }
.btn:hover::before { left: 130%; }
.btn:active { transform: translateY(0); }

.result {
  margin-top: 22px; padding: 24px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #f6f0ff, #fdeff0);
  border: 1px solid #f0e4f5; display: none;
}
.result.show { display: block; animation: pop .26s cubic-bezier(.2,.8,.2,1); }
@keyframes pop { from { opacity: 0; transform: translateY(8px) scale(.99); } to { opacity: 1; transform: none; } }
.result .big { font-family: "Fraunces", Georgia, serif; font-size: 1.8rem; font-weight: 600; color: var(--brand-ink); margin: 0 0 6px; letter-spacing: -.02em; }
.result .sub { color: var(--ink-soft); font-size: .98rem; }
.result ul { margin: 12px 0 0; padding-left: 20px; }
.result li { margin-bottom: 5px; }

/* ---------- Content ---------- */
.content { max-width: 720px; }
.content h2 { font-family: "Fraunces", Georgia, serif; font-weight: 600; font-size: 1.55rem; margin: 38px 0 12px; letter-spacing: -.02em; }
.content h3 { font-size: 1.14rem; margin: 26px 0 8px; }
.content p, .content li { color: #333a48; }
.content ul { padding-left: 22px; }
.content li { margin-bottom: 6px; }

.faq details {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 2px 20px; margin-bottom: 12px; box-shadow: var(--shadow-sm); transition: box-shadow .2s;
}
.faq details[open] { box-shadow: var(--shadow); }
.faq summary { cursor: pointer; font-weight: 600; padding: 16px 0; list-style: none; position: relative; padding-right: 30px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 2px; top: 13px; font-size: 1.4rem; color: var(--brand); transition: transform .2s; }
.faq details[open] summary { color: var(--brand); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin: 0 0 16px; color: #333a48; }

/* ---------- Ad slot ---------- */
.ad-slot {
  margin: 32px auto; padding: 14px; text-align: center; min-height: 96px; max-width: 728px;
  background: repeating-linear-gradient(45deg, #fbfbfe, #fbfbfe 12px, #f4f5fb 12px, #f4f5fb 24px);
  border: 1px dashed #d9dcea; border-radius: var(--radius-sm); color: #a7adbe; font-size: .8rem;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--card); border-top: 1px solid var(--line); padding: 46px 0 32px; margin-top: 56px; color: var(--ink-soft); font-size: .92rem; }
.site-footer .fcols { display: flex; flex-wrap: wrap; gap: 34px; justify-content: space-between; }
.site-footer a { color: var(--ink-soft); }
.site-footer a:hover { color: var(--brand); }
.site-footer h4 { color: var(--ink); font-size: .95rem; margin: 0 0 12px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.15rem; color: var(--ink); margin-bottom: 10px; letter-spacing: -.02em; }
.footer-brand .dot { width: 26px; height: 26px; border-radius: 8px; background: var(--grad); display:inline-flex; align-items:center; justify-content:center; box-shadow: 0 4px 12px rgba(108,92,231,.35); }
.footer-brand .dot::after { content:""; width:8px; height:8px; border-radius:50%; background:#fff; }
.copyright { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); font-size: .84rem; color: var(--ink-faint); }
.tool-footnav { font-size: .9rem; color: var(--ink-faint); }
.tool-footnav a { color: var(--ink-soft); }

/* ---------- Legal / prose ---------- */
.prose { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 42px; box-shadow: var(--shadow); max-width: 760px; margin: 0 auto; }
.prose h1 { font-family: "Fraunces", Georgia, serif; font-weight: 600; margin-top: 0; letter-spacing: -.025em; }
.prose h2 { font-family: "Fraunces", Georgia, serif; font-weight: 600; font-size: 1.35rem; margin: 32px 0 10px; }
.prose p, .prose li { color: #333a48; }
.prose li { margin-bottom: 6px; }
.updated { color: var(--ink-faint); font-size: .86rem; margin-bottom: 24px; }
@media (max-width: 560px){ .prose { padding: 26px; } }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 999;
  max-width: 880px; margin: 0 auto;
  background: rgba(255,255,255,.94); backdrop-filter: blur(14px);
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 20px 22px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  transform: translateY(150%); transition: transform .4s cubic-bezier(.2,.85,.2,1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { margin: 0; flex: 1 1 340px; font-size: .9rem; color: var(--ink-soft); }
.cookie-banner p a { font-weight: 600; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn { padding: 11px 20px; font-size: .9rem; font-weight: 700; border-radius: 11px; cursor: pointer; border: none; font-family: inherit; transition: filter .12s, transform .12s; }
.cookie-accept { background: var(--grad); color: #fff; box-shadow: 0 6px 16px rgba(108,92,231,.32); }
.cookie-reject { background: var(--brand-soft); color: var(--brand-ink); }
.cookie-btn:hover { filter: brightness(1.05); transform: translateY(-1px); }

/* ---------- 404 ---------- */
.notfound { text-align: center; padding: 90px 0; }
.notfound .code { font-family: "Fraunces", serif; font-size: 6rem; font-weight: 600; background: var(--grad-text); -webkit-background-clip: text; background-clip:text; -webkit-text-fill-color: transparent; margin: 0; letter-spacing: -.03em; }

/* ---------- Entrance motion (safe: visible by default) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .hero-copy .eyebrow { animation: rise .6s .04s both; }
  .hero-copy h1 { animation: rise .75s .12s both; }
  .hero-copy > p { animation: rise .75s .22s both; }
  .hero-cta { animation: rise .75s .32s both; }
  .hero-copy .trust-row { animation: rise .75s .42s both; }
  .hero-visual { animation: rise 1s .1s both; }
  .tool-card { animation: rise .6s both; }
  .grid .tool-card:nth-child(1){ animation-delay: .06s }
  .grid .tool-card:nth-child(2){ animation-delay: .12s }
  .grid .tool-card:nth-child(3){ animation-delay: .18s }
  .grid .tool-card:nth-child(4){ animation-delay: .24s }
  .grid .tool-card:nth-child(5){ animation-delay: .30s }
  .grid .tool-card:nth-child(6){ animation-delay: .36s }
  @keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
}

/* ---------- Dark mode ---------- */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0c0d13; --bg-2: #141625; --card: #14161f; --ink: #eef0f7; --ink-soft: #a8afc2;
    --ink-faint: #757c90; --line: #242836; --brand-soft: #1c1d40; --brand-ink: #c3c0ff;
  }
  body::before {
    background:
      radial-gradient(600px 380px at 18% 12%, rgba(197,164,235,.20), transparent 60%),
      radial-gradient(680px 420px at 82% 4%, rgba(160,224,219,.15), transparent 60%),
      radial-gradient(560px 360px at 50% 30%, rgba(244,196,221,.16), transparent 65%);
  }
  .site-header { background: rgba(14,15,22,.72); border-bottom-color: rgba(36,40,54,.9); }
  .hero .eyebrow, .trust-row span, .tool-card, .btn-outline, .chip { background: rgba(20,22,31,.82); }
  .field input, .field select { background: #0f1019; }
  .result { background: linear-gradient(135deg, #17182f, #12202b); border-color: #2a2d55; }
  .cookie-banner { background: rgba(20,22,31,.96); }
  .tool-card .emoji { background: linear-gradient(135deg, #1d1e40, #12232a); }
  .ad-slot { background: repeating-linear-gradient(45deg, #12131c, #12131c 12px, #171924 12px, #171924 24px); border-color:#2a2e3d; }
}
