/* Wheel of Names — tool-specific styles (loaded after /assets/base.css) */
.wn-stage { display: grid; grid-template-columns: 280px 1fr; gap: 24px; align-items: start; }
.wn-label { font-size: .82rem; font-weight: 600; color: var(--muted); display: block; margin-bottom: 8px; }
.wn-names { width: 100%; min-height: 300px; resize: vertical; background: var(--bg-soft); color: var(--text);
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 14px; font-size: .95rem; line-height: 1.7; font-family: inherit; }
.wn-names:focus { outline: none; border-color: var(--accent); }
.wn-opts { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; color: var(--muted); font-size: .88rem; }
.wn-opts label { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.wn-opts input { width: 16px; height: 16px; accent-color: var(--accent); }
.wn-count { color: var(--muted-2); font-size: .82rem; margin: 12px 0 0; }

.wn-main { display: flex; flex-direction: column; align-items: center; }
.wn-wheelwrap { position: relative; width: 100%; max-width: 460px; aspect-ratio: 1; }
#wnWheel { width: 100%; height: 100%; display: block; }
.wn-pointer { position: absolute; top: -2px; left: 50%; transform: translateX(-50%); width: 0; height: 0;
  border-left: 16px solid transparent; border-right: 16px solid transparent; border-top: 26px solid var(--accent);
  filter: drop-shadow(0 3px 4px rgba(0,0,0,.5)); z-index: 3; }
.wn-spin { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 86px; height: 86px;
  border-radius: 50%; border: 5px solid var(--bg); background: var(--accent-grad); color: #0b0e1c; font-weight: 800;
  font-size: 1rem; letter-spacing: .04em; cursor: pointer; z-index: 2; box-shadow: 0 8px 22px -8px rgba(0,0,0,.6);
  transition: transform .12s, filter .15s; }
.wn-spin:hover { filter: brightness(1.06); }
.wn-spin:active { transform: translate(-50%,-50%) scale(.95); }
.wn-spin:disabled { opacity: .6; cursor: default; }

.wn-winner { margin-top: 20px; text-align: center; font-size: 1.4rem; font-weight: 800; padding: 14px 20px;
  background: rgba(68,211,155,.1); border: 1px solid rgba(68,211,155,.4); border-radius: var(--radius-sm); width: 100%; max-width: 460px; }
.wn-winner b { color: var(--accent-2); }
.wn-winner .wn-again { display: inline-flex; gap: 10px; margin-top: 12px; justify-content: center; }
.wn-winner .btn { font-size: .85rem; padding: 8px 14px; }

@media (max-width: 760px) { .wn-stage { grid-template-columns: 1fr; } }
