/* ── IDLE OVERLAY ── */
#idle-ov { position: fixed; inset: 0; background: rgba(20,18,16,.96); z-index: 9000; display: none; flex-direction: column; align-items: center; justify-content: center; gap: 20px; cursor: pointer; }
#idle-ov.show { display: flex; }
#idle-ov .brand { font-family: var(--S); font-size: 2rem; font-weight: 700; color: #fff; letter-spacing: .06em; }
#idle-ov .brand sup { font-size: .5em; color: var(--gold); }
#idle-ov p { font-size: 1rem; color: rgba(255,255,255,.5); }
#idle-ov .tap-pulse { width: 72px; height: 72px; border-radius: 50%; border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: .7 } 50% { transform: scale(1.08); opacity: 1 } }
#idle-ov .tap-pulse svg { width: 32px; height: 32px; fill: none; stroke: var(--gold); stroke-width: 1.6; }

/* ── SURVEY ── */
.survey-ov { position: fixed; inset: 0; background: rgba(20,18,16,.88); z-index: 800; display: none; align-items: center; justify-content: center; padding: 24px; }
.survey-ov.show { display: flex; }
.survey-box { background: var(--white); border-radius: 18px; width: 100%; padding: 32px 26px; text-align: center; }
.survey-title { font-family: var(--S); font-size: 1.7rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.survey-sub { font-size: .88rem; color: var(--muted); margin-bottom: 24px; }
.stars { display: flex; justify-content: center; gap: 14px; margin-bottom: 24px; }
.star { font-size: 2.8rem; cursor: pointer; transition: .18s; filter: grayscale(1); opacity: .35; }
.star.on { filter: grayscale(0); opacity: 1; }
.star:active { transform: scale(1.15); }
.survey-submit { width: 100%; padding: 15px; background: var(--dark); border: none; border-radius: var(--r); color: #fff; font-family: var(--F); font-size: .97rem; font-weight: 600; cursor: pointer; margin-bottom: 10px; }
.survey-skip { width: 100%; padding: 12px; background: transparent; border: none; font-family: var(--F); font-size: .86rem; color: var(--muted); cursor: pointer; }

/* ── MODALS ── */
.mov { position: fixed; inset: 0; background: rgba(0,0,0,.52); z-index: 500; display: none; align-items: flex-end; }
.mov.show { display: flex; }
.mbox { background: var(--white); border-radius: 20px 20px 0 0; width: 100%; padding: 26px 24px 36px; animation: su .28s ease; max-height: 85vh; overflow-y: auto; }
@keyframes su { from { transform: translateY(100%) } to { transform: translateY(0) } }
.mt { font-family: var(--S); font-size: 1.45rem; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.ms { font-size: .83rem; color: var(--muted); margin-bottom: 18px; }
.mcl { float: right; background: none; border: none; font-size: 1.3rem; color: var(--muted); cursor: pointer; margin-top: -2px; padding: 4px; }
.mbd { width: 100%; padding: 14px; background: var(--dark); border: none; border-radius: var(--r); color: #fff; font-family: var(--F); font-size: .94rem; font-weight: 600; cursor: pointer; margin-bottom: 9px; min-height: 50px; }
.mol { width: 100%; padding: 14px; background: transparent; border: 1.5px solid var(--border); border-radius: var(--r); font-family: var(--F); font-size: .94rem; color: var(--muted); cursor: pointer; min-height: 50px; }
.cfg-lbl { font-size: .7rem; font-weight: 700; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; display: block; margin-bottom: 5px; }
.cfg-inp { width: 100%; padding: 13px 14px; border: 1.5px solid var(--border); border-radius: var(--r); font-family: var(--F); font-size: .9rem; outline: none; margin-bottom: 12px; background: var(--bg3); min-height: 48px; }
.cfg-inp:focus { border-color: var(--gold); }
.cfg-sv { width: 100%; padding: 14px; background: var(--dark); border: none; border-radius: var(--r); color: #fff; font-family: var(--F); font-size: .94rem; font-weight: 600; cursor: pointer; min-height: 50px; }
.cfg-section { font-size: .72rem; font-weight: 700; color: var(--gold); letter-spacing: .06em; text-transform: uppercase; margin: 16px 0 10px; padding-top: 14px; border-top: 1px solid var(--border); }
