/* MemeCoin Alerts — white / black. Copy stays. */
:root {
  color-scheme: light;
  --me-bg0: #ffffff;
  --me-bg1: #ffffff;
  --me-card: #ffffff;
  --me-border: #e6e6e6;
  --me-border-strong: #111111;
  --me-text: #111111;
  --me-muted: #5c5c5c;
  --me-faint: #6b6b6b;
  --me-cyan: #111111;
  --me-emerald: #111111;
  --me-rose: #c0392b;
  --me-radius: 10px;
  --me-radius-sm: 8px;
  --me-font: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --me-display: Inter, system-ui, sans-serif;
  --me-mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--me-font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--me-text);
  background: #fff !important;
  -webkit-font-smoothing: antialiased;
}
body::before { display: none !important; content: none !important; }
a { color: var(--me-text); text-decoration: none; }
a:hover { text-decoration: underline; }
::selection { background: #111; color: #fff; }
img { max-width: 100%; height: auto; }
:focus-visible { outline: 2px solid #111; outline-offset: 2px; }

.me-display { font-family: var(--me-display); letter-spacing: -0.03em; }
.gradient-text { color: #111 !important; background: none !important; -webkit-background-clip: unset; background-clip: unset; }
.glow { box-shadow: none !important; }

.me-shell { width: min(1040px, calc(100% - 2rem)); margin-inline: auto; }
.me-section { padding: 2.5rem 0; }

.me-header {
  position: sticky; top: 0; z-index: 30;
  border-bottom: 1px solid var(--me-border);
  background: #fff;
  padding-top: env(safe-area-inset-top, 0px);
}
.me-header-inner {
  width: min(1040px, calc(100% - 1.25rem));
  margin: 0 auto;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}
.me-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #111;
  font-weight: 700;
  text-decoration: none !important;
  letter-spacing: -0.03em;
}
.me-mark { display: none; }
.me-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.92rem;
  color: var(--me-muted);
}
.me-nav a {
  color: #111 !important;
  padding: 8px 12px;
  text-decoration: none !important;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--me-border);
  border-radius: 8px;
  font-weight: 600;
  background: #fff;
}
.me-nav a:hover, .me-nav a.is-active { border-color: #111; background: #f4f4f4; color: #111 !important; }
.me-nav a.me-cta,
.me-nav-compact a.me-cta,
.me-nav .me-cta,
.me-nav-compact .me-cta {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 650;
  color: #fff !important;
  background: #111 !important;
  border-color: #111 !important;
  text-decoration: none !important;
  min-height: 40px;
  align-items: center;
}
.me-menu-btn { display: none; }
.me-nav-compact {
  display: none;
  align-items: center;
  gap: 2px;
}
.me-nav-compact a {
  font-size: 14px;
  padding: 8px 12px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  color: #111;
  text-decoration: none !important;
  white-space: nowrap;
  border: 1px solid var(--me-border);
  border-radius: 8px;
}
.me-nav-compact a:hover { border-color: #111; background: #f4f4f4; color: #111; }
@media (max-width: 820px) {
  .me-nav { display: none !important; }
  .me-nav-compact { display: flex !important; }
  .me-brand span { font-size: 0.95rem; white-space: nowrap; }
}

.me-hero { text-align: center; padding: 2.5rem 0 1.5rem; }
.me-hero h1 {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 650;
  margin: 0 0 0.75rem;
  color: #111;
}
.me-hero .lede { max-width: 36rem; margin: 0 auto 1rem; color: var(--me-muted); }
.me-badge {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 0.7rem; border-radius: 999px;
  color: var(--me-muted);
  border: 1px solid var(--me-border);
  margin-bottom: 1rem;
}
.me-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-top: 1rem; }
.me-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 18px; border-radius: 10px; font-weight: 650;
  border: 1px solid #111; cursor: pointer; text-decoration: none !important; min-height: 48px;
  background: #fff; color: #111 !important;
}
.me-btn-primary { background: #111 !important; color: #fff !important; }
.me-btn-ghost, .me-btn-secondary { background: #fff !important; color: #111 !important; }

.me-card, .me-stat {
  background: #fff;
  border: 1px solid var(--me-border);
  border-radius: 14px;
  padding: 1.1rem 1.15rem;
}
.me-stat .label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--me-muted); }
.me-stat .value { margin-top: 0.25rem; font-size: 1.45rem; font-weight: 700; color: #111; }

.me-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--me-border);
  padding: 2rem 0 1.75rem;
  font-size: 0.85rem;
  color: var(--me-faint);
}
.me-footer-grid {
  width: min(1040px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}
@media (max-width: 800px) { .me-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .me-footer-grid { grid-template-columns: 1fr; } }
.me-footer h4 { margin: 0 0 0.55rem; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: #111; }
.me-footer a { color: var(--me-muted); }
.me-footer a:hover { color: #111; }
.me-footer-bottom {
  width: min(1040px, calc(100% - 2rem));
  margin: 1.25rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid var(--me-border);
  display: flex; flex-wrap: wrap; gap: 0.65rem 1rem;
  justify-content: space-between;
  color: var(--me-faint); font-size: 0.78rem;
}

#cookie-notice {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  display: flex; align-items: center; gap: 0.5rem; justify-content: space-between;
  padding: 0.45rem 0.75rem; font-size: 0.72rem; color: #111;
  background: #fff; border-top: 1px solid var(--me-border);
}
#cookie-notice button {
  padding: 0.45rem 0.75rem; border-radius: 8px; cursor: pointer;
  color: #fff; background: #111; border: 1px solid #111; min-height: 36px; font-weight: 650;
}
body.has-me-dock #cookie-notice { bottom: calc(58px + env(safe-area-inset-bottom, 0px)); }

.me-sister {
  display: block;
  width: min(720px, calc(100% - 1.5rem));
  margin: 0.75rem auto 0;
  padding: 0.45rem 0;
  border: 0;
  background: transparent;
  font-size: 0.85rem;
  color: var(--me-muted);
  text-align: center;
}

/* Header compact nav already has Scan / Get alerts — don't stack a dock. */
.me-dock { display: none !important; }
body.has-me-dock { padding-bottom: 0 !important; }
@media (max-width: 820px) {
  body.has-me-shell > header:not(.me-header),
  body.has-me-shell header[data-me-old] { display: none !important; }
}

/* Tailwind dark leftovers → white/black, wording untouched */
.text-slate-50, .text-slate-100, .text-slate-200, .text-slate-300,
.text-emerald-300, .text-emerald-200, .text-cyan-300 { color: #111 !important; }
.text-slate-400, .text-slate-500, .text-slate-600 { color: #5c5c5c !important; }
.bg-\[\#0a0e16\]\/70, .bg-\[\#0a0e16\]\/80,
.bg-slate-800\/60, .bg-slate-900\/50 { background: #fff !important; }
.border-slate-800\/70, .border-slate-800\/60, .border-slate-700\/60,
.border-emerald-400\/30, .border-emerald-400\/50 { border-color: #e6e6e6 !important; }
.bg-emerald-400, .bg-emerald-400\/15, .bg-emerald-400\/25, .bg-emerald-400\/10,
.bg-cyan-400\/15 { background: #111 !important; color: #fff !important; }
.bg-emerald-400\/5, .from-emerald-400\/5 { background: #fff !important; }
.border-emerald-400\/30.text-emerald-300 { color: #111 !important; }
.rounded-lg { border-radius: 12px !important; }
.rounded-xl { border-radius: 14px !important; }
.bg-gradient-to-b { background-image: none !important; }
