/* ── Modal overlay ── */
.mov { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,.5); align-items: center; justify-content: center; z-index: 200 }
.mov.open { display: flex }
.mbox { background: var(--w); border-radius: 12px; padding: 22px 22px 18px; width: 100%; max-width: 350px; position: relative; border: 1px solid var(--b); margin: 16px }
.mc { position: absolute; top: 10px; right: 12px; background: none; border: none; cursor: pointer; color: var(--i4); font-size: 1rem; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center }
.mc:hover { color: var(--ink) }
.mt { font-family: var(--fd); font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: 3px }
.ms { font-size: .72rem; color: var(--i4); margin-bottom: 15px }
.mta { width: 100%; border: none; outline: none; font-size: .83rem; color: var(--ink); resize: none; min-height: 58px; background: var(--w); padding: 8px 0; line-height: 1.6 }
.mta::placeholder { color: var(--i4) }
.mfoot { display: flex; align-items: center; justify-content: space-between; padding-top: 9px; border-top: 1px solid var(--bs); margin-top: 6px }

/* ── Anonymous toggle ── */
.atog { display: flex; align-items: center; gap: 6px; cursor: pointer; user-select: none }
.asw { width: 26px; height: 14px; border-radius: 99px; background: var(--b); position: relative; transition: background .2s; flex-shrink: 0 }
.asw::after { content: ''; position: absolute; top: 2px; left: 2px; width: 10px; height: 10px; border-radius: 50%; background: var(--w); transition: left .2s }
.atog input { display: none }
.atog input:checked + .asw { background: var(--a) }
.atog input:checked + .asw::after { left: 14px }
.albl { font-size: .64rem; color: var(--i3) }

/* ── Modal buttons ── */
.sbtn { padding: 6px 15px; background: var(--a); color: #fff; border: none; border-radius: 99px; font-size: .71rem; font-weight: 600; cursor: pointer }
.sbtn:hover { background: var(--ah) }
.asub { width: 100%; padding: 8px 0; background: var(--ink); color: var(--bg); border: none; border-radius: 99px; font-size: .82rem; font-weight: 600; cursor: pointer; margin-top: 2px }
.asub:hover { background: var(--i2) }
.adiv { display: flex; align-items: center; gap: 8px; margin: 10px 0; color: var(--i4); font-size: .7rem }
.adiv::before, .adiv::after { content: ''; flex: 1; height: 1px; background: var(--b) }
.aalt { width: 100%; padding: 7px 0; background: none; color: var(--i2); border: 1.5px solid var(--b); border-radius: 99px; font-size: .79rem; cursor: pointer }
.aalt:hover { border-color: var(--i4) }
.aswtch { text-align: center; font-size: .73rem; color: var(--i4); margin-top: 10px }
.aswtch span { color: var(--a); font-weight: 500; cursor: pointer }
.fchk { display: flex; align-items: center; gap: 6px; cursor: pointer; font-size: .75rem; color: var(--i3); margin-bottom: 10px }
.fchk input { accent-color: var(--a) }
