:root{
  --bg:#f5f1ff;
  --bg-warm:#fff7e8;
  --paper:rgba(255,255,255,.91);
  --paper-solid:#ffffff;
  --ink:#253052;
  --muted:#6f7691;
  --line:#e6e3f0;
  --purple:#6d5ce8;
  --purple-dark:#5141c3;
  --purple-soft:#eeeaff;
  --mint:#4fc5aa;
  --mint-soft:#e6f8f3;
  --coral:#ff7f73;
  --coral-soft:#fff0ee;
  --yellow:#ffc857;
  --yellow-soft:#fff6dc;
  --blue:#4e8fe8;
  --good:#2f9c78;
  --good-soft:#e5f7f0;
  --bad:#d95867;
  --bad-soft:#ffedf0;
  --shadow:0 28px 70px rgba(63,54,124,.14),0 8px 24px rgba(54,48,90,.07);
  --shadow-sm:0 10px 28px rgba(63,54,124,.10);
  --radius-xl:38px;
  --radius-lg:28px;
  --radius-md:20px;
  --radius-sm:14px;
}

*{box-sizing:border-box}
html,body{margin:0;min-height:100%;background:var(--bg);color:var(--ink)}
body{direction:rtl;font-family:"Heebo",Arial,sans-serif;overflow-x:hidden;background:
  radial-gradient(circle at 8% 6%,rgba(255,200,87,.22),transparent 28%),
  radial-gradient(circle at 88% 10%,rgba(79,197,170,.16),transparent 27%),
  linear-gradient(145deg,#f8f4ff 0%,#f5f2ff 45%,#fff8ec 100%)}
body:before{content:"";position:fixed;inset:0;pointer-events:none;opacity:.34;background-image:radial-gradient(rgba(109,92,232,.16) 1.3px,transparent 1.3px);background-size:24px 24px;mask-image:linear-gradient(to bottom,black,transparent 72%)}
button,input{font:inherit}
button{cursor:pointer}
button:disabled{cursor:default;opacity:.55}
a{color:inherit}
.hidden{display:none!important}

.ambient{position:fixed;border-radius:999px;filter:blur(2px);pointer-events:none;opacity:.7;z-index:0}
.ambient-a{width:220px;height:220px;background:rgba(255,127,115,.12);right:-55px;top:31vh}
.ambient-b{width:170px;height:170px;background:rgba(79,197,170,.13);left:2vw;bottom:5vh}
.ambient-c{width:110px;height:110px;background:rgba(255,200,87,.18);left:18vw;top:14vh}

.app-shell{min-height:100vh;display:flex;flex-direction:column;position:relative;z-index:1}
.hud{min-height:96px;display:grid;grid-template-columns:minmax(245px,1fr) auto minmax(410px,1.55fr);gap:20px;align-items:center;padding:16px 24px;background:rgba(255,255,255,.82);backdrop-filter:blur(16px);border-bottom:1px solid rgba(223,218,239,.78);position:sticky;top:0;z-index:20;box-shadow:0 7px 24px rgba(71,63,109,.045)}
.hud-brand{display:flex;align-items:center;gap:13px;min-width:0}
.brand-symbol{width:54px;height:54px;display:grid;place-items:center;border-radius:18px;background:linear-gradient(145deg,var(--purple),#8c7ff3);box-shadow:0 9px 22px rgba(109,92,232,.25);color:white;flex:0 0 auto}
.brand-symbol svg{width:30px;height:30px}
.brand-copy{display:flex;flex-direction:column;min-width:0}
.brand-overline{font-size:12px;color:var(--purple);font-weight:800;letter-spacing:.02em}
.brand-copy strong{font-family:"Rubik","Heebo",sans-serif;font-size:clamp(18px,1.8vw,27px);line-height:1.1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.hud-center{display:grid;place-items:center}
.mission-pill{padding:10px 17px;border-radius:999px;background:var(--purple-soft);color:var(--purple-dark);font-family:"Rubik","Heebo",sans-serif;font-weight:800;font-size:15px;white-space:nowrap;border:1px solid #ddd6ff}
.hud-status{display:flex;justify-content:flex-start;gap:10px;min-width:0}
.status-card{min-height:62px;padding:9px 13px;display:flex;align-items:center;gap:10px;border:1px solid var(--line);border-radius:20px;background:rgba(255,255,255,.86);box-shadow:0 5px 18px rgba(65,58,100,.05)}
.status-icon{width:38px;height:38px;display:grid;place-items:center;border-radius:13px;background:#f8f6ff;color:var(--purple);flex:0 0 auto}
.status-icon svg{width:22px;height:22px}
.status-title{font-size:11px;color:var(--muted);font-weight:800;display:block;margin-bottom:3px}
.code-slots{display:flex;gap:6px;direction:ltr}
.code-slot{width:32px;height:32px;border-radius:10px;border:2px solid #d9d4e8;background:#fbfaff;display:grid;place-items:center;font-family:"Rubik",sans-serif;font-size:18px;font-weight:900;color:#9b96ad;transition:all .35s cubic-bezier(.2,.8,.2,1)}
.code-slot.filled{border-color:var(--purple);background:var(--purple);color:white;transform:translateY(-1px);box-shadow:0 6px 12px rgba(109,92,232,.22);animation:slotPop .4s ease}
.puzzle-meter{display:flex;gap:5px;direction:ltr}
.piece-dot{width:27px;height:27px;border-radius:8px;border:2px solid #ddd8e9;background:#fbfaff;position:relative;transition:.3s ease}
.piece-dot:after{content:"";position:absolute;inset:6px;border-radius:4px;background:#e6e1ef}
.piece-dot.filled{border-color:#e4ae39;background:var(--yellow-soft);transform:rotate(-3deg);animation:slotPop .4s ease}
.piece-dot.filled:after{background:var(--yellow);box-shadow:0 2px 7px rgba(255,200,87,.3)}
.progress-track{height:5px;background:rgba(224,219,237,.7);overflow:hidden;position:sticky;top:96px;z-index:19}
.progress-bar{height:100%;width:0;background:linear-gradient(90deg,var(--purple),var(--mint));transition:width .45s cubic-bezier(.2,.8,.2,1)}

.main-stage{flex:1;display:grid;place-items:center;padding:34px 28px 108px}
.screen{width:min(1220px,96vw);min-height:min(720px,78vh);border-radius:var(--radius-xl);background:var(--paper);border:1px solid rgba(255,255,255,.85);box-shadow:var(--shadow);padding:clamp(34px,4.4vw,68px);display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;position:relative;overflow:hidden;isolation:isolate;animation:screenIn .38s ease}
.screen:before{content:"";position:absolute;width:330px;height:330px;border-radius:48% 52% 63% 37%/45% 39% 61% 55%;background:linear-gradient(145deg,rgba(109,92,232,.10),rgba(79,197,170,.07));top:-190px;right:-120px;z-index:-1;transform:rotate(12deg)}
.screen:after{content:"";position:absolute;width:260px;height:260px;border-radius:63% 37% 46% 54%/56% 61% 39% 44%;background:linear-gradient(145deg,rgba(255,200,87,.14),rgba(255,127,115,.09));bottom:-155px;left:-90px;z-index:-1}
.screen>*{max-width:100%}

.kicker{display:inline-flex;align-items:center;gap:9px;padding:9px 15px;border-radius:999px;background:var(--purple-soft);border:1px solid #ded8ff;color:var(--purple-dark);font-family:"Rubik","Heebo",sans-serif;font-weight:800;font-size:15px;margin-bottom:18px}
.kicker .mini-icon{width:18px;height:18px}
h1,h2,h3{font-family:"Rubik","Heebo",sans-serif;color:var(--ink)}
h1{font-size:clamp(47px,6.1vw,84px);line-height:1.03;letter-spacing:-.035em;margin:0 0 18px;font-weight:900}
h2{font-size:clamp(37px,4.8vw,64px);line-height:1.08;letter-spacing:-.025em;margin:0 0 15px;font-weight:850}
h3{font-size:clamp(24px,3vw,38px);line-height:1.2;margin:0 0 12px;font-weight:800}
p,.instruction{font-size:clamp(23px,2.6vw,35px);line-height:1.45;margin:8px 0;max-width:920px;font-weight:500}
.sub{font-size:clamp(17px,1.7vw,23px);color:var(--muted);line-height:1.5;max-width:900px}
.small-copy{font-size:16px;color:var(--muted)}

.hero-mark{width:116px;height:116px;border-radius:34px;display:grid;place-items:center;margin-bottom:22px;background:linear-gradient(145deg,var(--purple-soft),#faf8ff);color:var(--purple);box-shadow:inset 0 0 0 1px #e1dcfa,0 12px 30px rgba(109,92,232,.10);transform:rotate(-2deg)}
.hero-mark svg{width:64px;height:64px}
.hero-mark.mint{background:linear-gradient(145deg,var(--mint-soft),#fbfffd);color:#28997f;box-shadow:inset 0 0 0 1px #d5f0e9,0 12px 30px rgba(79,197,170,.10)}
.hero-mark.coral{background:linear-gradient(145deg,var(--coral-soft),#fffafa);color:#e96a60;box-shadow:inset 0 0 0 1px #ffd8d4,0 12px 30px rgba(255,127,115,.10)}
.hero-mark.yellow{background:linear-gradient(145deg,var(--yellow-soft),#fffdf6);color:#d79c22;box-shadow:inset 0 0 0 1px #f5e3a8,0 12px 30px rgba(255,200,87,.12)}

.info-card{background:#faf9fd;border:1px solid var(--line);border-radius:var(--radius-lg);padding:24px 30px;margin:20px 0;max-width:940px;width:100%;box-shadow:0 5px 17px rgba(72,66,104,.04)}
.info-card.success{background:var(--good-soft);border-color:#c7eadf}
.info-card.warning{background:var(--yellow-soft);border-color:#f2dfab}
.info-card.mail{background:#fffaf0;border:2px dashed #e7bf65}

.actions{display:flex;gap:13px;flex-wrap:wrap;justify-content:center;margin-top:28px}
.btn{border:0;border-radius:18px;padding:15px 27px;font-family:"Rubik","Heebo",sans-serif;font-weight:800;font-size:clamp(18px,1.9vw,24px);min-height:58px;transition:transform .18s ease,box-shadow .18s ease,background .18s ease;position:relative;overflow:hidden}
.btn:hover:not(:disabled){transform:translateY(-2px)}
.btn:active:not(:disabled){transform:translateY(1px)}
.btn-primary{background:linear-gradient(145deg,var(--purple),#7b69ef);color:white;box-shadow:0 10px 20px rgba(109,92,232,.24),inset 0 1px rgba(255,255,255,.25)}
.btn-primary:hover{box-shadow:0 13px 26px rgba(109,92,232,.29)}
.btn-secondary{background:var(--yellow-soft);color:#835e0e;border:1px solid #f0d990;box-shadow:0 7px 14px rgba(163,119,24,.10)}
.btn-good{background:var(--good-soft);color:#23795f;border:1px solid #c8eadf}
.btn-bad{background:var(--bad-soft);color:#ad4050;border:1px solid #f2c7cf}
.btn-quiet{background:white;color:var(--ink);border:1px solid var(--line);box-shadow:0 6px 14px rgba(69,62,102,.06)}
.btn-small{min-height:42px;font-size:15px;padding:9px 14px;border-radius:13px}

.mission-layout{width:100%;display:grid;grid-template-columns:minmax(280px,.8fr) minmax(390px,1.2fr);gap:48px;align-items:center;text-align:right}
.visual-panel{min-height:410px;border-radius:34px;background:linear-gradient(155deg,#f1edff 0%,#e9f8f4 58%,#fff8e7 100%);display:grid;place-items:center;position:relative;overflow:hidden;border:1px solid #e6e0f3}
.visual-panel:after{content:"";position:absolute;width:170px;height:170px;border-radius:50%;background:rgba(255,255,255,.58);top:-50px;left:-40px}
.visual-panel svg{width:45%;max-width:190px;height:auto;color:var(--purple);filter:drop-shadow(0 12px 18px rgba(72,59,145,.12))}
.copy-panel{display:flex;flex-direction:column;align-items:flex-start}
.copy-panel .actions{justify-content:flex-start}

.child-layout{display:grid;grid-template-columns:minmax(300px,470px) minmax(360px,1fr);gap:46px;align-items:center;width:100%;max-width:1080px;text-align:right}
.child-card{min-height:580px;border-radius:36px;background:linear-gradient(155deg,#eeeaff 0%,#e8f8f3 55%,#fff4d9 100%);border:1px solid #e0d9f4;overflow:hidden;display:flex;align-items:flex-end;justify-content:center;position:relative;box-shadow:inset 0 0 55px rgba(255,255,255,.55)}
.child-card:before{content:"";position:absolute;width:240px;height:240px;border-radius:50%;background:rgba(255,255,255,.48);top:42px;right:50%;transform:translateX(50%)}
.child-card:after{content:"";position:absolute;left:22px;right:22px;bottom:18px;height:32px;background:rgba(71,64,109,.10);filter:blur(12px);border-radius:50%}
.child-photo{height:min(570px,62vh);max-width:100%;object-fit:contain;position:relative;z-index:2;filter:drop-shadow(0 14px 10px rgba(48,42,75,.10))}
.child-name{font-family:"Rubik","Heebo",sans-serif;font-size:clamp(48px,6vw,78px);font-weight:900;line-height:1;margin-bottom:17px;color:var(--ink)}
.prompt-box{font-size:clamp(24px,2.7vw,35px);line-height:1.46;padding:25px 28px;border-radius:24px;background:white;border:1px solid var(--line);box-shadow:var(--shadow-sm);width:100%}
.intro-progress{display:flex;align-items:center;gap:10px;margin-top:19px;color:var(--muted);font-weight:700}
.intro-progress-bar{width:180px;height:8px;background:#e8e4ef;border-radius:99px;overflow:hidden}
.intro-progress-bar span{display:block;height:100%;background:linear-gradient(90deg,var(--purple),var(--mint));border-radius:99px;transition:width .3s ease}

.big-number{font-family:"Rubik",sans-serif;font-size:clamp(120px,18vw,230px);font-weight:900;line-height:.92;color:var(--purple);margin:15px 0;text-shadow:0 8px 0 rgba(109,92,232,.07)}
.reward-card{width:min(460px,90vw);padding:30px;border-radius:32px;background:linear-gradient(145deg,#f7f4ff,#ece7ff);border:2px solid #dcd3ff;box-shadow:0 18px 42px rgba(109,92,232,.13)}

.memory-shell{width:100%;display:flex;flex-direction:column;align-items:center}
.memory-grid{display:grid;grid-template-columns:repeat(5,minmax(110px,1fr));gap:15px;width:min(980px,92vw);direction:ltr;margin:22px auto}
.memory-item{aspect-ratio:1/1;border-radius:25px;background:white;border:1px solid #e5e1ef;display:grid;place-items:center;box-shadow:0 10px 24px rgba(66,57,104,.07);position:relative;overflow:hidden;transition:transform .25s ease}
.memory-item:nth-child(3n+1){background:#f1edff}
.memory-item:nth-child(3n+2){background:#e9f8f3}
.memory-item:nth-child(3n){background:#fff5dd}
.memory-item svg{width:68%;height:68%;filter:drop-shadow(0 7px 7px rgba(55,48,83,.10))}
.memory-item:hover{transform:translateY(-3px)}
.timer-wrap{display:flex;align-items:center;gap:18px;margin-top:10px}
.timer{font-family:"Rubik",sans-serif;font-size:clamp(60px,8vw,105px);font-weight:900;font-variant-numeric:tabular-nums;color:var(--purple);line-height:1}
.timer-label{text-align:right;color:var(--muted);font-weight:700;font-size:18px}
.question-card{width:min(920px,92vw);padding:35px 38px;background:white;border-radius:32px;border:1px solid var(--line);box-shadow:var(--shadow-sm)}
.question{font-family:"Rubik","Heebo",sans-serif;font-size:clamp(32px,4vw,52px);font-weight:850;line-height:1.32;margin:6px 0 22px}
.score-row{display:flex;align-items:center;justify-content:center;gap:18px;margin:18px 0 6px}
.score-label{font-weight:800;color:var(--muted);font-size:17px}
.score-dots{display:flex;gap:10px;direction:ltr}
.score-dot{width:38px;height:38px;border-radius:13px;border:2px solid #ded9e9;background:#fbfaff;position:relative}
.score-dot:after{content:"";position:absolute;inset:9px;border-radius:50%;background:#e8e4ef}
.score-dot.on{background:var(--mint-soft);border-color:#8adbc7;animation:slotPop .35s ease}
.score-dot.on:after{background:var(--mint)}

.math-expression{display:flex;direction:ltr;gap:22px;align-items:center;justify-content:center;font-family:"Rubik",sans-serif;font-size:clamp(75px,12vw,148px);font-weight:900;margin:16px 0 22px;line-height:1}
.math-input{width:205px;height:115px;border:4px solid #d6d0e7;border-radius:24px;text-align:center;font-family:"Rubik",sans-serif;font-size:68px;font-weight:900;color:var(--ink);background:#fff;direction:ltr;outline:0;box-shadow:inset 0 4px 12px rgba(68,60,104,.05)}
.math-input:focus{border-color:var(--purple);box-shadow:0 0 0 6px rgba(109,92,232,.10)}
.numpad{display:grid;grid-template-columns:repeat(5,72px);gap:10px;direction:ltr;justify-content:center;margin-top:15px}
.numpad button{height:64px;border-radius:17px;border:1px solid var(--line);background:#fbfaff;font-family:"Rubik",sans-serif;font-size:27px;font-weight:800;color:var(--ink);box-shadow:0 5px 11px rgba(68,60,104,.05)}
.numpad button:hover{background:var(--purple-soft);border-color:#d6ceff}
.digit-reveal{display:flex;gap:18px;direction:ltr;justify-content:center;margin:20px 0}
.digit-card{width:105px;height:122px;border-radius:27px;background:#fbfaff;border:3px solid #ded9e9;display:grid;place-items:center;font-family:"Rubik",sans-serif;font-size:72px;font-weight:900}
.digit-card.highlight{background:var(--purple);border-color:var(--purple);color:white;box-shadow:0 16px 30px rgba(109,92,232,.25);animation:slotPop .45s ease}

.steps-card{display:grid;grid-template-columns:repeat(2,minmax(240px,1fr));gap:12px;width:min(860px,94vw);margin:20px auto}
.step-line{display:flex;align-items:center;gap:15px;text-align:right;padding:17px 19px;border-radius:20px;background:#faf9fd;border:1px solid var(--line);font-size:clamp(19px,2vw,25px);font-weight:700}
.step-num{width:38px;height:38px;border-radius:13px;display:grid;place-items:center;background:var(--purple);color:white;font-family:"Rubik",sans-serif;font-weight:900;flex:0 0 auto}
.rounds{display:flex;gap:10px;justify-content:center;margin:22px 0}
.round-pill{padding:12px 20px;border-radius:999px;background:#f5f2fa;border:1px solid var(--line);font-weight:800;color:var(--muted);transition:.25s ease}
.round-pill.done{background:var(--mint-soft);border-color:#afe1d4;color:#297d68}

.hints{width:min(820px,92vw);display:grid;gap:12px;margin:24px auto}
.hint{padding:19px 23px;border-radius:22px;background:white;border:1px solid var(--line);box-shadow:0 7px 18px rgba(65,57,102,.05);font-size:clamp(21px,2.4vw,31px);font-weight:700;text-align:right;animation:hintIn .35s ease}
.hint strong{color:var(--purple)}
.waiting-card{display:flex;align-items:center;gap:18px;padding:22px 28px;border-radius:24px;background:var(--yellow-soft);border:1px solid #eed994;font-weight:800;font-size:22px}
.waiting-dots{display:flex;gap:5px;direction:ltr}
.waiting-dots i{width:9px;height:9px;border-radius:50%;background:#dba839;animation:bounce 1.2s infinite}
.waiting-dots i:nth-child(2){animation-delay:.15s}.waiting-dots i:nth-child(3){animation-delay:.3s}

.quiz-shell{width:100%;max-width:1080px}
.quiz-head{display:flex;align-items:center;justify-content:space-between;gap:20px;margin-bottom:14px}
.quiz-meta{font-weight:800;color:var(--muted);font-size:16px}
.quiz-progress{height:9px;flex:1;max-width:260px;background:#ece8f2;border-radius:99px;overflow:hidden}
.quiz-progress span{display:block;height:100%;background:linear-gradient(90deg,var(--purple),var(--coral));border-radius:99px}
.options{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin:24px auto;width:100%}
.option{border:2px solid #e4e0ec;background:white;border-radius:24px;padding:18px 20px;min-height:95px;text-align:right;color:var(--ink);font-size:clamp(20px,2.1vw,28px);font-weight:800;transition:.2s ease;box-shadow:0 7px 18px rgba(68,60,104,.05)}
.option:hover:not(:disabled){transform:translateY(-2px);border-color:#cfc6ff;background:#faf9ff;box-shadow:0 12px 24px rgba(68,60,104,.09)}
.option.correct{border-color:#77cdb4;background:var(--good-soft);color:#1f735c;box-shadow:0 9px 24px rgba(47,156,120,.10)}
.option.wrong{border-color:#eba9b3;background:var(--bad-soft);color:#a44453}
.option:disabled{opacity:1}
.people-strip{display:flex;gap:8px;flex-wrap:wrap;margin-top:10px}
.person-mini{display:flex;align-items:center;gap:6px;padding:6px 8px 6px 10px;border-radius:14px;background:#f6f3fb;border:1px solid #e8e3ef;font-size:13px;font-weight:800;white-space:nowrap}
.person-mini img{width:42px;height:54px;object-fit:contain;object-position:center bottom;filter:drop-shadow(0 4px 3px rgba(54,47,83,.07))}
.feedback-card{margin-top:18px;padding:18px 22px;border-radius:20px;background:#f8f7fb;border:1px solid var(--line);font-size:clamp(17px,1.8vw,23px);line-height:1.5}
.feedback-card.good{background:var(--good-soft);border-color:#c6e8dd;color:#246f5a}

.puzzle-board{width:min(700px,85vw);aspect-ratio:3/2;display:grid;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,1fr);gap:10px;margin:22px auto}
.puzzle-cell{border-radius:22px;background:linear-gradient(145deg,#f1edff,#fff8e7);border:2px dashed #cec7e3;display:grid;place-items:center;color:var(--purple)}
.puzzle-cell svg{width:55px;height:55px}
.fridge-img{max-height:460px;max-width:min(430px,78vw);object-fit:contain;filter:drop-shadow(0 20px 22px rgba(48,42,77,.13));margin-bottom:15px}

.search-route{display:flex;align-items:center;justify-content:center;gap:13px;flex-wrap:wrap;margin:24px 0}
.route-stop{padding:13px 17px;border-radius:17px;background:white;border:1px solid var(--line);font-weight:800;color:var(--ink);box-shadow:0 6px 14px rgba(68,60,104,.05)}
.route-arrow{color:#aaa4ba;font-size:24px}
.lock-board{display:flex;gap:15px;direction:ltr;justify-content:center;margin:25px 0}
.lock-tile{width:110px;height:125px;border-radius:28px;background:#f8f6fc;border:3px solid #dad4e8;display:grid;place-items:center;font-family:"Rubik",sans-serif;font-size:72px;font-weight:900;color:#aaa4b7}
.lock-tile.revealed{background:var(--purple);border-color:var(--purple);color:white;box-shadow:0 16px 30px rgba(109,92,232,.22);animation:slotPop .4s ease}

.finish-burst{position:absolute;inset:0;pointer-events:none;overflow:hidden;z-index:-1}
.confetti{position:absolute;width:12px;height:24px;border-radius:4px;animation:confettiDrop 3.6s linear infinite;opacity:.8}

.teacher-toggle{position:fixed;bottom:19px;right:20px;z-index:50;border:1px solid #dcd7e8;border-radius:999px;background:rgba(255,255,255,.94);backdrop-filter:blur(12px);color:var(--ink);padding:9px 14px 9px 16px;display:flex;align-items:center;gap:8px;font-weight:800;box-shadow:0 8px 22px rgba(61,54,95,.13)}
.teacher-toggle svg{width:18px;height:18px;color:var(--purple)}
.teacher-panel{position:fixed;bottom:16px;left:16px;right:16px;z-index:55;background:rgba(37,48,82,.96);backdrop-filter:blur(16px);color:white;border-radius:24px;padding:14px 16px;display:grid;grid-template-columns:auto auto 1fr auto;gap:16px;align-items:center;box-shadow:0 20px 60px rgba(25,26,49,.28)}
.teacher-panel-title{display:flex;align-items:center;gap:8px;white-space:nowrap}.teacher-panel-title svg{width:20px;height:20px}
.teacher-controls{display:flex;gap:8px;flex-wrap:wrap}
.teacher-panel .btn-quiet{background:rgba(255,255,255,.10);border-color:rgba(255,255,255,.17);color:white;box-shadow:none}.teacher-panel .btn-primary{box-shadow:none}.teacher-panel .btn-secondary{box-shadow:none}
.teacher-note{font-size:14px;line-height:1.4;color:#e5e4ee;min-width:0}
.teacher-links{display:flex;gap:12px;align-items:center;white-space:nowrap}
.text-link{border:0;background:none;color:#e8e6f1;text-decoration:underline;text-underline-offset:3px;font-size:13px;cursor:pointer;padding:4px}.danger-link{color:#ffc2ca}

.modal{position:fixed;inset:0;background:rgba(27,27,47,.45);backdrop-filter:blur(6px);display:grid;place-items:center;padding:20px;z-index:100}
.modal-card{width:min(560px,92vw);background:white;border-radius:30px;padding:34px;box-shadow:0 26px 70px rgba(22,22,42,.28);text-align:center}

@keyframes screenIn{from{opacity:0;transform:translateY(8px) scale(.995)}to{opacity:1;transform:none}}
@keyframes slotPop{0%{transform:scale(.76)}70%{transform:scale(1.08)}100%{transform:scale(1)}}
@keyframes hintIn{from{opacity:0;transform:translateY(7px)}to{opacity:1;transform:none}}
@keyframes bounce{0%,60%,100%{transform:translateY(0)}30%{transform:translateY(-7px)}}
@keyframes confettiDrop{0%{transform:translateY(-15vh) rotate(0)}100%{transform:translateY(110vh) rotate(540deg)}}

@media(max-width:1040px){
  .hud{grid-template-columns:1fr auto;min-height:88px}.hud-center{display:none}.hud-status{justify-self:end}.progress-track{top:88px}
  .mission-layout,.child-layout{grid-template-columns:1fr;gap:26px}.child-card{min-height:430px}.child-photo{height:430px}.copy-panel{align-items:center;text-align:center}.copy-panel .actions{justify-content:center}
}
@media(max-width:760px){
  .hud{padding:12px 14px;grid-template-columns:1fr}.hud-brand{justify-content:center}.hud-status{justify-self:center}.brand-copy strong{font-size:20px}.brand-overline{display:none}.progress-track{top:139px}
  .main-stage{padding:22px 12px 100px}.screen{min-height:70vh;padding:28px 18px;border-radius:28px}
  .status-card{padding:7px 10px}.status-icon{display:none}
  .memory-grid{grid-template-columns:repeat(2,1fr);gap:10px}.memory-item:nth-child(10){grid-column:span 2;aspect-ratio:2/1}
  .options{grid-template-columns:1fr}.steps-card{grid-template-columns:1fr}.teacher-panel{grid-template-columns:1fr;gap:10px}.teacher-links{flex-wrap:wrap}.teacher-note{order:2}
  .numpad{grid-template-columns:repeat(5,58px)}.numpad button{height:56px}.math-expression{gap:10px}.math-input{width:130px;height:90px;font-size:55px}
}
@media(prefers-reduced-motion:reduce){*,*:before,*:after{animation:none!important;transition:none!important;scroll-behavior:auto!important}}

/* V3 classroom-board overrides: every game screen fits without scrolling */
html,body{width:100%;height:100%;overflow:hidden}
body{overscroll-behavior:none}
.app-shell{height:100dvh;min-height:0;overflow:hidden}
.hud{height:82px;min-height:82px;padding:10px 20px;grid-template-columns:minmax(230px,1fr) auto minmax(380px,1.45fr)}
.brand-symbol{width:48px;height:48px;border-radius:16px}.brand-symbol svg{width:27px;height:27px}
.status-card{min-height:54px;padding:7px 11px;border-radius:17px}.status-icon{width:34px;height:34px}.status-icon svg{width:20px;height:20px}
.progress-track{height:4px;top:82px}
.main-stage{height:calc(100dvh - 86px);min-height:0;flex:none;padding:14px 20px 14px;position:relative;overflow:hidden}
.screen{width:min(1240px,96vw);height:calc(100dvh - 114px);min-height:0;max-height:calc(100dvh - 114px);padding:clamp(18px,2.1vw,34px);overflow:hidden}
h1{font-size:clamp(42px,5.3vw,72px);margin-bottom:12px}
h2{font-size:clamp(31px,4vw,54px);margin-bottom:10px}
h3{font-size:clamp(22px,2.5vw,34px);margin-bottom:8px}
p,.instruction{font-size:clamp(19px,2.05vw,29px);line-height:1.35;margin:5px 0}
.sub{font-size:clamp(15px,1.55vw,21px);line-height:1.38}
.kicker{margin-bottom:10px;padding:7px 13px;font-size:14px}
.hero-mark{width:92px;height:92px;border-radius:27px;margin-bottom:13px}.hero-mark svg{width:50px;height:50px}
.info-card{padding:16px 22px;margin:12px 0;border-radius:22px}
.actions{margin-top:16px;gap:10px}.btn{min-height:50px;padding:12px 23px;border-radius:16px;font-size:clamp(17px,1.55vw,22px)}
.reward-card{margin:12px 0;padding:16px 22px}

.mission-timer{position:absolute;left:34px;top:26px;z-index:35;width:126px;padding:10px 14px;border-radius:20px;background:rgba(37,48,82,.94);color:#fff;box-shadow:0 12px 28px rgba(37,48,82,.22);text-align:center;direction:ltr;border:1px solid rgba(255,255,255,.15);transition:.25s ease}
.mission-timer-label{display:block;font-size:11px;font-weight:800;opacity:.72;direction:rtl;margin-bottom:1px}
.mission-timer strong{font-family:"Rubik",sans-serif;font-size:27px;letter-spacing:.04em;font-variant-numeric:tabular-nums}
.mission-timer.stopped{background:#287f69;box-shadow:0 12px 28px rgba(40,127,105,.22)}
.mission-timer.stopped:after{content:"נעצר";display:block;direction:rtl;font-size:10px;font-weight:800;opacity:.76;margin-top:1px}

.asset-panel{background:linear-gradient(155deg,#fff6e4,#f1edff 60%,#e9f8f4)}
.ui-asset{width:min(78%,310px);max-height:330px;object-fit:contain;filter:drop-shadow(0 15px 16px rgba(54,48,79,.13));position:relative;z-index:2}
.package-asset{transform:rotate(-2deg)}
.screen-asset{width:180px;max-height:180px;object-fit:contain;filter:drop-shadow(0 11px 12px rgba(54,48,79,.10));margin-bottom:4px}
.mailbox-asset{width:165px}.bookshelf-asset{width:200px;max-height:190px}.bookshelf-asset.small{width:150px;max-height:135px}

.identify-prep-layout .visual-panel{min-height:360px}
.scanner-visual{position:relative;isolation:isolate}
.scan-avatar-stack{display:flex;align-items:flex-end;justify-content:center;width:88%;height:82%;gap:-10px;position:relative;z-index:1}
.scan-avatar-stack img{height:78%;max-width:25%;object-fit:contain;filter:drop-shadow(0 7px 5px rgba(47,42,71,.09));margin-inline:-5px}
.scan-avatar-stack img:nth-child(2),.scan-avatar-stack img:nth-child(4){height:68%}
.scan-beam{position:absolute;left:8%;right:8%;height:4px;border-radius:999px;background:linear-gradient(90deg,transparent,#4fc5aa,#fff,#4fc5aa,transparent);box-shadow:0 0 18px #4fc5aa;animation:scanPrep 2.2s ease-in-out infinite;z-index:3}
@keyframes scanPrep{0%,100%{top:20%;opacity:.45}50%{top:78%;opacity:1}}

.child-layout{width:100%;height:100%;grid-template-columns:minmax(280px,430px) minmax(420px,1fr);gap:34px;align-items:center}
.child-card{height:min(56vh,470px);min-height:340px;border-radius:30px;position:relative;transition:.25s ease}
.child-photo{height:100%;max-height:100%;padding-top:8px}
.intro-copy{display:flex;flex-direction:column;align-items:flex-start;text-align:right;min-width:0}
.child-name{font-size:clamp(42px,5vw,68px);margin:0 0 7px}
.intro-prompt{padding:16px 20px;margin:6px 0 10px}
.intro-prompt>strong{font-size:clamp(20px,2vw,27px);display:block;margin-bottom:9px}
.intro-fields{display:flex;gap:8px;flex-wrap:wrap}
.intro-fields span{padding:8px 13px;background:#fff;border:1px solid #ddd8e9;border-radius:14px;font-size:clamp(15px,1.4vw,19px);font-weight:800;color:var(--ink)}
.verified-child .child-card{border-color:#8adbc7;box-shadow:0 0 0 5px rgba(79,197,170,.12),var(--shadow-sm)}
.verified-stamp{position:absolute;top:16px;left:16px;padding:8px 13px;border-radius:999px;background:#2f9c78;color:#fff;font-family:"Rubik",sans-serif;font-weight:900;font-size:16px;display:flex;align-items:center;gap:6px;box-shadow:0 8px 18px rgba(47,156,120,.22)}
.verified-stamp span{width:22px;height:22px;border-radius:50%;background:#fff;color:#2f9c78;display:grid;place-items:center}
.verified-message{display:flex;align-items:center;gap:10px;padding:10px 14px;border-radius:16px;background:var(--good-soft);color:#24765d;border:1px solid #bee4d8;margin-top:5px;font-size:18px}
.verified-message span{width:28px;height:28px;border-radius:50%;background:#2f9c78;color:#fff;display:grid;place-items:center;font-weight:900}
.intro-progress{margin-top:10px}

.class-scan-shell{width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center}
.class-scan-grid{width:min(820px,78vw);height:300px;display:grid;grid-template-columns:repeat(12,1fr);align-items:end;gap:2px;position:relative;margin:8px auto 10px;padding:18px 16px 0;border-radius:28px;background:linear-gradient(180deg,#f3f0ff,#eaf8f5);border:1px solid #ddd7ee;overflow:hidden}
.scan-person{height:100%;display:flex;align-items:flex-end;justify-content:center;opacity:.86;animation:scanPerson .35s both;animation-delay:calc(var(--i)*.06s)}
.scan-person img{max-height:245px;width:100%;object-fit:contain;object-position:center bottom;filter:drop-shadow(0 6px 4px rgba(51,45,76,.08))}
.class-scan-line{position:absolute;left:3%;right:3%;height:4px;border-radius:99px;background:#4fc5aa;box-shadow:0 0 17px #4fc5aa;animation:scanClass 1.75s ease-in-out 1}
.scan-status,.scan-success{display:flex;align-items:center;gap:12px;min-height:48px}
.scan-spinner{width:27px;height:27px;border:4px solid #d8d4e7;border-top-color:var(--purple);border-radius:50%;animation:spin .8s linear infinite}
.scan-success{color:#23795f;animation:slotPop .4s ease}.verify-big{width:45px;height:45px;border-radius:50%;display:grid;place-items:center;background:#2f9c78;color:white;font-size:27px;font-weight:900}.scan-success h3{margin:0;font-size:25px}.scan-success p{font-size:17px;margin:0}
.reward-card.compact{display:flex;align-items:center;gap:14px;text-align:right;padding:11px 17px;margin:8px 0}.reward-card.compact strong{display:block;font-size:18px}.reward-card.compact span{display:block;color:var(--muted);font-size:14px}.reward-puzzle{width:52px;height:52px;object-fit:contain}
@keyframes scanClass{0%{top:14%;opacity:.35}55%{top:74%;opacity:1}100%{top:26%;opacity:.2}}
@keyframes scanPerson{from{opacity:0;transform:translateY(10px)}to{opacity:.88;transform:none}}
@keyframes spin{to{transform:rotate(360deg)}}

.memory-shell{width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center}
.memory-grid{width:min(880px,75vw);grid-template-columns:repeat(5,1fr);gap:10px;margin:7px auto 9px}
.memory-item{aspect-ratio:1.17/1;border-radius:19px;padding:10px;background:linear-gradient(150deg,#fff,#f8f6fc);border:1px solid #e2deeb;display:grid;place-items:center;box-shadow:0 5px 13px rgba(58,50,92,.045)}
.memory-item img{width:88%;height:88%;object-fit:contain;filter:drop-shadow(0 5px 4px rgba(44,40,64,.07))}
.memory-countdown{margin:6px 0}.timer{font-size:44px}.timer-label{font-size:13px}
.question-card{width:min(900px,85vw)}

.piece-dot{display:grid;place-items:center;border:0;background:transparent;width:28px;height:28px;overflow:visible}
.piece-dot:after{display:none}.piece-dot img{width:27px;height:27px;object-fit:contain;opacity:.18;filter:grayscale(1);transition:.25s ease}.piece-dot.filled{background:transparent;border:0;transform:none}.piece-dot.filled img{opacity:1;filter:none;transform:rotate(-4deg);animation:slotPop .35s ease}
.puzzle-board{width:min(620px,64vw);height:280px;aspect-ratio:auto;margin:10px auto;gap:8px}
.puzzle-cell img{width:55%;height:55%;object-fit:contain;opacity:.78}

.people-only-strip{display:flex;justify-content:center;align-items:flex-end;gap:4px;width:100%;height:100%}
.people-only-strip img{height:128px;max-width:31%;object-fit:contain;object-position:center bottom;filter:drop-shadow(0 7px 5px rgba(50,44,75,.08))}
.option.people-only{min-height:155px;padding:5px 8px;display:grid;place-items:center}
.option.people-only:hover:not(:disabled){background:#faf9ff}

.screen.finish-screen{padding:0;background:#101832;border-color:#1b2a52;box-shadow:0 30px 80px rgba(8,14,35,.35)}
.screen.finish-screen:before,.screen.finish-screen:after{display:none}
.space-finale{position:absolute;inset:0;overflow:hidden;background:radial-gradient(circle at 50% 92%,rgba(109,92,232,.28),transparent 27%),radial-gradient(circle at 20% 18%,rgba(78,143,232,.16),transparent 24%),linear-gradient(180deg,#0b1230,#111b43 62%,#172453);color:#fff}
.space-stars{position:absolute;inset:0}.space-star{position:absolute;left:var(--x);top:var(--y);width:var(--s);height:var(--s);border-radius:50%;background:#fff;box-shadow:0 0 9px rgba(255,255,255,.9);animation:twinkle var(--d) ease-in-out infinite alternate}
.final-copy{position:absolute;z-index:4;top:25px;left:0;right:0;text-align:center}.final-copy h1,.final-copy h2{color:#fff;text-shadow:0 3px 20px rgba(109,92,232,.45)}.final-copy h1{font-size:clamp(36px,4.8vw,66px);margin:0}.final-copy h2{font-size:clamp(25px,3vw,42px);margin:4px 0 0;color:#ffe7a2}.final-check{width:46px;height:46px;border-radius:50%;display:grid;place-items:center;background:#4fc5aa;color:#fff;font-size:29px;font-weight:900;margin:0 auto 5px;box-shadow:0 0 24px rgba(79,197,170,.5)}
.class-group{position:absolute;z-index:3;left:3%;right:3%;bottom:-2px;height:72%;display:grid;grid-template-columns:repeat(12,1fr);align-items:end;gap:0}
.final-child{height:100%;display:flex;align-items:flex-end;justify-content:center;animation:finalRise .6s cubic-bezier(.2,.8,.2,1) both;animation-delay:calc(var(--i)*.055s);margin-inline:-7px}
.final-child img{width:125%;max-width:none;height:88%;object-fit:contain;object-position:center bottom;filter:drop-shadow(0 9px 7px rgba(0,0,0,.2))}
.final-child:nth-child(2n) img{height:82%}.final-child:nth-child(3n) img{height:86%}

.final-chocolate{position:absolute;z-index:5;left:4.2%;top:7%;width:min(150px,12vw);filter:drop-shadow(0 10px 13px rgba(0,0,0,.22));animation:chocFloat 2.5s ease-in-out infinite alternate}
@keyframes chocFloat{from{transform:translateY(0) rotate(-4deg)}to{transform:translateY(8px) rotate(3deg)}}
@keyframes twinkle{from{opacity:.18;transform:scale(.65)}to{opacity:1;transform:scale(1.35)}}
@keyframes finalRise{from{opacity:0;transform:translateY(45px)}to{opacity:1;transform:none}}

@media(max-height:820px){
  .hud{height:74px;min-height:74px}.progress-track{top:74px}.main-stage{height:calc(100dvh - 78px);padding:10px 16px}.screen{height:calc(100dvh - 96px);max-height:calc(100dvh - 96px);padding:16px 28px;border-radius:28px}
  h1{font-size:clamp(38px,4.6vw,60px)}h2{font-size:clamp(29px,3.5vw,46px)}p,.instruction{font-size:clamp(18px,1.8vw,25px)}
  .child-card{height:min(52vh,390px);min-height:300px}.child-name{font-size:clamp(36px,4vw,55px)}
  .memory-grid{width:min(760px,72vw);gap:8px}.memory-item{padding:6px}.memory-countdown{margin:3px 0}.timer{font-size:36px}
  .steps-card{margin:10px auto;gap:8px}.step-line{padding:11px 15px;font-size:clamp(17px,1.6vw,22px)}
  .option{min-height:74px;padding:11px 15px;font-size:clamp(17px,1.7vw,23px)}.option.people-only{min-height:130px}.people-only-strip img{height:105px}
  .question{font-size:clamp(26px,3vw,39px)}.feedback-card{padding:11px 15px;margin-top:8px}
  .class-scan-grid{height:235px}.scan-person img{max-height:190px}.puzzle-board{height:220px}
  .mission-timer{top:16px;left:24px;transform:scale(.92);transform-origin:top left}
}

@media(max-width:1040px){
  .hud{grid-template-columns:1fr auto minmax(330px,1.2fr)}.hud-center{display:none}.hud-status{justify-self:end}.progress-track{top:82px}
  .mission-layout,.child-layout{grid-template-columns:minmax(250px,.8fr) minmax(380px,1.2fr);gap:22px}.child-card{min-height:290px}.child-photo{height:100%}.copy-panel{align-items:flex-start;text-align:right}.copy-panel .actions{justify-content:flex-start}
}
.intro-fields-line{display:flex;align-items:center;gap:9px;flex-wrap:wrap;font-size:clamp(17px,1.65vw,23px);font-weight:800;color:var(--ink)}
.intro-fields-line b{color:var(--purple);font-size:1.1em}.intro-fields-line span{white-space:nowrap}

/* V4 adjustments */
.full-preview{min-height:380px;padding:22px}
.class-preview-group{position:relative;width:100%;height:100%;display:grid;grid-template-columns:repeat(6,1fr);grid-template-rows:repeat(2,1fr);align-items:end;justify-items:center;gap:0 2px;padding:10px 12px 0}
.preview-kid{width:100%;height:100%;display:flex;align-items:flex-end;justify-content:center;animation:scanPerson .35s both;animation-delay:calc(var(--i)*.04s)}
.preview-kid img{width:125%;max-width:none;height:92%;object-fit:contain;object-position:center bottom;filter:drop-shadow(0 7px 5px rgba(47,42,71,.10));margin-inline:-8px}
.preview-kid:nth-child(odd) img{height:86%}

.child-card-verified{border-color:#8adbc7;box-shadow:0 0 0 5px rgba(79,197,170,.12),var(--shadow-sm)}
.scan-window-overlay{position:absolute;inset:22px;border-radius:26px;border:3px solid rgba(79,197,170,.55);background:linear-gradient(180deg,rgba(79,197,170,.10),rgba(79,197,170,.03));z-index:3;pointer-events:none;overflow:hidden}
.scan-window-beam{position:absolute;left:6%;right:6%;height:5px;border-radius:999px;background:linear-gradient(90deg,transparent,#4fc5aa,#fff,#4fc5aa,transparent);box-shadow:0 0 18px #4fc5aa;animation:verifyBeam 1.15s ease-in-out 1}
@keyframes verifyBeam{0%{top:14%;opacity:.35}55%{top:76%;opacity:1}100%{top:24%;opacity:.75}}
.verified-stamp-large{position:absolute;z-index:4;left:50%;top:52%;transform:translate(-50%,-50%) rotate(-12deg);padding:12px 24px;border:5px solid rgba(47,156,120,.95);border-radius:18px;color:#2f9c78;background:rgba(255,255,255,.78);font-family:"Rubik",sans-serif;font-weight:900;font-size:clamp(30px,3vw,44px);letter-spacing:.03em;box-shadow:0 10px 24px rgba(47,156,120,.18)}
.verify-note{height:28px;margin-top:6px;color:#24765d;font-size:18px;font-weight:800;opacity:0;transition:.25s ease}
.verify-note.show{opacity:1}

.class-scan-grid{width:min(1020px,86vw);height:360px;display:flex;align-items:flex-end;justify-content:center;gap:0;padding:18px 22px 0;background:linear-gradient(180deg,#f4f2ff,#eaf8f5)}
.scan-person{flex:1 1 0;min-width:0;margin-inline:-8px}
.scan-person img{max-height:315px;width:140%;max-width:none}
.scan-person:nth-child(2n) img{max-height:285px}
.scan-person:nth-child(3n) img{max-height:300px}
.scan-success h3{font-size:31px}.scan-success p{font-size:20px}

.bookshelf-asset{width:240px;max-height:220px}
.mailbox-asset{width:190px}
.package-asset{width:min(80%,330px)}
.reward-puzzle{width:58px;height:58px}

.memory-item img{width:84%;height:84%;object-fit:contain;filter:none}
.memory-item:nth-child(1),.memory-item:nth-child(6){background:#fff7df}
.memory-item:nth-child(2),.memory-item:nth-child(7){background:#eaf8f5}
.memory-item:nth-child(3),.memory-item:nth-child(8){background:#f3efff}
.memory-item:nth-child(4),.memory-item:nth-child(9){background:#fff0f1}
.memory-item:nth-child(5),.memory-item:nth-child(10){background:#eef5ff}

.final-copy{top:18px}
.class-group{left:1.5%;right:1.5%;height:76%}
.final-child{margin-inline:-14px}
.final-child img{width:145%;height:98%}
.final-child:nth-child(2n) img{height:91%}
.final-child:nth-child(3n) img{height:95%}
.final-chocolate{left:3%;top:8%;width:min(210px,16vw)}

@media(max-height:820px){
  .class-preview-group{padding-top:0}
  .preview-kid img{height:84%}
  .class-scan-grid{height:290px}
  .scan-person img{max-height:245px}
  .scan-person:nth-child(2n) img{max-height:220px}
  .scan-person:nth-child(3n) img{max-height:232px}
  .final-child img{height:90%}
  .final-child:nth-child(2n) img{height:84%}
  .final-child:nth-child(3n) img{height:87%}
}

/* V5 details */
.verified-child .child-card,.child-card-verified{border-color:#ffb36b;box-shadow:0 0 0 5px rgba(255,145,61,.14),var(--shadow-sm)}
.scan-window-overlay{border-color:rgba(255,145,61,.72);background:linear-gradient(180deg,rgba(255,159,75,.10),rgba(255,159,75,.025))}
.scan-window-beam{background:linear-gradient(90deg,transparent,#ff923d,#fff1c7,#ff923d,transparent);box-shadow:0 0 18px rgba(255,145,61,.9)}
.verified-stamp-large{border-color:#f57f28;color:#e76f18;background:rgba(255,248,239,.88);box-shadow:0 10px 24px rgba(229,111,24,.20)}
.verify-note.show{color:#cf641b}
.ltr-code{direction:ltr;unicode-bidi:isolate;display:inline-block;word-spacing:.22em}
.hidden-audio-embed{position:fixed!important;width:1px!important;height:1px!important;left:-9999px!important;top:-9999px!important;opacity:.001!important;pointer-events:none!important;border:0!important}
.music-box{display:flex;align-items:center;gap:13px;flex-wrap:wrap;margin-top:13px;padding:12px 14px;border-radius:18px;background:#f7f4ff;border:1px solid #dfd8f6;color:var(--muted);font-weight:700;font-size:15px}
.music-toggle{min-width:170px}.music-toggle.music-on{background:#ff8a3d;color:#fff;border-color:#ff8a3d;box-shadow:0 9px 20px rgba(255,138,61,.22)}
@media(max-height:820px){.music-box{padding:8px 10px;margin-top:8px;font-size:13px}.music-toggle{min-height:43px;font-size:15px;padding:8px 14px}}

/* V5.2: uploaded puzzle piece + reliable hidden YouTube player */
.custom-puzzle-icon{width:31px;height:31px;object-fit:contain;display:block}
.hidden-audio-embed{
  position:fixed!important;
  width:2px!important;
  height:2px!important;
  right:2px!important;
  bottom:2px!important;
  left:auto!important;
  top:auto!important;
  opacity:.01!important;
  pointer-events:none!important;
  border:0!important;
  z-index:-1!important;
}

/* V5.3 YouTube player: keep a real 240x240 player rendered, but visually hidden. */
#missionMusicHost{
  position:fixed!important;
  width:240px!important;
  height:240px!important;
  left:0!important;
  bottom:0!important;
  opacity:.001!important;
  pointer-events:none!important;
  border:0!important;
  z-index:1!important;
}
