/* ─────────────────────────────────────────────────────────────
   WordWeft v2 · polish layer
   Detail-level visual refinements on top of style.css after the
   token swap: gradients, glows, eyebrow headers, podium depth,
   report-card surface treatment, hero tightening.
   ───────────────────────────────────────────────────────────── */

/* ── HOME HERO ─────────────────────────────────────────────── */
.home-container {
  background:
    radial-gradient(ellipse 600px 420px at 50% -10%, rgba(154,135,242,0.20), transparent 60%),
    linear-gradient(180deg, var(--ww-bg-0) 0%, var(--ww-bg-1) 60%, var(--ww-bg-2) 100%);
}
.logo-section { margin-top: 18px; margin-bottom: 10px; }
.logo-section h1 {
  font-family: var(--ww-display);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 12px;
}
.logo-img {
  width: 112px;
  height: 112px;
  border-radius: 28px;
  filter: drop-shadow(0 8px 28px rgba(124,111,232,0.45));
}
.tagline {
  font-family: var(--ww-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ww-ink-2);
  margin-top: 10px;
}

/* User bar — tighter, with violet XP fill */
.user-bar {
  background: var(--ww-bg-2);
  border: 1px solid var(--ww-hair);
  border-radius: 16px;
  box-shadow: var(--ww-shadow-card);
}
.user-name { font-family: var(--ww-display); font-weight: 700; }
.user-level {
  font-family: var(--ww-mono);
  font-size: 11px;
  color: var(--ww-violet-200);
  letter-spacing: 0.04em;
}
.xp-bar { background: linear-gradient(90deg, var(--ww-violet-400), var(--ww-violet-300)); }
.xp-text { font-family: var(--ww-mono); letter-spacing: 0.04em; }

/* Streak pill: rounder, glow */
.streak-banner {
  background: color-mix(in oklab, var(--ww-gold) 14%, transparent);
  border: 1px solid color-mix(in oklab, var(--ww-gold) 35%, transparent);
  border-radius: 100px;
  padding: 7px 16px;
}
.streak-count {
  font-family: var(--ww-display);
  font-weight: 800;
  color: var(--ww-gold);
}
.streak-label { font-family: var(--ww-body); color: var(--ww-gold-soft); }

/* Daily Challenge: violet-tint card */
.daily-challenge {
  background:
    linear-gradient(160deg, color-mix(in oklab, var(--ww-violet-400) 16%, var(--ww-bg-1)), var(--ww-bg-1));
  border: 1px solid color-mix(in oklab, var(--ww-violet-400) 24%, transparent);
  box-shadow: var(--ww-shadow-card);
}
.challenge-title {
  font-family: var(--ww-body);
  font-weight: 700;
  color: var(--ww-violet-200);
  letter-spacing: 0.14em;
}
.challenge-reward {
  font-family: var(--ww-display);
  font-weight: 700;
  color: var(--ww-gold);
}

/* ── EYEBROW SECTION TITLES ────────────────────────────────── */
.result-section-title,
.result-story-header h4 {
  font-family: var(--ww-body);
  font-weight: 700;
  font-size: 11px;
  color: var(--ww-violet-200);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.result-section-card,
.result-story-card,
.result-summary-card {
  background: var(--ww-bg-1);
  border: 1px solid var(--ww-hair);
  border-radius: 18px;
  box-shadow: var(--ww-shadow-card);
}

/* In-story prose — serif italic, lush */
.result-story-text {
  font-family: var(--ww-serif);
  font-style: italic;
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ww-ink-0);
}

/* ── SCORE BARS: gradient + glow ───────────────────────────── */
.score-bar {
  height: 8px;
  background: var(--ww-bg-3);
  border-radius: 8px;
  overflow: visible;
  position: relative;
}
.score-fill {
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(90deg,
    color-mix(in oklab, currentColor 100%, transparent),
    color-mix(in oklab, currentColor 75%, transparent));
  box-shadow: 0 0 12px color-mix(in oklab, currentColor 50%, transparent);
}
/* Per-metric colors applied via existing .score-coherence/.score-creativity/… classes */
.score-coherence  { background: linear-gradient(90deg, #9A87F2, rgba(154,135,242,0.75)); box-shadow: 0 0 12px rgba(154,135,242,0.5); }
.score-creativity { background: linear-gradient(90deg, #B78AE8, rgba(183,138,232,0.75)); box-shadow: 0 0 12px rgba(183,138,232,0.5); }
.score-entertainment { background: linear-gradient(90deg, #E8A63E, rgba(232,166,62,0.75));  box-shadow: 0 0 12px rgba(232,166,62,0.5); }
.score-vocabulary { background: linear-gradient(90deg, #4AC29A, rgba(74,194,154,0.75));  box-shadow: 0 0 12px rgba(74,194,154,0.5); }
.score-flow       { background: linear-gradient(90deg, #6BB8E8, rgba(107,184,232,0.75)); box-shadow: 0 0 12px rgba(107,184,232,0.5); }

.score-value {
  font-family: var(--ww-display);
  font-weight: 800;
  color: var(--ww-ink-0);
}

/* ── PODIUM: gradient columns + colored shadow ─────────────── */
.podium-bar {
  width: 88px;
  border-radius: 10px 10px 4px 4px;
  border: 1px solid rgba(255,255,255,0.10);
  background-image: linear-gradient(180deg,
    rgba(255,255,255,0.15), rgba(255,255,255,0) 50%);
  background-blend-mode: overlay;
  position: relative;
}
.podium-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 6px 22px currentColor;
  opacity: 0.45;
  pointer-events: none;
}
.podium-rank {
  font-family: var(--ww-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
  color: #fff;
}
.podium-avatar { font-size: 32px; margin-bottom: 6px; }
.podium-name   { font-family: var(--ww-display); font-weight: 700; }
.podium-score  { font-family: var(--ww-display); font-weight: 800; color: var(--ww-ink-1); }

/* ── REPORT CARDS ─────────────────────────────────────────── */
.report-card {
  background: var(--ww-bg-2);
  border: 1px solid var(--ww-hair);
  border-radius: 14px;
  box-shadow: var(--ww-shadow-card);
}
.report-impact {
  font-family: var(--ww-display);
  font-weight: 800;
  background: color-mix(in oklab, var(--ww-violet-400) 18%, transparent);
  color: var(--ww-violet-200) !important;
  border: 1px solid color-mix(in oklab, var(--ww-violet-400) 36%, transparent);
}

/* ── LEADERBOARD ──────────────────────────────────────────── */
.lb-entry {
  background: var(--ww-bg-1);
  border: 1px solid var(--ww-hair);
  border-radius: 14px;
  box-shadow: var(--ww-shadow-card);
}
.lb-rank { font-family: var(--ww-mono); letter-spacing: 0.04em; }
.lb-rank.silver { color: #C0C0D5; }
.lb-rank.bronze { color: #CD7F32; }
.lb-name { font-family: var(--ww-display); }
.lb-level { font-family: var(--ww-mono); color: var(--ww-violet-200); }
.lb-stats { font-family: var(--ww-mono); }
.lb-xp { font-family: var(--ww-display); font-weight: 800; color: var(--ww-violet-300); }
.lb-xp-label { font-family: var(--ww-mono); color: var(--ww-violet-200); }
.lb-entry.me {
  background: linear-gradient(160deg,
    color-mix(in oklab, var(--ww-violet-400) 14%, var(--ww-bg-1)),
    var(--ww-bg-1));
  border: 1.5px solid var(--ww-violet-400);
  box-shadow: var(--ww-shadow-violet);
}

/* ── HISTORY ──────────────────────────────────────────────── */
.history-grade-badge {
  font-family: var(--ww-display);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ── ACHIEVEMENTS ─────────────────────────────────────────── */
.achievement-card {
  border: 1px solid var(--ww-hair);
  border-radius: 14px;
}
.achievement-card .ach-icon {
  background: color-mix(in oklab, var(--ww-violet-400) 18%, transparent);
  border-radius: 12px;
}
.achievement-card.locked { background: var(--ww-bg-1); opacity: 0.6; }
.achievement-card.locked .ach-icon {
  background: var(--ww-bg-3);
}
.achievement-card .ach-name { font-family: var(--ww-display); font-weight: 700; }
.achievement-card .ach-check {
  width: 18px; height: 18px;
  background: var(--ww-emerald);
  color: #0A2518 !important;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

/* ── STATS GRID (Profile) ─────────────────────────────────── */
.stat-card {
  background: var(--ww-bg-1);
  border: 1px solid var(--ww-hair);
  border-radius: 14px;
  box-shadow: var(--ww-shadow-card);
}
.stat-value {
  font-family: var(--ww-display);
  font-weight: 800;
  color: var(--ww-violet-300);
  letter-spacing: -0.01em;
}
.stat-label { font-family: var(--ww-body); color: var(--ww-ink-2); }

/* Profile avatar ring */
.profile-avatar {
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--ww-violet-400) 20%, transparent),
              0 0 0 5px color-mix(in oklab, var(--ww-violet-400) 35%, transparent);
}

/* ── GAME / ACTIVE STORY ──────────────────────────────────── */
.game-room-code,
.game-mode-label {
  font-family: var(--ww-mono);
  letter-spacing: 0.12em;
}
.story-text {
  font-family: var(--ww-serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ww-ink-0);
}
.timer-display {
  font-family: var(--ww-mono);
  font-weight: 700;
}

/* ── LOBBY ────────────────────────────────────────────────── */
.room-code-display {
  background: linear-gradient(160deg,
    color-mix(in oklab, var(--ww-violet-400) 16%, var(--ww-bg-1)),
    var(--ww-bg-1));
  border: 1px solid color-mix(in oklab, var(--ww-violet-400) 24%, transparent);
  border-radius: 16px;
  box-shadow: var(--ww-shadow-card);
}
.room-code-value {
  font-family: var(--ww-mono);
  font-weight: 700;
  letter-spacing: 0.18em;
}
.room-code-label {
  font-family: var(--ww-body);
  font-weight: 700;
  color: var(--ww-violet-200);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ── YARN BALL MASCOT ─────────────────────────────────────── */
.ww-yarnball {
  width: 64px;
  height: 64px;
  display: inline-block;
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 22%, #F5E6FF 0%, #8A7FAE 60%, #3D2D6B 100%);
  box-shadow:
    inset 0 -12px 22px rgba(0,0,0,0.35),
    0 8px 24px rgba(61,45,107,0.45);
  position: relative;
  overflow: hidden;
}
.ww-yarnball::before,
.ww-yarnball::after {
  content: '';
  position: absolute;
  inset: 18% 8%;
  border: 2px solid transparent;
  border-radius: 50%;
  border-top-color: #E85A8A;
  border-bottom-color: #4AC29A;
  transform: rotate(18deg);
}
.ww-yarnball::after {
  inset: 12% 14%;
  border-top-color: #E8A63E;
  border-bottom-color: #6BB8E8;
  transform: rotate(-28deg);
}

/* ── RESULT HERO (story-grade-section) ───────────────────── */
.story-grade-section {
  text-align: center;
  margin-bottom: 18px;
}
.result-grade {
  font-family: var(--ww-display);
  font-weight: 800;
  font-size: 92px;
  letter-spacing: -0.04em;
  line-height: 1;
  text-shadow: 0 8px 40px color-mix(in oklab, currentColor 40%, transparent);
}
.result-genre {
  font-family: var(--ww-display);
  font-weight: 600;
  color: var(--ww-ink-1);
  margin-top: 8px;
}
.result-tags {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.result-tags .tag,
.result-tags span {
  font-family: var(--ww-body);
  font-weight: 600;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 100px;
  background: color-mix(in oklab, var(--ww-violet-300) 14%, transparent);
  color: var(--ww-violet-200);
  border: 1px solid color-mix(in oklab, var(--ww-violet-300) 35%, transparent);
}

/* ── LIGHT MODE tweaks for polish surfaces ────────────────── */
body.light-theme .score-bar { background: color-mix(in oklab, var(--ww-ink-3) 30%, transparent); }
body.light-theme .lb-entry  { box-shadow: 0 2px 10px rgba(61,45,107,0.08); }
body.light-theme .achievement-card { box-shadow: 0 2px 10px rgba(61,45,107,0.06); }
body.light-theme .result-grade { text-shadow: 0 4px 18px color-mix(in oklab, currentColor 28%, transparent); }
body.light-theme .podium-rank  { text-shadow: 0 1px 2px rgba(0,0,0,0.2); }

/* ── Top icon bar on home (feels airier) ──────────────────── */
.top-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ww-bg-2);
  border: 1px solid var(--ww-hair-2);
  color: var(--ww-ink-1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  padding: 0;
  opacity: 1;
}
.top-icon-btn:hover {
  background: color-mix(in oklab, var(--ww-violet-400) 18%, var(--ww-bg-2));
  color: var(--ww-violet-200);
}

/* ── Primary button depth ─────────────────────────────────── */
.btn-primary {
  background: var(--ww-violet-400);
  box-shadow: 0 2px 0 var(--ww-violet-500), 0 8px 22px var(--ww-violet-glow);
}
.btn-primary:hover:not(:disabled) { filter: brightness(1.05); }
.btn-secondary {
  border-color: var(--ww-violet-400);
  color: var(--ww-violet-200);
}
.btn-green {
  background: var(--ww-emerald);
  color: #0A2518;
  box-shadow: 0 2px 0 #2F8A6E, 0 8px 22px rgba(74,194,154,0.30);
}

/* ── Input focus ring ─────────────────────────────────────── */
.word-input:focus,
.input-field:focus,
.room-code-input:focus {
  border-color: var(--ww-violet-400) !important;
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--ww-violet-400) 30%, transparent);
  outline: none;
}

/* ── Moderation surfaces (merged from fPgSt) ──────────────── */
.blocked-users-list .row {
  background: var(--ww-bg-2);
  border: 1px solid var(--ww-hair);
  color: var(--ww-ink-0);
  font-family: var(--ww-body);
  border-radius: 10px;
}
.blocked-users-list .row button {
  color: var(--ww-coral);
  font-family: var(--ww-display);
  font-weight: 700;
}
#blocked-users-heading {
  font-family: var(--ww-body);
  font-weight: 700;
  color: var(--ww-violet-200);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Report/block action buttons inside player menus */
.btn-report,
.btn-block {
  font-family: var(--ww-display);
  font-weight: 700;
  color: var(--ww-coral);
  background: color-mix(in oklab, var(--ww-coral) 12%, transparent);
  border: 1px solid color-mix(in oklab, var(--ww-coral) 30%, transparent);
  border-radius: 10px;
}

/* ── Public lobby meta → chip stack ─────────────────────────── */
.public-room-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.public-room-chip {
  font-family: var(--ww-body);
  font-weight: 600;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid transparent;
  white-space: nowrap;
}
.public-room-chip.chip-mode {
  color: var(--ww-violet-200);
  background: color-mix(in oklab, var(--ww-violet-400) 14%, transparent);
  border-color: color-mix(in oklab, var(--ww-violet-400) 30%, transparent);
}
.public-room-chip.chip-starter {
  color: var(--ww-ink-2);
  background: color-mix(in oklab, var(--ww-ink-2) 14%, transparent);
  border-color: color-mix(in oklab, var(--ww-ink-2) 30%, transparent);
}
.public-room-chip.chip-timer {
  color: var(--ww-gold);
  background: color-mix(in oklab, var(--ww-gold) 14%, transparent);
  border-color: color-mix(in oklab, var(--ww-gold) 35%, transparent);
}
.public-room-chip.chip-objectives {
  color: var(--ww-emerald);
  background: color-mix(in oklab, var(--ww-emerald) 14%, transparent);
  border-color: color-mix(in oklab, var(--ww-emerald) 35%, transparent);
}

/* ── Blinking cursor at story end on my turn ───────────────── */
.story-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  vertical-align: middle;
  margin-left: 3px;
  background: var(--ww-violet-400);
  animation: ww-cursor-blink 1s steps(2, start) infinite;
}
@keyframes ww-cursor-blink { 50% { opacity: 0; } }

/* ── Tutorial dots → v2 expanding pill ──────────────────────── */
.tutorial-dots { justify-content: center; }
.tutorial-dot {
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: var(--ww-bg-3);
  transition: width 200ms, background 200ms;
}
.tutorial-dot.active {
  width: 24px;
  background: var(--ww-violet-400);
}

/* ── Moderation ────────────────────────────────────────────── */
.story-word-redacted {
  opacity: 0.6;
  text-decoration: line-through;
  text-decoration-color: rgba(251,243,231,0.4);
}
.moderation-menu {
  position: fixed;
  background: var(--ww-bg-2);
  border: 1px solid var(--ww-hair-2);
  border-radius: 12px;
  padding: 8px;
  min-width: 200px;
  box-shadow: var(--ww-shadow-raised);
  z-index: 1000;
}
.moderation-menu .mm-header {
  font-family: var(--ww-display);
  font-weight: 800;
  color: var(--ww-ink-0);
  padding: 6px 8px 10px;
  border-bottom: 1px solid var(--ww-hair);
  margin-bottom: 4px;
}
.moderation-menu .mm-action {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  margin: 2px 0;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: var(--ww-ink-0);
  font-family: var(--ww-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.moderation-menu .mm-action:hover { background: var(--ww-hair); }
.moderation-menu .mm-block  { color: var(--ww-coral); }
.moderation-menu .mm-report { color: var(--ww-gold); }
.moderation-menu .mm-cancel { color: var(--ww-ink-2); }

/* Styled report dialog + post-submit confirmation card. Mirrors the
 * Android ReportDialog + suspension card chrome so the experience
 * reads the same on both platforms. */
/* User-facing warning modal — fired on the next launch after an admin
 * uses the "Warn" action on a target. Blocks the rest of the UI until
 * the user acknowledges. */
.warning-modal {
  position: fixed;
  inset: 0;
  background: rgba(15,11,46,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  overflow-y: auto;
  font-family: var(--ww-body, -apple-system, system-ui, sans-serif);
}
.warning-modal .warning-card {
  max-width: 480px;
  width: 100%;
  background: #291847;
  border: 1px solid rgba(232,179,76,0.55);
  border-radius: 18px;
  padding: 28px 26px;
  text-align: center;
  color: #EEE6FF;
}
.warning-modal .warning-icon { font-size: 48px; margin-bottom: 8px; }
.warning-modal .warning-title { margin: 0 0 8px; font-size: 22px; color: #FFE6B8; font-weight: 800; }
.warning-modal .warning-sub { margin: 0 0 18px; font-size: 13px; color: #C7B8E8; line-height: 1.55; }
.warning-modal .warning-row {
  background: rgba(232,179,76,0.10);
  border: 1px solid rgba(232,179,76,0.32);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 10px;
  text-align: left;
}
.warning-modal .warning-row-ts { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11px; color: #8D7FAE; margin-bottom: 4px; }
.warning-modal .warning-row-text { font-size: 13px; color: #FFE6B8; line-height: 1.5; white-space: pre-wrap; word-break: break-word; }
.warning-modal .warning-ack {
  margin-top: 8px;
  background: #E8B34C;
  color: #2A1B22;
  border: none;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
}
.warning-modal .warning-ack:hover { filter: brightness(1.08); }

.moderation-modal {
  position: fixed;
  inset: 0;
  background: rgba(8,4,20,0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}
.moderation-modal .mmod-card {
  background: var(--ww-bg-2);
  border: 1px solid var(--ww-hair-2);
  border-radius: 16px;
  padding: 22px 22px 18px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--ww-shadow-raised);
}
.moderation-modal .mmod-title {
  margin: 0 0 6px;
  font-family: var(--ww-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--ww-ink-0);
}
.moderation-modal .mmod-sub {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--ww-ink-2);
  line-height: 1.45;
}
.moderation-modal .mmod-form { display: flex; flex-direction: column; gap: 8px; }
.moderation-modal .mmod-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--ww-ink-1);
  border: 1px solid transparent;
}
.moderation-modal .mmod-radio:has(input:checked) {
  background: rgba(124,111,232,0.12);
  border-color: rgba(124,111,232,0.4);
  color: var(--ww-ink-0);
}
.moderation-modal .mmod-radio input { accent-color: #7C6FE8; }
.moderation-modal .mmod-details {
  margin-top: 6px;
  width: 100%;
  background: var(--ww-bg-0);
  color: var(--ww-ink-0);
  border: 1px solid var(--ww-hair-2);
  border-radius: 10px;
  padding: 8px 10px;
  font-family: var(--ww-body);
  font-size: 13px;
  resize: vertical;
}
.moderation-modal .mmod-details-counter {
  margin-top: 4px;
  font-size: 11px;
  color: var(--ww-ink-2);
  text-align: right;
}
.moderation-modal .mmod-details-counter.ok {
  color: #4AC29A;
}
.moderation-modal .mmod-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  filter: none;
}
.moderation-modal .mmod-details:focus {
  outline: none;
  border-color: rgba(124,111,232,0.6);
}
.moderation-modal .mmod-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 14px;
}
.moderation-modal .mmod-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  font-family: var(--ww-body);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.moderation-modal .mmod-cancel,
.moderation-modal .mmod-done {
  background: transparent;
  color: var(--ww-ink-2);
  border: 1px solid var(--ww-hair-2) !important;
}
.moderation-modal .mmod-cancel:hover,
.moderation-modal .mmod-done:hover { color: var(--ww-ink-0); background: var(--ww-hair); }
.moderation-modal .mmod-submit { background: var(--ww-coral); color: #FFF; }
.moderation-modal .mmod-submit:hover { filter: brightness(1.08); }
.moderation-modal .mmod-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.moderation-modal .mmod-block-too {
  background: rgba(232,111,90,0.18);
  color: var(--ww-coral);
  border: 1px solid rgba(232,111,90,0.4) !important;
}
.moderation-modal .mmod-block-too:hover { background: rgba(232,111,90,0.30); }

/* Player-picker modal opened from the in-game ⚠️ button */
.moderation-modal .mmod-pick-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  max-height: 50vh;
  overflow-y: auto;
}
.moderation-modal .mmod-pick-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(124,111,232,0.08);
  border: 1px solid rgba(238,230,255,0.10);
  border-radius: 10px;
}
.moderation-modal .mmod-pick-name {
  color: var(--ww-ink-0);
  font-weight: 600;
  font-size: 14px;
}
.moderation-modal .mmod-pick-actions {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.moderation-modal .mmod-pick-action {
  background: transparent;
  border: 1px solid rgba(238,230,255,0.22);
  color: var(--ww-ink-1);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  font-family: inherit;
}
.moderation-modal .mmod-pick-block {
  color: var(--ww-coral);
  border-color: rgba(232,111,90,0.4);
}
.moderation-modal .mmod-pick-block:hover { background: rgba(232,111,90,0.18); }
.moderation-modal .mmod-pick-unblock {
  color: #4AC29A;
  border-color: rgba(74,194,154,0.4);
}
.moderation-modal .mmod-pick-unblock:hover { background: rgba(74,194,154,0.15); }
.moderation-modal .mmod-pick-report:hover { background: rgba(124,111,232,0.18); }
.moderation-modal .mmod-check {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(76,194,154,0.18);
  color: #4AC29A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  margin: 0 auto 12px;
}
