:root {
  --red: #e63946;
  --dark-red: #b32d38;
  --bg: #0f172a;
  --card: #1e293b;
  --text: #e2e8f0;
  --light-text: #cbd5e1;
}
* { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  padding: 2rem 1rem;
}
.container { max-width: 800px; margin: 0 auto; }
header { text-align: center; margin-bottom: 3rem; }
.alert-box {
  background: var(--red);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  box-shadow: 0 10px 25px rgba(230,57,70,0.3);
  border: 3px solid var(--dark-red);
}
h1 { font-size: 2.8rem; color: #f87171; margin-top: 0; margin-bottom: 1rem; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.subtitle { font-size: 1.3rem; color: var(--light-text); margin-bottom: 2.5rem; }
main article { background: var(--card); border-radius: 16px; padding: 2rem; margin-bottom: 2rem; border-left: 6px solid var(--red); box-shadow: 0 8px 30px rgba(0,0,0,0.4); }
h2 { color: #f87171; margin: 2rem 0 1rem; font-size: 1.8rem; }
.money-warning {
  background: rgba(230,57,70,0.15);
  border: 2px dashed var(--red);
  padding: 1.5rem;
  border-radius: 12px;
  margin: 2rem 0;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fecaca;
}
ul.scammer-list { list-style: none; margin: 1.5rem 0; }
ul.scammer-list li {
  background: rgba(230,57,70,0.1);
  margin: 0.8rem 0;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  border: 1px solid rgba(230,57,70,0.3);
  font-family: monospace;
  font-size: 1.1rem;
}
ul.scammer-list li strong { color: #fca5a5; }
footer { text-align: center; margin-top: 3rem; color: #64748b; font-size: 0.95rem; }
.emoji-big { font-size: 3.5rem; margin-bottom: 1rem; }
@media (max-width: 600px) {
  h1 {
    font-size: 2.2rem; }
  .alert-box {
    font-size: 1.3rem; padding: 1.2rem; }
}
a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--link-hover);
  text-decoration: underline;
  outline: none;
}

header {
  margin-bottom: 1.2rem;
}

.alert-box {
  margin-bottom: 1rem;
}

.subtitle {
  margin-bottom: 1.2rem;
}

.warning-card,
main > article > section:first-child {
  margin-top: 0;
  padding-top: 0.5rem;   /* Optional: tiny breathing room if it feels too smashed */
}

.warning-card p:first-child,
main article p:first-of-type {
  margin-top: 0.4rem;    /* Fine-tune this value: 0.4rem–0.8rem usually looks good */
}

.scam-heading {
  margin-top: 0;
}

.full-width-scam-banner {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5rem 0;
  border: 3px solid #ff0000;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(255, 0, 0, 0.25);
}
