:root {
  color-scheme: light dark;
  --bg: #0f1115;
  --card: #171a21;
  --fg: #e7e9ee;
  --muted: #8a8f9c;
  --accent: #ffb84d;
}
@media (prefers-color-scheme: light) {
  :root {
    --bg: #f6f6f8;
    --card: #ffffff;
    --fg: #1a1b1f;
    --muted: #6b7280;
  }
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font: 16px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px;
}

.card {
  max-width: 720px;
  width: 100%;
  background: var(--card);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  text-align: center;
}

.media {
  display: block;
  max-width: 100%;
  max-height: 70vh;
  height: auto;
  margin: 0 auto 16px;
  border-radius: 12px;
  background: #000;
}

video.media {
  width: 100%;
}

.text {
  font-size: 1.15rem;
  white-space: pre-wrap;
  word-wrap: break-word;
  margin: 8px 0 4px;
}

.big {
  font-size: 4rem;
  margin: 8px 0 4px;
}

.meta {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: .02em;
}

.promo {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 720px;
  width: 100%;
  margin: 0;
  padding: 14px 18px;
  border-radius: 16px;
  text-decoration: none;
  color: #1a1b1f;
  background: linear-gradient(135deg, #ffd76b 0%, #ffb84d 60%, #ff8a3d 100%);
  box-shadow: 0 8px 24px rgba(255,184,77,.35);
  transition: transform .12s ease, box-shadow .12s ease;
}
@media (max-width: 480px) {
  .promo { padding: 12px 14px; gap: 10px; border-radius: 14px; }
  .promo-emoji { font-size: 1.5rem; }
  .promo-text b { font-size: .95rem; }
  .promo-sub { font-size: .78rem; }
}
.promo:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(255,184,77,.45);
}
.promo-emoji { font-size: 1.8rem; line-height: 1; }
.promo-text { flex: 1; display: flex; flex-direction: column; line-height: 1.25; }
.promo-text b { font-size: 1rem; }
.promo-sub { font-size: .82rem; opacity: .75; margin-top: 2px; }
.promo-arrow { font-size: 1.4rem; opacity: .7; }
