/* TikDwn.Click minimal styles — accessible, readable, light */
:root {
  --bg: #0f1115;
  --bg-soft: #151922;
  --text: #e7e9ee;
  --muted: #aab0bd;
  --accent: #6aa9ff;
  --accent-2: #8d7bff;
  --link: #99c1ff;
  --maxw: 920px;
}

* { box-sizing: border-box; }
html { font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji"; }
body {
  margin: 0;
  background: radial-gradient(1000px 600px at 10% -10%, #192032, transparent 60%), var(--bg);
  color: var(--text);
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 24px; }
header { padding: 24px 0; border-bottom: 1px solid #232939; margin-bottom: 16px; }
header .brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); }
header .brand img { width: 28px; height: 28px; }
header h1 { font-size: 1.25rem; margin: 0; }
header nav a { color: var(--link); text-decoration: none; margin-right: 16px; }
header nav a:hover { text-decoration: underline; }

main { display: block; }
h1, h2, h3 { line-height: 1.2; }
h1 { font-size: 2rem; margin: 16px 0; }
h2 { font-size: 1.25rem; margin: 24px 0 8px; }
p { color: var(--text); line-height: 1.7; }
.muted { color: var(--muted); }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.card { background: linear-gradient(180deg, var(--bg-soft), transparent 120%); border: 1px solid #202736; border-radius: 12px; padding: 16px; display: flex; gap: 14px; }
.card img { width: 84px; height: 84px; border-radius: 8px; border: 1px solid #2a3143; background: #121621; object-fit: cover; }
.card h3 { margin: 0 0 6px; font-size: 1rem; }
.card a { color: var(--link); text-decoration: none; }
.card a:hover { text-decoration: underline; }
.pill { display: inline-block; padding: 2px 8px; border-radius: 999px; border: 1px solid #2a3143; background: #131827; color: var(--muted); font-size: .75rem; }

.article { display: grid; grid-template-columns: 160px 1fr; gap: 20px; align-items: start; }
.article .cover { width: 160px; height: 160px; border-radius: 12px; border: 1px solid #2a3143; background: #121621; object-fit: cover; }
.prose a { color: var(--link); text-decoration: none; }
.prose a:hover { text-decoration: underline; }
.meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0 16px; }
.meta .pill { background: #0f1320; }

footer { border-top: 1px solid #232939; margin-top: 32px; padding: 24px 0; color: var(--muted); }

@media (max-width: 720px) {
  .article { grid-template-columns: 1fr; }
  .article .cover { width: 100%; height: auto; }
}

