/* sommisearch.com — "forensic archive" theme
   Space Grotesk display · JetBrains Mono data · void + violet/cyan neon */
:root {
  --bg: #05060b;
  --text: #eef0f8;
  --dim: #8a91a8;
  --line: rgba(255, 255, 255, 0.08);
  --card: rgba(255, 255, 255, 0.032);
  --card-hover: rgba(255, 255, 255, 0.06);
  --a1: #8b5cf6;
  --a2: #22d3ee;
  --a3: #e879f9;
  --mark-bg: rgba(34, 211, 238, 0.13);
  --mark-fg: #7ee7fb;
  --radius: 14px;
  --font-display: "Space Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "Cascadia Mono", Consolas, monospace;
}

* { box-sizing: border-box; }

html { color-scheme: dark; }

::selection { background: rgba(139, 92, 246, 0.45); color: #fff; }

body {
  margin: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.55 var(--font-display);
  letter-spacing: 0.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* gradient mesh + blueprint grid */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(820px 480px at 14% -12%, rgba(139, 92, 246, 0.21), transparent 70%),
    radial-gradient(700px 430px at 86% -8%, rgba(34, 211, 238, 0.13), transparent 70%),
    radial-gradient(900px 520px at 50% 115%, rgba(232, 121, 249, 0.07), transparent 70%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 64px);
}

/* film grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.05;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

main, header.top, footer { position: relative; z-index: 1; }

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

:focus-visible { outline: 2px solid var(--a2); outline-offset: 2px; border-radius: 4px; }

/* terminal scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #1c1e2c; border-radius: 99px; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: #3a3360; }

/* ---------- entrance motion ---------- */
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
@keyframes pan { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
@keyframes slide { from { transform: translateX(-40%); } to { transform: translateX(220%); } }

/* ---------- header ---------- */
header.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(16px, 4vw, 36px);
  animation: fadein 0.7s both;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  color: var(--text);
}
.brand:hover { text-decoration: none; }
.tld { color: var(--dim); font-weight: 500; }

.link {
  background: none;
  border: 1px solid transparent;
  color: var(--dim);
  font: inherit;
  font-size: 0.92rem;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.link:hover { color: var(--text); border-color: var(--line); background: var(--card); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(34px, 8vh, 96px) 20px 8px;
  text-align: center;
  transition: padding 0.25s ease;
}

/* giant outlined watermark, grid-breaking */
.wm {
  position: absolute;
  top: clamp(-12px, 0.5vh, 10px);
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(4.4rem, 13vw, 8.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: rgba(165, 150, 255, 0.03);
  -webkit-text-stroke: 1.5px rgba(170, 156, 255, 0.22);
  pointer-events: none;
  user-select: none;
  z-index: -1;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent 94%);
  animation: fadein 1.4s 0.2s both;
}

/* crosshair ticks */
.tick {
  position: absolute;
  color: rgba(139, 92, 246, 0.55);
  font-weight: 400;
  font-size: 1.25rem;
  pointer-events: none;
  user-select: none;
  animation: fadein 1.2s 0.5s both;
}
.tick-1 { top: 14%; left: 3%; }
.tick-2 { bottom: 16%; right: 3.5%; color: rgba(34, 211, 238, 0.5); }

h1 {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 5.2vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  animation: rise 0.6s cubic-bezier(0.2, 0.7, 0.3, 1) backwards;
}

.grad {
  color: #fff;
}

.query-term {
  color: var(--mark-fg);
}

.sub {
  margin: 0 auto 30px;
  max-width: 56ch;
  color: var(--dim);
  font-size: 1.02rem;
  animation: rise 0.6s 0.07s cubic-bezier(0.2, 0.7, 0.3, 1) backwards;
}

body.compact .hero { padding-top: 14px; }
body.compact h1 { font-size: 1.4rem; margin-bottom: 8px; }
body.compact .sub, body.compact .chips, body.compact .wm, body.compact .tick, body.compact .faq { display: none; }

/* ---------- search box ---------- */
.searchbox {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 60px;
  padding: 0 8px 0 19px;
  border-radius: 999px;
  background: rgba(10, 11, 20, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 50px -22px rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  transition: border-color 0.18s, box-shadow 0.18s;
  animation: rise 0.6s 0.14s cubic-bezier(0.2, 0.7, 0.3, 1) backwards;
}
.searchbox:focus-within {
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow:
    0 0 0 4px rgba(139, 92, 246, 0.16),
    0 0 36px -6px rgba(139, 92, 246, 0.35),
    0 18px 50px -22px rgba(0, 0, 0, 0.9);
}

.mag { width: 20px; height: 20px; color: var(--dim); flex: none; transition: color 0.18s; }
.searchbox:focus-within .mag { color: var(--a2); }

#q {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font: inherit;
  font-size: 1.06rem;
}
#q::placeholder { color: #5d6275; }
#q::-webkit-search-cancel-button { display: none; }

.bar {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: -8px;
  height: 2px;
  border-radius: 2px;
  overflow: hidden;
}
.bar::after {
  content: "";
  display: block;
  height: 100%;
  width: 38%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--a1), var(--a2));
  animation: slide 0.9s ease-in-out infinite alternate;
}

/* ---------- chips & stats ---------- */
.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.chip {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--dim);
  font: inherit;
  font-size: 0.87rem;
  padding: 6px 15px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, transform 0.15s, box-shadow 0.15s;
  animation: rise 0.5s backwards;
}
.chips .chip:nth-child(1) { animation-delay: 0.22s; }
.chips .chip:nth-child(2) { animation-delay: 0.27s; }
.chips .chip:nth-child(3) { animation-delay: 0.32s; }
.chips .chip:nth-child(4) { animation-delay: 0.37s; }
.chip::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 7px;
  vertical-align: -1px;
  background-color: rgba(139, 92, 246, 0.7);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='7' fill='none' stroke='%23000' stroke-width='2.6'/%3E%3Cline x1='16.5' y1='16.5' x2='21' y2='21' stroke='%23000' stroke-width='2.6' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='7' fill='none' stroke='%23000' stroke-width='2.6'/%3E%3Cline x1='16.5' y1='16.5' x2='21' y2='21' stroke='%23000' stroke-width='2.6' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.chip:hover::before { background-color: rgba(139, 92, 246, 1); }
.chip:hover {
  color: var(--text);
  border-color: rgba(139, 92, 246, 0.55);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px -8px rgba(139, 92, 246, 0.5);
}

.stats {
  margin: 24px 0 0;
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  animation: rise 0.5s 0.42s backwards;
}

/* ---------- results ---------- */
.results {
  width: 100%;
  max-width: 880px;
  margin: 26px auto 40px;
  padding: 0 20px;
}

.results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0 4px 14px;
}

.summary {
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  margin: 0;
  animation: fadein 0.3s both;
}

.sortbox { position: relative; flex: none; }

.sortbtn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--dim);
  font: inherit;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  padding: 6px 13px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.sortbtn svg { width: 11px; height: 11px; flex: none; transition: transform 0.2s cubic-bezier(0.2, 0.7, 0.3, 1); }
.sortbtn:hover,
.sortbox.open .sortbtn {
  color: var(--text);
  border-color: rgba(139, 92, 246, 0.55);
  box-shadow: 0 4px 18px -8px rgba(139, 92, 246, 0.5);
}
.sortbox.open .sortbtn svg { transform: rotate(180deg); }

.sortmenu {
  position: absolute;
  right: 0;
  top: calc(100% + 7px);
  z-index: 6;
  min-width: 100%;
  width: max-content;
  margin: 0;
  padding: 5px;
  list-style: none;
  background: rgba(12, 13, 22, 0.97);
  border: 1px solid rgba(139, 92, 246, 0.28);
  border-radius: 12px;
  box-shadow: 0 18px 44px -16px rgba(0, 0, 0, 0.85), 0 0 24px -10px rgba(139, 92, 246, 0.35);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top right;
  visibility: hidden;
  transition: opacity 0.18s cubic-bezier(0.2, 0.7, 0.3, 1),
    transform 0.18s cubic-bezier(0.2, 0.7, 0.3, 1), visibility 0.18s;
}
.sortbox.open .sortmenu { opacity: 1; transform: none; visibility: visible; }

.sortmenu li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--dim);
  transition: background 0.12s, color 0.12s;
}
.sortmenu li::after { content: "✓"; color: var(--mark-fg); opacity: 0; transition: opacity 0.12s; }
.sortmenu li:hover, .sortmenu li:focus-visible { background: rgba(139, 92, 246, 0.14); color: var(--text); outline: none; }
.sortmenu li[aria-selected="true"] { color: #c4b5fd; }
.sortmenu li[aria-selected="true"]::after { opacity: 1; }
.summary strong { color: var(--mark-fg); font-weight: 600; }
.summary .note { color: #f3c969; }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
  animation: rise 0.45s cubic-bezier(0.2, 0.7, 0.3, 1) backwards;
}
.card:hover {
  border-color: rgba(139, 92, 246, 0.38);
  box-shadow:
    0 10px 40px -18px rgba(139, 92, 246, 0.35),
    0 2px 16px -8px rgba(0, 0, 0, 0.6);
  transform: translateY(-2px);
}

.card-head {
  display: flex;
  gap: 14px;
  padding: 14px;
  align-items: center;
}

.thumb {
  position: relative;
  flex: none;
  width: 168px;
  aspect-ratio: 16/9;
  border-radius: 9px;
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 0;
  background: #000;
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.thumb:hover img { transform: scale(1.07); }
.thumb .dur {
  position: absolute;
  right: 6px;
  bottom: 6px;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  padding: 1px 6px;
  border-radius: 5px;
}
.thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(139, 92, 246, 0);
  transition: background 0.15s;
}
.thumb:hover::after { background: rgba(139, 92, 246, 0.16); }

.meta { min-width: 0; flex: 1; }
.meta h3 {
  margin: 0 0 6px;
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.28;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.meta .info { color: var(--dim); font-family: var(--font-mono); font-size: 0.76rem; }
.meta .info b { color: var(--mark-fg); font-weight: 600; }

.yt {
  flex: none;
  align-self: flex-start;
  color: var(--dim);
  font-size: 0.82rem;
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.yt:hover {
  color: var(--text);
  text-decoration: none;
  border-color: rgba(34, 211, 238, 0.5);
  box-shadow: 0 0 16px -6px rgba(34, 211, 238, 0.5);
}

.player {
  position: relative;
  margin: 10px 14px 14px;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(139, 92, 246, 0.3);
  box-shadow: 0 14px 44px -16px rgba(0, 0, 0, 0.85);
}
.player iframe { width: 100%; height: 100%; border: 0; display: block; }
.player .x { position: absolute; top: 8px; right: 8px; z-index: 2; }

.matches { border-top: 1px solid var(--line); }

.match {
  display: flex;
  gap: 12px;
  align-items: baseline;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 10px 16px;
  color: var(--text);
  font: inherit;
  font-size: 0.94rem;
  cursor: pointer;
  transition: background 0.12s;
}
.match:first-child { border-top: none; }
.match:hover { background: rgba(139, 92, 246, 0.06); }

.t {
  flex: none;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  color: #c4b5fd;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.32);
  border-radius: 999px;
  padding: 2px 11px;
  transition: background 0.12s, color 0.12s, border-color 0.12s, box-shadow 0.12s;
}
.t::before { content: "▶"; font-size: 0.62em; margin-right: 6px; opacity: 0.55; }
.match:hover .t {
  background: rgba(139, 92, 246, 0.28);
  color: #ddd3ff;
  box-shadow: 0 0 14px -4px rgba(139, 92, 246, 0.6);
}
.match.active .t {
  background: var(--a1);
  border-color: transparent;
  color: #fff;
}

.snippet { color: #c3c7d6; transition: color 0.12s; }
.match:hover .snippet { color: #dde0ec; }
.snippet mark {
  background: var(--mark-bg);
  color: var(--mark-fg);
  font-weight: 600;
  border-radius: 4px;
  padding: 0 3px;
  text-shadow: 0 0 14px rgba(34, 211, 238, 0.45);
}

.loadmore {
  display: block;
  width: 100%;
  padding: 14px;
  margin: 4px 0 10px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--dim);
  font: inherit;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s, box-shadow 0.15s;
  animation: rise 0.45s cubic-bezier(0.2, 0.7, 0.3, 1) backwards;
}
.loadmore:hover {
  color: var(--text);
  border-color: rgba(139, 92, 246, 0.45);
  background: var(--card-hover);
  box-shadow: 0 6px 24px -12px rgba(139, 92, 246, 0.4);
}
.loadmore:disabled { opacity: 0.6; cursor: default; }

.state {
  text-align: center;
  color: var(--dim);
  padding: 44px 0;
  font-family: var(--font-mono);
  font-size: 0.88rem;
}

/* ---------- FAQ ---------- */
.faq {
  width: 100%;
  max-width: 720px;
  margin: 34px auto 28px;
  padding: 0 20px;
  animation: rise 0.6s 0.5s cubic-bezier(0.2, 0.7, 0.3, 1) backwards;
}

.faq-kicker {
  margin: 0 0 4px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(139, 92, 246, 0.8);
}

.faq h2 {
  margin: 0 0 22px;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  text-align: center;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 10px;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
}
.faq-item:hover { border-color: rgba(139, 92, 246, 0.32); }
.faq-item[open] {
  border-color: rgba(139, 92, 246, 0.42);
  background: var(--card-hover);
  box-shadow: 0 10px 36px -18px rgba(139, 92, 246, 0.4);
}

.faq-item summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 16px 15px 18px;
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  font-size: 0.97rem;
  letter-spacing: -0.01em;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-plus {
  flex: none;
  margin-left: auto;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 1.05rem;
  line-height: 1;
  color: #c4b5fd;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 999px;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1), background 0.15s, border-color 0.15s;
}
.faq-item summary:hover .faq-plus {
  background: rgba(139, 92, 246, 0.22);
  border-color: rgba(139, 92, 246, 0.5);
}
.faq-item[open] .faq-plus {
  transform: rotate(45deg);
  background: rgba(139, 92, 246, 0.28);
  border-color: transparent;
}

.faq-a {
  margin: 0;
  padding: 0 52px 17px 18px;
  color: #a7adc3;
  font-size: 0.92rem;
  line-height: 1.65;
  animation: fadein 0.35s both;
}
.faq-a em { color: #c9cddd; font-style: italic; }

/* ---------- close button ---------- */
.x {
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid var(--line);
  color: #d5d8e2;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.85rem;
  line-height: 1;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
.x:hover { background: rgba(0, 0, 0, 0.85); color: #fff; transform: rotate(90deg); }

/* ---------- back to top ---------- */
.totop {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 5;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(139, 92, 246, 0.4);
  background: rgba(10, 11, 20, 0.82);
  color: #c4b5fd;
  cursor: pointer;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 32px -12px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s cubic-bezier(0.2, 0.7, 0.3, 1),
    border-color 0.15s, color 0.15s, box-shadow 0.15s;
}
.totop svg { width: 20px; height: 20px; }
.totop.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.totop:hover {
  color: #fff;
  border-color: rgba(139, 92, 246, 0.7);
  box-shadow: 0 0 24px -6px rgba(139, 92, 246, 0.55), 0 10px 32px -12px rgba(0, 0, 0, 0.8);
}
.totop.show:active { transform: translateY(1px) scale(0.96); }

/* ---------- footer ---------- */
footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
  padding: 26px 20px 30px;
  color: var(--dim);
  font-size: 0.84rem;
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent 5%, rgba(139, 92, 246, 0.35), rgba(34, 211, 238, 0.35), transparent 95%) 1;
}

/* ---------- mobile ---------- */
@media (max-width: 620px) {
  .card-head { flex-wrap: wrap; }
  .thumb { width: 100%; }
  .yt { order: 3; }
  .searchbox { height: 54px; padding-left: 15px; }
  .match { gap: 9px; padding: 10px 12px; }
  .wm, .tick { display: none; }
  .faq-a { padding-right: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
