/* bio-roast.css — SwipeLeft.lol roast tool styles */
:root {
    --flame: #00BFFF;
    --gold: #FFB800;
    --dark: #0D0C0A;
    --card: #161410;
    --border: #2A2620;
    --muted: #6B6460;
    --light: #F5EDE0;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    background: var(--dark);
    color: var(--light);
    font-family: 'DM Sans', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
  }

  /* Noise grain overlay */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.4;
  }

  header {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 720px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 0;
  }

  .logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: var(--light);
  }

  .logo span { color: #00BFFF; }

  .badge {
    background: #00BFFF;
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    box-shadow: 0 0 12px rgba(0,191,255,0.4);
  }

  main {
    max-width: 720px;
    margin: 0 auto;
    padding: 3.5rem 2rem 5rem;
  }

  .hero {
    margin-bottom: 3rem;
  }

  .hero h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3rem, 9vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: 0.03em;
    margin-bottom: 1.1rem;
  }

  .hero h1 em {
    font-style: normal;
    color: #00BFFF;
    display: block;
    text-shadow: 0 0 40px rgba(0,191,255,0.35);
  }

  .hero p {
    color: rgba(255,255,255,0.38);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.65;
    max-width: 460px;
  }

  .hero p strong {
    color: rgba(255,255,255,0.75);
    font-weight: 500;
  }

  .input-section {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1.75rem;
    margin-bottom: 1rem;
    position: relative;
  }

  /* Terminal-style header bar */
  .input-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00BFFF, rgba(0,191,255,0.3), transparent);
    border-radius: 6px 6px 0 0;
  }

  .input-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
  }

  .input-label span {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
  }

  #charCount {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.25);
    font-variant-numeric: tabular-nums;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    transition: color 0.2s;
  }

  #charCount.warning { color: #00BFFF; }

  textarea {
    width: 100%;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 4px;
    outline: none;
    color: rgba(255,255,255,0.9);
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 0.92rem;
    font-weight: 400;
    line-height: 1.75;
    resize: none;
    min-height: 130px;
    padding: 1rem 1.1rem;
    transition: border-color 0.2s, background 0.2s;
    caret-color: #00BFFF;
  }

  textarea:focus {
    border-color: rgba(0,191,255,0.3);
    background: rgba(0,0,0,0.45);
  }

  textarea::placeholder {
    color: rgba(0,255,133,0.35);
    font-style: italic;
  }

  .platform-row {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    align-items: center;
  }

  .platform-row span {
    font-size: 0.65rem;
    color: var(--muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-right: 0.35rem;
    flex-shrink: 0;
  }

 .platform-btn {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: rgba(255,255,255,0.4);
  font-size: 0.76rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.15s;
  letter-spacing: 0.02em;
}

.example-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-top: 0.75rem;
  position: relative;
  z-index: 2;
}

.example-row span {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.example-chip {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.3);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s;
  position: relative;
  z-index: 2;
}

.example-chip:hover {
  border-color: rgba(0,191,255,0.4);
  color: rgba(255,255,255,0.7);
  background: rgba(0,191,255,0.05);
}
  
.level-btn {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: rgba(255,255,255,0.4);
  font-size: 0.76rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.15s;
  letter-spacing: 0.02em;
}

.level-btn:hover {
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.04);
}

.level-btn.active {
  background: #00BFFF;
  border-color: #00BFFF;
  color: white;
  box-shadow: 0 0 14px rgba(0,191,255,0.35);
}

/* Savage level gets extra danger styling when active */
.level-btn[onclick*="savage"].active {
  background: linear-gradient(135deg, #00BFFF, #0090CC);
  border-color: #00BFFF;
  box-shadow: 0 0 20px rgba(0,191,255,0.5), 0 4px 12px rgba(0,191,255,0.3);
  color: white;
}

.level-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.platform-btn:hover {
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.04);
}

.platform-btn.active {
  background: #00BFFF;
  border-color: #00BFFF;
  color: white;
  box-shadow: 0 0 14px rgba(0,191,255,0.3);
}

.roast-btn {
  width: 100%;
  background: #00BFFF;
  color: white;
  border: none;
  font-family: 'Bebas Neue', cursive;
  font-size: 1.7rem;
  letter-spacing: 0.18em;
  padding: 1.2rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.18s ease;
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
  display: block;

  box-shadow:
    0 8px 30px rgba(0,191,255,0.45),
    0 0 0 1px rgba(0,191,255,0.3) inset,
    0 0 60px rgba(0,191,255,0.1);
}

/* Shimmer effect on the button */
.roast-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transition: left 0.5s ease;
}

.roast-btn:hover:not(:disabled)::after {
  left: 150%;
}

.roast-btn:hover:not(:disabled) {
  background: #00CFFF;
  transform: translateY(-2px);

  box-shadow:
    0 14px 40px rgba(0,191,255,0.55),
    0 0 0 1px rgba(0,191,255,0.4) inset,
    0 0 80px rgba(0,191,255,0.15);
}

.roast-btn:active:not(:disabled) {
  transform: translateY(0);
}

.roast-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

  .roast-btn .loading-dots {
    display: none;
  }

  .roast-btn.loading .btn-text { display: none; }
  .roast-btn.loading .loading-dots { display: inline; }

#resultSection {
  display: none;
  margin-top: 2rem;
  animation: slideUp 0.4s ease;
  position: relative;
}

.result-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(0,191,255,0.06);
}
.result-card::after {
  content: "SwipeLeft.lol";
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00FF85;
  pointer-events: none;
}
  .result-header {
  background: #07060A;
  border-left: 4px solid #00FF85;
  border-bottom: 1px solid rgba(0,255,133,0.15);
  padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

/* Green ambient glow behind score */
.result-header::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background: radial-gradient(ellipse at left, rgba(0,255,133,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.result-header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.result-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
  flex-shrink: 0;
}

.score-meta {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 0;
}

.score-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid #00FF85;
  box-shadow: 0 0 20px rgba(0,255,133,0.35), 0 0 40px rgba(0,255,133,0.12), inset 0 0 16px rgba(0,255,133,0.06);
  flex-shrink: 0;
}

.score-number {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.2rem;
  line-height: 1;
  color: white;
  letter-spacing: 0.02em;
}

.score-label {
  font-size: 0.48rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.score-status {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.38rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.92);
}

.score-status.bad {
  background: rgba(0,191,255,0.18);
  border-color: rgba(0,191,255,0.42);
  color: #ffd0c7;
}

.score-status.mid {
  background: rgba(212,255,0,0.18);
  border-color: rgba(212,255,0,0.42);
  color: #ffe08a;
}

.score-status.good {
  background: rgba(0,200,120,0.18);
  border-color: rgba(0,200,120,0.42);
  color: #98ffd3;
}

.score-status.elite {
  background: rgba(120,180,255,0.18);
  border-color: rgba(120,180,255,0.42);
  color: #cfe3ff;
}

.result-title-group h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: white;
}

.result-title-group p {
  font-size: 0.75rem;
  color: #00FF85;
  margin-top: 0.1rem;
  line-height: 1.3;
}

.result-stamp {
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.55rem;
  border-radius: 2px;
}

.result-stamp.bad {
  background: rgba(0,191,255,0.18);
  border-color: rgba(0,191,255,0.45);
  color: #ffb3a6;
}

.result-stamp.mid {
  background: rgba(212,255,0,0.18);
  border-color: rgba(212,255,0,0.45);
  color: #ffd978;
}

.result-stamp.good {
  background: rgba(0,200,120,0.18);
  border-color: rgba(0,200,120,0.45);
  color: #7fffc4;
}

.verdict-badge {
  background: rgba(0,0,0,0.24);
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.38rem 0.75rem;
  border-radius: 3px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.score-status.bad {
  background: rgba(0,191,255,0.18);
  border-color: rgba(0,191,255,0.42);
  color: #ffd0c7;
}

.score-status.mid {
  background: rgba(212,255,0,0.18);
  border-color: rgba(212,255,0,0.42);
  color: #ffe08a;
}

.score-status.good {
  background: rgba(0,200,120,0.18);
  border-color: rgba(0,200,120,0.42);
  color: #98ffd3;
}

.score-status.elite {
  background: rgba(120,180,255,0.18);
  border-color: rgba(120,180,255,0.42);
  color: #cfe3ff;
}

  .result-body {
    padding: 1.5rem;
  }

  .roast-quote {
  font-size: 1.22rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.55;
  color: var(--light);
  padding: 1.35rem 1.25rem;
  background: linear-gradient(180deg, rgba(0,191,255,0.10), rgba(0,191,255,0.04));
  border: 1px solid rgba(0,191,255,0.24);
  border-left: 4px solid #00BFFF;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
  .section-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.75rem;
  }

  .fix-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .fix-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .fix-num {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    background: #00BFFF;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
  }

  .fix-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--light);
  }

  .fix-text strong {
    color: #D4FF00;
    font-weight: 600;
  }

  .divider {
    height: 1px;
    background: var(--border);
    margin: 1.5rem 0;
  }

  .rewrite-section h3 { color: #D4FF00 !important;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    color: #D4FF00;
    margin-bottom: 0.75rem;
  }

  .rewrite-box {
    background: rgba(212,255,0,0.05);
    border: 1px solid rgba(212,255,0,0.2);
    border-radius: 4px;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--light);
    font-weight: 300;
    white-space: pre-wrap;
  }
.card-credit {
  margin-top: 1rem;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-align: right;
}
  .share-caption-box {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  border-radius: 4px;
}
.share-caption-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.share-caption-text {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--light);
  margin-bottom: 0.75rem;
}
  .result-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
.download-mode .result-footer {
  display: none;
}
  .share-hint {
    font-size: 0.75rem;
    color: var(--muted);
  }

  .share-hint strong { color: var(--light); }

  .copy-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--light);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 0.5rem 1rem;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.15s;
  }

  .copy-btn:hover {
    border-color: #D4FF00;
    color: #D4FF00;
  }

  .try-again-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--muted);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.15s;
  }
.share-btn {
  background: #00BFFF;
  border: 1px solid #00BFFF;
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.5rem 1rem;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.15s;
}

.share-btn:hover {
  background: #00CFFF;
  border-color: #00CFFF;
}
  .try-again-btn:hover {
    color: var(--light);
    border-color: var(--muted);
  }

  .error-msg {
    display: none;
    background: rgba(0,191,255,0.1);
    border: 1px solid rgba(0,191,255,0.3);
    border-radius: 4px;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: #ff8070;
    margin-top: 0.75rem;
  }
.loading-msg {
  display: none;
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #D4FF00;
  animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}

.platform-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

textarea:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
  .footer-note {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .footer-note p {
    font-size: 0.75rem;
    color: var(--muted);
  }

  .footer-note a {
    color: #00BFFF;
    text-decoration: none;
  }

  @media (max-width: 480px) {
    main { padding: 2rem 1.25rem 3rem; }
    .result-header { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
    .result-footer { flex-direction: column; align-items: flex-start; }
  }
  /* Existing CSS above */

.card-credit {
  margin-top: 1.25rem;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* Result section glow */
#resultSection::before {
  content: '';
  position: absolute;
  inset: -20px -10px auto -10px;
  height: 220px;
  background: radial-gradient(circle, rgba(0,255,133,0.14) 0%, rgba(0,255,133,0.06) 35%, transparent 70%);
  filter: blur(28px);
  z-index: 0;
  pointer-events: none;
}
.download-mode .result-footer {
  display: none !important;
}

.download-mode .result-card {
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border-color: rgba(255,255,255,0.08);
}

.download-mode .result-card::after {
  color: rgba(255,255,255,0.82);
}

/* Lock icon on paid roast levels — hidden once user has a valid paid session */
.lock-icon {
  font-size: 0.65rem;
  opacity: 0.7;
  vertical-align: middle;
}

/* URL watermark — hidden normally, shown only during html2canvas capture */
.download-mode-url {
  display: none;
  text-align: center;
  font-size: 0.72rem;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  padding: 0.5rem 1.5rem 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ── REDESIGN: Tool hero banner ───────────────────────────────────── */
.tool-hero {
  position: relative;
  background-image: url('assets/images/magnets_landscape_1792x1024.png');
  background-size: cover;
  background-position: center 40%;
  padding-bottom: 0;
}
.tool-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,30,60,0.72) 0%, rgba(13,12,10,0.88) 60%, rgba(13,12,10,1) 100%);
  z-index: 0;
}
.tool-hero header {
  position: relative;
  z-index: 1;
}
.tool-hero-text {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 2rem 3.5rem;
}
.tool-hero-text h1 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(3rem, 9vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
  color: var(--light);
}
.tool-hero-text h1 em {
  font-style: normal;
  color: #00BFFF;
  display: block;
  text-shadow: 0 0 40px rgba(0,191,255,0.45);
}
.tool-hero-text p {
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.65;
  max-width: 460px;
}
.tool-hero-text p strong {
  color: #00FF85;
  font-weight: 600;
}
/* Hide the old in-main hero — content moved to tool-hero-text */
.hero { display: none; }

/* ── REDESIGN: Platform buttons — neon app-branded colors ──────── */
.platform-btn.hinge.active  {
  background: #E82030; border-color: #E82030; color: white;
  text-shadow: 0 0 8px rgba(232,32,48,0.9);
  box-shadow: 0 0 10px #E82030, 0 0 28px rgba(232,32,48,0.5), 0 0 55px rgba(232,32,48,0.2);
}
.platform-btn.tinder.active {
  background: #FF4500; border-color: #FF4500; color: white;
  text-shadow: 0 0 8px rgba(255,69,0,0.9);
  box-shadow: 0 0 10px #FF4500, 0 0 28px rgba(255,69,0,0.5), 0 0 55px rgba(255,69,0,0.2);
}
.platform-btn.bumble.active {
  background: #FFD000; border-color: #FFD000; color: #0a0800;
  text-shadow: 0 0 8px rgba(255,208,0,0.7);
  box-shadow: 0 0 10px #FFD000, 0 0 28px rgba(255,208,0,0.5), 0 0 55px rgba(255,208,0,0.2);
}
.platform-btn.match.active  {
  background: #0099FF; border-color: #0099FF; color: white;
  text-shadow: 0 0 8px rgba(0,153,255,0.9);
  box-shadow: 0 0 10px #0099FF, 0 0 28px rgba(0,153,255,0.5), 0 0 55px rgba(0,153,255,0.2);
}

/* ── REDESIGN: Roast level buttons — true neon ─────────────────── */
.level-btn.level-mild.active   {
  background: #FF00CC;
  border-color: #FF00CC;
  color: white;
  text-shadow: 0 0 8px rgba(255,0,204,0.8);
  box-shadow: 0 0 12px #FF00CC, 0 0 30px rgba(255,0,204,0.5), 0 0 60px rgba(255,0,204,0.2);
}
.level-btn.level-medium.active {
  background: #FF8C00;
  border-color: #FF8C00;
  color: white;
  text-shadow: 0 0 8px rgba(255,140,0,0.8);
  box-shadow: 0 0 12px #FF8C00, 0 0 30px rgba(255,140,0,0.5), 0 0 60px rgba(255,140,0,0.2);
}
.level-btn.level-savage.active {
  background: #FF0033;
  border-color: #FF0033;
  color: white;
  text-shadow: 0 0 8px rgba(255,0,51,0.8);
  box-shadow: 0 0 12px #FF0033, 0 0 30px rgba(255,0,51,0.55), 0 0 70px rgba(255,0,51,0.25);
}

/* ── REDESIGN: Palette overrides — all gray → neon green ────────── */
.section-title { color: #00FF85 !important; }
.input-label span:first-child { color: #00FF85 !important; }
.platform-row span { color: #00FF85 !important; }
.share-caption-label { color: #00FF85 !important; }
.share-hint { color: #00FF85 !important; }
.card-credit { color: rgba(0,255,133,0.5) !important; }
.example-row span { color: #00FF85 !important; }
.example-chip { color: rgba(255,255,255,0.6) !important; border-color: rgba(0,255,133,0.2) !important; }
.example-chip:hover { color: white !important; border-color: rgba(0,255,133,0.5) !important; background: rgba(0,255,133,0.06) !important; }
#charCount { color: #00FF85 !important; }
.try-again-btn { color: rgba(255,255,255,0.65) !important; border-color: rgba(255,255,255,0.15) !important; }
.footer-note p { color: #00FF85 !important; }
.footer-note a { color: #00BFFF !important; }

/* Loading message — eye-catching green while roasting */
.loading-msg { color: #00FF85 !important; font-weight: 600; }

/* Email input placeholder */
#roastEmail::placeholder { color: rgba(0,255,133,0.45); }

/* Score label inside circle */
.score-label { color: #00FF85 !important; }

/* Share hint strong */
.share-hint strong { color: white !important; }

.logo-name { color: #D4FF00; }
.logo-dot { color: #00BFFF; }

.rewrite-note { font-size: 13px; color: #888; font-style: italic; margin-bottom: 10px; }
