/* Shared, persisted light theme overrides for Token Ads static pages. Dark remains the default. */
[data-theme="light"] {
  color-scheme: light;
}

[data-theme="light"] .bg-zinc-950 { background-color: #fafafa !important; }
[data-theme="light"] .bg-zinc-950\/80 { background-color: rgb(255 255 255 / .80) !important; }
[data-theme="light"] .bg-zinc-900 { background-color: #fff !important; }
[data-theme="light"] .bg-zinc-900\/90 { background-color: rgb(255 255 255 / .92) !important; }
[data-theme="light"] .bg-zinc-900\/40 { background-color: rgb(244 244 245 / .72) !important; }
[data-theme="light"] .bg-zinc-900\/30 { background-color: rgb(244 244 245 / .64) !important; }
[data-theme="light"] .bg-zinc-800 { background-color: #e4e4e7 !important; }
[data-theme="light"] .bg-zinc-800\/60 { background-color: rgb(228 228 231 / .76) !important; }
[data-theme="light"] .bg-zinc-700 { background-color: #d4d4d8 !important; }

[data-theme="light"] .text-zinc-100 { color: #18181b !important; }
[data-theme="light"] .text-zinc-400 { color: #52525b !important; }
[data-theme="light"] .text-zinc-500 { color: #71717a !important; }
[data-theme="light"] .text-zinc-300 { color: #3f3f46 !important; }
[data-theme="light"] .text-zinc-700 { color: #a1a1aa !important; }
[data-theme="light"] .text-blue-400 { color: #2563eb !important; }
[data-theme="light"] .text-blue-300 { color: #1d4ed8 !important; }
[data-theme="light"] .text-blue-100 { color: #1e3a8a !important; }
[data-theme="light"] .text-emerald-400 { color: #047857 !important; }
[data-theme="light"] .text-rose-400 { color: #be123c !important; }

[data-theme="light"] .border-zinc-900 { border-color: #e4e4e7 !important; }
[data-theme="light"] .border-zinc-800 { border-color: #e4e4e7 !important; }
[data-theme="light"] .border-zinc-800\/60 { border-color: rgb(228 228 231 / .76) !important; }
[data-theme="light"] .border-zinc-700 { border-color: #d4d4d8 !important; }
[data-theme="light"] .border-zinc-500 { border-color: #a1a1aa !important; }
[data-theme="light"] .placeholder-zinc-500::placeholder { color: #71717a !important; }

[data-theme="light"] .hover\:text-zinc-100:hover { color: #18181b !important; }
[data-theme="light"] .hover\:text-blue-300:hover { color: #1d4ed8 !important; }
[data-theme="light"] .hover\:border-zinc-500:hover { border-color: #a1a1aa !important; }
[data-theme="light"] .open\:border-zinc-700[open] { border-color: #d4d4d8 !important; }
[data-theme="light"] .terminal-glow {
  box-shadow: 0 0 60px rgb(59 130 246 / .08), inset 0 1px 0 rgb(255 255 255 / .7) !important;
}

/* Avoid a flash when system preference is light before JavaScript persists a choice. */
@media (prefers-color-scheme: light) {
  html:not([data-theme]) { color-scheme: light; }
}
