:root{--color-primary: #6C63FF;--color-primary-dark: #5A52D5;--color-primary-light: #8B83FF;--color-secondary: #2EC4B6;--color-success: #28A745;--color-danger: #DC3545;--color-warning: #FFC107;--color-bg: #F8F9FA;--color-bg-dark: #1A1A2E;--color-surface: #FFFFFF;--color-text: #212529;--color-text-light: #6C757D;--color-text-muted: #ADB5BD;--color-border: #DEE2E6;--shadow-sm: 0 2px 4px rgba(0,0,0,.08);--shadow-md: 0 4px 12px rgba(0,0,0,.12);--shadow-lg: 0 8px 24px rgba(0,0,0,.16);--radius-sm: 8px;--radius-md: 12px;--radius-lg: 16px;--font-family: "Inter", system-ui, -apple-system, sans-serif;--transition: all .3s ease}*,*:before,*:after{box-sizing:border-box;margin:0;padding:0}html{scroll-behavior:smooth}body{font-family:var(--font-family);background:var(--color-bg);color:var(--color-text);line-height:1.6;min-height:100vh}a{color:var(--color-primary);text-decoration:none}a:hover{text-decoration:underline}img{max-width:100%}h1{font-size:2rem;font-weight:700}h2{font-size:1.5rem;font-weight:600}h3{font-size:1.25rem;font-weight:600}p{margin-bottom:1rem}.FSL-container{max-width:1200px;margin:0 auto;padding:0 1.5rem}.FSL-text-center{text-align:center}.FSL-mt-1{margin-top:.5rem}.FSL-mt-2{margin-top:1rem}.FSL-mt-3{margin-top:2rem}.FSL-mb-1{margin-bottom:.5rem}.FSL-mb-2{margin-bottom:1rem}.FSL-mb-3{margin-bottom:2rem}#app-loading{min-height:100vh;display:flex;flex-direction:column;justify-content:center;align-items:center}.FSL-loading__spinner{width:48px;height:48px;border-radius:50%;border:4px solid var(--color-border);border-top-color:var(--color-primary);animation:spin 1s linear infinite;margin-bottom:1rem}.FSL-loading__steps{list-style:none;margin-top:1rem}.FSL-loading__step{display:flex;flex-direction:row;gap:.5rem;align-items:center;margin-bottom:.5rem}.FSL-loading__step-icon{width:24px;height:24px;display:inline-flex;align-items:center;justify-content:center}.FSL-loading__step--loading:after{content:"";width:16px;height:16px;border:2px solid var(--color-text-muted);border-top-color:var(--color-primary);border-radius:50%;animation:spin 1s linear infinite}.FSL-loading__step--done.FSL-loading__step-icon:after{content:"✓";color:var(--color-success);font-weight:700;border:none;animation:none}.FSL-loading__step--error{color:var(--color-danger)}#load-error{color:var(--color-danger);margin-top:1rem;display:none}.FSL-navbar{position:sticky;top:0;z-index:1000;background:#fff;box-shadow:var(--shadow-sm)}.FSL-navbar__inner{display:flex;justify-content:space-between;align-items:center;height:60px;padding:0 1.5rem;max-width:1200px;margin:0 auto}.FSL-navbar__brand{font-weight:700;font-size:1.25rem;color:var(--color-primary);text-decoration:none}.FSL-navbar__brand:hover{text-decoration:none}.FSL-navbar__links{display:flex;gap:.5rem}.FSL-navbar__links a{padding:.5rem 1rem;border-radius:var(--radius-sm);color:var(--color-text);font-weight:500;transition:var(--transition)}.FSL-navbar__links a:hover{background:#6c63ff14;text-decoration:none}.FSL-navbar__links a.active{color:var(--color-primary);background:#6c63ff1f;font-weight:600}.FSL-navbar__logout{border:0;background:transparent;color:var(--color-text);font:inherit;font-weight:500;padding:.5rem 1rem;border-radius:var(--radius-sm);cursor:pointer}.FSL-navbar__logout:hover{background:#6c63ff14;color:var(--color-primary)}.FSL-navbar__menu-btn{display:none;background:none;border:none;font-size:1.5rem;cursor:pointer}@media(max-width:768px){.FSL-navbar__menu-btn{display:block}.FSL-navbar__links{display:none;position:absolute;top:60px;left:0;right:0;flex-direction:column;background:#fff;box-shadow:var(--shadow-md);padding:1rem}.FSL-navbar--open .FSL-navbar__links{display:flex}}#page-content{padding-top:2rem;padding-bottom:4rem;min-height:calc(100vh - 60px)}.FSL-btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.75rem 1.5rem;border:none;border-radius:var(--radius-sm);font-family:inherit;font-size:1rem;font-weight:500;cursor:pointer;transition:var(--transition);text-decoration:none}.FSL-btn--primary{background:var(--color-primary);color:#fff}.FSL-btn--primary:hover{background:var(--color-primary-dark);text-decoration:none;color:#fff}.FSL-btn--secondary{background:transparent;border:2px solid var(--color-primary);color:var(--color-primary)}.FSL-btn--secondary:hover{background:#6c63ff1a;text-decoration:none}.FSL-btn--success{background:var(--color-success);color:#fff}.FSL-btn--danger{background:var(--color-danger);color:#fff}.FSL-btn:disabled{cursor:not-allowed;opacity:.68}.FSL-btn--lg{padding:1rem 2rem;font-size:1.125rem}.FSL-btn:disabled{opacity:.5;cursor:not-allowed}.FSL-btn:focus-visible{outline:3px solid var(--color-primary);outline-offset:2px}.FSL-card{background:var(--color-surface);border-radius:var(--radius-md);box-shadow:var(--shadow-sm);padding:1.5rem;transition:var(--transition)}.FSL-card:hover,.FSL-card--hover{box-shadow:var(--shadow-md);transform:translateY(-2px)}.FSL-camera{display:flex;flex-direction:column;width:100%;max-width:640px;margin:0 auto}.FSL-camera__viewport{position:relative;border-radius:var(--radius-md);overflow:hidden;background:#000;aspect-ratio:4/3;width:100%}.FSL-camera__video{width:100%;height:100%;object-fit:cover;transform:scaleX(-1);display:block}.FSL-camera__canvas{position:absolute;top:0;left:0;width:100%;height:100%;transform:scaleX(-1);pointer-events:none}.FSL-camera--wide{max-width:860px}.FSL-camera--wide .FSL-camera__viewport{aspect-ratio:16/9}.FSL-camera--wide .FSL-camera__video{object-fit:contain}.FSL-camera__fullscreen-prompt,.FSL-camera__fullscreen-feedback{position:absolute;left:50%;z-index:11;display:none;max-width:min(92%,820px);transform:translate(-50%);border:1px solid rgba(255,255,255,.32);border-radius:12px;background:#0f172abd;color:#fff;text-align:center;box-shadow:0 12px 28px #00000047;pointer-events:none}.FSL-camera__fullscreen-prompt{top:max(18px,env(safe-area-inset-top));padding:.8rem 1.1rem;font-size:clamp(1.15rem,3vw,2rem);font-weight:800}.FSL-camera__fullscreen-feedback{bottom:max(22px,env(safe-area-inset-bottom));padding:.85rem 1.25rem;font-size:clamp(1rem,2.5vw,1.6rem);font-weight:800}.FSL-camera__fullscreen-feedback--success{background:#16a34ae0;border-color:#bbf7d0d9}.FSL-camera__fullscreen-feedback--error{background:#dc2626e0;border-color:#fecacad9}.FSL-camera__viewport:fullscreen .FSL-camera__fullscreen-prompt:not([hidden]),.FSL-camera__viewport:fullscreen .FSL-camera__fullscreen-feedback:not([hidden]),.FSL-camera__viewport--expanded .FSL-camera__fullscreen-prompt:not([hidden]),.FSL-camera__viewport--expanded .FSL-camera__fullscreen-feedback:not([hidden]){display:block}.FSL-camera__countdown{position:absolute;top:0;right:0;bottom:0;left:0;z-index:8;display:grid;place-items:center;background:#0f172a61;color:#fff;font-size:clamp(4rem,18vw,8rem);font-weight:800;line-height:1;text-shadow:0 8px 24px rgba(0,0,0,.45);pointer-events:none}.FSL-camera__countdown[hidden]{display:none}.FSL-camera__fullscreen-btn{position:absolute;top:12px;right:12px;z-index:12;display:grid;place-items:center;width:42px;height:42px;border:1px solid rgba(255,255,255,.38);border-radius:10px;background:#0f172aad;color:#fff;cursor:pointer;box-shadow:0 8px 20px #00000047;transition:var(--transition)}.FSL-camera__fullscreen-btn:hover{background:#2563ebe0;border-color:#ffffffa6}.FSL-camera__fullscreen-btn:focus-visible{outline:3px solid #fff;outline-offset:2px}.FSL-camera__fullscreen-btn svg{width:20px;height:20px;stroke-width:2.4}.FSL-camera__viewport:fullscreen,.FSL-camera__viewport--expanded{width:100vw;height:100vh;max-width:none;aspect-ratio:auto;border-radius:0;background:#000}.FSL-camera__viewport:fullscreen .FSL-camera__video,.FSL-camera__viewport--expanded .FSL-camera__video{object-fit:contain}.FSL-camera__viewport--expanded{position:fixed;top:0;right:0;bottom:0;left:0;z-index:10000}.FSL-camera__status{padding:.5rem 1rem;text-align:center;font-size:.875rem;color:var(--color-text-light)}.FSL-camera__error{position:absolute;top:0;right:0;bottom:0;left:0;display:flex;align-items:center;justify-content:center;background:#000000d9;color:#fff;padding:2rem;text-align:center;flex-direction:column;gap:1rem;z-index:10}.FSL-prediction{background:var(--color-surface);border-radius:var(--radius-md);padding:1.5rem;box-shadow:var(--shadow-sm);border:3px solid transparent;transition:var(--transition)}.FSL-prediction__letter{font-size:3.5rem;font-weight:700;text-align:center;line-height:1.2;min-height:4.5rem;color:var(--color-text)}.FSL-prediction__confidence{margin:1rem 0}.FSL-prediction__confidence-bar{height:8px;background:var(--color-border);border-radius:4px;overflow:hidden}.FSL-prediction__confidence-fill{height:100%;border-radius:4px;transition:width .3s ease}.FSL-prediction__confidence-fill--high{background:var(--color-success)}.FSL-prediction__confidence-fill--medium{background:var(--color-warning)}.FSL-prediction__confidence-fill--low{background:var(--color-danger)}.FSL-prediction__confidence-text{font-size:.875rem;color:var(--color-text-light);text-align:right;margin-top:.25rem;display:block}.FSL-prediction__status{text-align:center;font-size:1rem;padding:.5rem;color:var(--color-text-light)}.FSL-prediction__feedback{text-align:center;padding:1rem;font-size:1.125rem;font-weight:600;border-radius:var(--radius-sm);margin-top:1rem}.FSL-prediction--no-hand{opacity:.6}.FSL-prediction--correct{border-color:var(--color-success)}.FSL-prediction--incorrect{border-color:var(--color-danger)}.FSL-word-sequence{display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:.65rem;margin-top:1rem}.FSL-word-sequence__item{padding:.55rem .85rem;border:2px solid var(--color-border);border-radius:var(--radius-md);background:var(--color-surface);font-weight:700;color:var(--color-text)}.FSL-word-sequence__item--current{border-color:var(--color-primary);box-shadow:0 0 0 3px color-mix(in srgb,var(--color-primary) 16%,transparent)}.FSL-word-sequence__item--complete{border-color:var(--color-success);background:color-mix(in srgb,var(--color-success) 12%,var(--color-surface));color:var(--color-success)}.FSL-word-sequence__arrow{color:var(--color-text-light);font-size:1.3rem;font-weight:700}.FSL-debug{position:fixed;bottom:16px;right:16px;z-index:9999;width:340px;max-height:500px;overflow-y:auto;background:var(--color-bg-dark);color:#e0e0e0;border-radius:var(--radius-md);box-shadow:var(--shadow-lg);font-size:.8rem;font-family:Courier New,monospace}.FSL-debug--hidden{display:none}.FSL-debug__header{display:flex;justify-content:space-between;align-items:center;padding:.75rem 1rem;border-bottom:1px solid rgba(255,255,255,.1)}.FSL-debug__header h3{font-size:.9rem;margin:0}.FSL-debug__close{background:none;border:none;color:#e0e0e0;cursor:pointer;font-size:1.2rem}.FSL-debug__section{padding:.75rem 1rem;border-bottom:1px solid rgba(255,255,255,.05)}.FSL-debug__row{display:flex;justify-content:space-between;margin-bottom:.25rem}.FSL-debug__label{color:var(--color-text-muted);font-size:.7rem;text-transform:uppercase;letter-spacing:.5px}.FSL-debug__value{font-weight:600}.FSL-debug__status--ok{color:var(--color-success)}.FSL-debug__status--error{color:var(--color-danger)}.FSL-debug__bar{height:6px;background:#ffffff1a;border-radius:3px;overflow:hidden;margin-top:2px}.FSL-debug__bar-fill{height:100%;background:var(--color-primary);border-radius:3px}.FSL-progress{margin-bottom:1rem;width:100%}.FSL-progress__label{font-size:.875rem;font-weight:500;margin-bottom:.375rem;display:block}.FSL-progress__track{height:12px;background:var(--color-border);border-radius:6px;overflow:hidden}.FSL-progress__fill{height:100%;background:linear-gradient(90deg,var(--color-primary),var(--color-secondary));border-radius:6px;transition:width .5s ease}.FSL-progress__text{font-size:.8rem;color:var(--color-text-light);margin-top:.25rem;display:block;text-align:right}.FSL-alphabet-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(72px,1fr));gap:.75rem;max-width:500px;margin:0 auto}@media(min-width:768px){.FSL-alphabet-grid{grid-template-columns:repeat(5,1fr)}}.FSL-letter-card{aspect-ratio:1;display:flex;flex-direction:column;align-items:center;justify-content:center;background:var(--color-surface);border:2px solid var(--color-border);border-radius:var(--radius-md);cursor:pointer;font-size:1.5rem;font-weight:700;color:var(--color-text);transition:var(--transition);position:relative;text-decoration:none;overflow:hidden;padding:.25rem}.FSL-letter-card__image{width:100%;height:100%;object-fit:contain;border-radius:calc(var(--radius-md) - 4px)}.FSL-letter-reference__image{display:block;width:min(100%,330px);aspect-ratio:1;object-fit:contain;border-radius:var(--radius-md);margin:1.25rem auto;border:1px solid var(--color-border)}.FSL-letter-card:hover{border-color:var(--color-primary);box-shadow:var(--shadow-sm);transform:translateY(-2px);text-decoration:none}.FSL-letter-card:focus-visible{outline:3px solid var(--color-primary);outline-offset:2px}.FSL-letter-card--practiced{border-color:var(--color-border);background:var(--color-surface)}.FSL-letter-card__check{position:absolute;top:6px;right:6px;z-index:2;display:grid;place-items:center;width:24px;height:24px;border-radius:999px;background:var(--color-success);color:#fff;border:2px solid #fff;box-shadow:0 3px 10px #0f172a2e;font-size:.78rem;font-weight:800;line-height:1}.FSL-home__hero{text-align:center;padding:3rem 1rem 2rem}.FSL-home__title{font-size:2.5rem;font-weight:700;background:linear-gradient(135deg,var(--color-primary),var(--color-secondary));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;margin-bottom:.5rem}@media(min-width:768px){.FSL-home__title{font-size:3rem}}.FSL-home__subtitle{color:var(--color-text-light);font-size:1.125rem}.FSL-home__stats{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1rem;margin:2rem auto;max-width:900px}.FSL-home__stat-card{background:var(--color-surface);border-radius:var(--radius-md);padding:1.5rem;text-align:center;box-shadow:var(--shadow-sm)}.FSL-home__stat-value{font-size:2rem;font-weight:700;color:var(--color-primary)}.FSL-home__stat-label{font-size:.875rem;color:var(--color-text-light);margin-top:.25rem;display:block}.FSL-home__nav-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:1.5rem;margin:2rem auto;max-width:900px}.FSL-home__nav-card{background:var(--color-surface);border-radius:var(--radius-lg);padding:2rem;text-align:center;box-shadow:var(--shadow-sm);cursor:pointer;transition:var(--transition);border:2px solid transparent;text-decoration:none;color:inherit;display:block}.FSL-home__nav-card:hover{box-shadow:var(--shadow-md);border-color:var(--color-primary);transform:translateY(-4px);text-decoration:none}.FSL-home__nav-card-icon{font-size:3rem;margin-bottom:.75rem;display:block}.FSL-home__nav-card-title{font-size:1.25rem;font-weight:600;margin-bottom:.5rem;color:var(--color-text)}.FSL-home__nav-card-desc{color:var(--color-text-light);font-size:.9rem}.FSL-practice,.FSL-quiz{padding:0 1rem}.FSL-practice__layout,.FSL-quiz__layout{display:grid;gap:2rem}@media(min-width:1024px){.FSL-practice__layout,.FSL-quiz__layout{grid-template-columns:1fr 1.2fr;align-items:start}}.FSL-practice__info,.FSL-quiz__info{display:flex;flex-direction:column;gap:1.25rem}.FSL-practice__camera{display:flex;flex-direction:column;gap:1rem;align-items:center}.FSL-target-letter{font-size:6rem;font-weight:700;color:var(--color-primary);text-align:center;line-height:1.1}.FSL-sign-description{font-size:1rem;color:var(--color-text-light);text-align:center;max-width:400px;margin:0 auto;line-height:1.5;padding:1rem;background:var(--color-surface);border-radius:var(--radius-sm);border-left:4px solid var(--color-primary)}.FSL-practice__buttons{display:flex;gap:.75rem;flex-wrap:wrap;justify-content:center;margin-top:1rem}.FSL-quizzes-hub__grid{display:grid;grid-template-columns:1fr;gap:1.5rem;max-width:900px;margin:2rem auto}@media(min-width:768px){.FSL-quizzes-hub__grid{grid-template-columns:1fr 1fr}}.FSL-word-progress{display:flex;gap:.5rem;flex-wrap:wrap;justify-content:center;margin:1.5rem 0}.FSL-word-progress__letter{width:44px;height:52px;display:flex;align-items:center;justify-content:center;border:2px solid var(--color-border);border-radius:var(--radius-sm);font-size:1.25rem;font-weight:600;transition:var(--transition)}.FSL-word-progress__letter--current{border-color:var(--color-primary);background:#6c63ff14;color:var(--color-primary);box-shadow:0 0 0 3px #6c63ff33}.FSL-word-progress__letter--completed{border-color:var(--color-success);background:#28a74514;color:var(--color-success)}.FSL-word-progress__letter--pending{color:var(--color-text-muted)}.FSL-quiz-settings{max-width:480px;margin:2rem auto;padding:2rem;background:var(--color-surface);border-radius:var(--radius-md);box-shadow:var(--shadow-sm)}.FSL-quiz-settings__title{text-align:center;margin-bottom:1.5rem}.FSL-quiz-settings__group{margin-bottom:1.5rem}.FSL-quiz-settings__group-label{display:block;font-weight:600;margin-bottom:.75rem;font-size:.9rem;color:var(--color-text)}.FSL-quiz-settings__options{display:flex;gap:.5rem;flex-wrap:wrap}.FSL-quiz-settings__options input[type=radio]{position:absolute;opacity:0;pointer-events:none}.FSL-quiz-settings__options label{display:inline-block;padding:.5rem 1.25rem;border:2px solid var(--color-border);border-radius:999px;cursor:pointer;font-weight:500;transition:var(--transition);font-size:.9rem}.FSL-quiz-settings__options label:hover{border-color:var(--color-primary)}.FSL-quiz-settings__options input[type=radio]:checked+label{background:var(--color-primary);color:#fff;border-color:var(--color-primary)}.FSL-quiz-settings__options input[type=radio]:focus-visible+label{outline:3px solid var(--color-primary);outline-offset:2px}.FSL-quiz__header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1.5rem;flex-wrap:wrap;gap:1rem}.FSL-quiz__question-counter{font-size:.9rem;color:var(--color-text-light);font-weight:500}.FSL-quiz__score{font-size:1.25rem;font-weight:700;color:var(--color-primary)}.FSL-quiz__actions{display:flex;flex-wrap:wrap;gap:.75rem;justify-content:center;margin-top:1rem}.FSL-quiz__actions .FSL-btn{flex:1 1 130px}.FSL-results{text-align:center;max-width:600px;margin:2rem auto;padding:0 1rem}.FSL-results__title{font-size:2rem;margin-bottom:.5rem}.FSL-results__score{font-size:4rem;font-weight:700;color:var(--color-primary);margin:1rem 0}.FSL-results__stats{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin:2rem 0}.FSL-results__stat{background:var(--color-surface);padding:1.25rem;border-radius:var(--radius-md);box-shadow:var(--shadow-sm)}.FSL-results__stat-value{font-size:1.75rem;font-weight:700}.FSL-results__stat-value--success{color:var(--color-success)}.FSL-results__stat-value--danger{color:var(--color-danger)}.FSL-results__stat-label{font-size:.8rem;color:var(--color-text-light);margin-top:.25rem;display:block}.FSL-results__mistakes{margin:2rem 0;text-align:left}.FSL-results__mistakes h3{margin-bottom:1rem}.FSL-results__mistake-card{display:flex;align-items:center;justify-content:space-between;padding:.75rem 1rem;background:var(--color-surface);border-radius:var(--radius-sm);margin-bottom:.5rem;box-shadow:var(--shadow-sm)}.FSL-results__mistake-letter{font-size:1.5rem;font-weight:700}.FSL-results__actions{display:flex;gap:1rem;justify-content:center;margin-top:2rem;flex-wrap:wrap}.FSL-word-picker__grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(130px,1fr));gap:.75rem;max-width:600px;margin:1.5rem auto}.FSL-word-picker__word{padding:1rem;background:var(--color-surface);border:2px solid var(--color-border);border-radius:var(--radius-md);text-align:center;font-weight:600;font-size:1.1rem;cursor:pointer;transition:var(--transition);text-decoration:none;color:var(--color-text)}.FSL-word-picker__word:hover{border-color:var(--color-primary);box-shadow:var(--shadow-sm);transform:translateY(-2px);text-decoration:none}.FSL-auth{display:grid;place-items:center;min-height:calc(100vh - 180px)}.FSL-auth__card{width:min(100%,460px);padding:2.5rem}.FSL-auth__card h1{text-align:center;margin-bottom:.5rem}.FSL-auth__card>p,.FSL-auth__card small{display:block;text-align:center;color:var(--color-text-light)}.FSL-auth__mark{text-align:center;font-size:3rem;margin-bottom:.5rem}.FSL-auth__switch{text-align:center;margin-top:1.25rem}.FSL-auth__forgot{margin-top:-.4rem;text-align:right;font-size:.88rem}.FSL-auth__resend{display:block;margin:.7rem auto 0;padding:.25rem;color:var(--color-primary);background:transparent;border:0;font:inherit;font-size:.82rem;cursor:pointer}.FSL-auth__resend:hover{text-decoration:underline}.FSL-form{display:grid;gap:1rem;margin-top:1.5rem}.FSL-form label{display:grid;gap:.4rem;font-size:.9rem;font-weight:600;color:var(--color-text)}.FSL-form input,.FSL-form select,.FSL-form textarea{width:100%;border:1px solid var(--color-border);border-radius:var(--radius-sm);background:#fff;color:var(--color-text);padding:.7rem .8rem;font:inherit;font-weight:400}.FSL-form input:focus,.FSL-form select:focus,.FSL-form textarea:focus{outline:3px solid rgba(108,99,255,.2);border-color:var(--color-primary)}.FSL-form-row{display:grid;gap:.75rem;grid-template-columns:1fr 1fr}.FSL-checkbox{display:flex!important;align-items:center;gap:.55rem;font-weight:500!important}.FSL-checkbox input{width:auto}.FSL-form__message{min-height:1.25rem;font-size:.9rem}.FSL-form__message--error{color:var(--color-danger)}.FSL-form__message--success{color:var(--color-success)}.FSL-modal-open{overflow:hidden}.FSL-modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1200;display:grid;place-items:center;padding:1.25rem;background:#0f172a7a;opacity:0;pointer-events:none;transition:opacity .2s ease}.FSL-modal-backdrop.is-open{opacity:1;pointer-events:auto}.FSL-modal{width:min(100%,520px);max-height:min(86vh,720px);overflow-y:auto;background:#fff;border-radius:14px;border:1px solid var(--color-border);box-shadow:0 22px 60px #0f172a47;padding:1.5rem}.FSL-modal--confirm{width:min(100%,460px)}.FSL-modal__header{display:flex;align-items:flex-start;justify-content:space-between;gap:1rem;padding-bottom:1rem;margin-bottom:1rem;border-bottom:1px solid var(--color-border)}.FSL-modal__header h2{margin:.15rem 0 .25rem;font-size:1.35rem}.FSL-modal__header p{margin:0;color:var(--color-text-light);font-size:.9rem;overflow-wrap:anywhere}.FSL-modal__close{display:grid;place-items:center;flex:0 0 auto;width:38px;height:38px;border:1px solid var(--color-border);border-radius:9px;background:#fff;color:var(--color-text);cursor:pointer}.FSL-modal__close:hover{background:#eff6ff;border-color:#93c5fd;color:#1d4ed8}.FSL-modal__close svg{width:20px;height:20px}.FSL-modal__form{gap:1rem}.FSL-modal__actions{display:flex;justify-content:flex-end;gap:.75rem;flex-wrap:wrap}.FSL-dashboard{padding-top:1rem}.FSL-dashboard__heading{display:flex;align-items:end;justify-content:space-between;gap:1rem;flex-wrap:wrap;margin-bottom:2rem}.FSL-dashboard__heading h1{font-size:clamp(2rem,4vw,2.75rem);margin-bottom:.25rem}.FSL-dashboard__heading p,.FSL-muted{color:var(--color-text-light);margin-bottom:0}.FSL-room-code{background:linear-gradient(135deg,var(--color-primary),var(--color-primary-dark));color:#fff;padding:.85rem 1rem;border-radius:var(--radius-md);min-width:180px;text-align:center;box-shadow:var(--shadow-sm)}.FSL-room-code span,.FSL-room-code small{display:block;font-size:.72rem;opacity:.82}.FSL-room-code strong{display:block;font-size:1.5rem;letter-spacing:.16em;line-height:1.35}.FSL-eyebrow{display:block;color:var(--color-primary);text-transform:uppercase;letter-spacing:.1em;font-size:.75rem;font-weight:700;margin-bottom:.4rem}.FSL-metric-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(155px,1fr));gap:1rem;margin-bottom:2rem}.FSL-metric{background:var(--color-surface);padding:1.25rem;border-radius:var(--radius-md);box-shadow:var(--shadow-sm);border-top:3px solid var(--color-primary)}.FSL-metric strong{font-size:2rem;display:block;color:var(--color-primary);line-height:1.2}.FSL-metric span{color:var(--color-text-light);font-size:.85rem}.FSL-section{margin-top:2rem}.FSL-section>h2,.FSL-section__heading{margin-bottom:1rem}.FSL-section__heading{display:flex;justify-content:space-between;align-items:center}.FSL-section__heading h1{margin:.15rem 0 .25rem}.FSL-section__heading p{margin:0;color:var(--color-text-light)}.FSL-report-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));gap:1.25rem;align-items:start}.FSL-apex-chart{min-height:280px;margin-top:.75rem}.FSL-apex-chart .apexcharts-canvas{margin:0 auto}.FSL-filter-panel{display:grid;grid-template-columns:repeat(auto-fit,minmax(190px,1fr));gap:1rem;margin-top:1rem}.FSL-filter-panel label{display:grid;gap:.45rem;color:var(--color-text-light);font-size:.82rem;font-weight:700}.FSL-filter-panel select{width:100%;border:1px solid #d7e0ee;border-radius:var(--radius-sm);background:#fbfdff;color:var(--color-text);padding:.7rem .8rem;font:inherit;font-weight:500}.FSL-filter-panel select:focus{outline:3px solid rgba(108,99,255,.2);border-color:var(--color-primary);background:#fff}.FSL-dashboard-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(235px,1fr));gap:1rem}.FSL-activity-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem}.FSL-activity-card{display:grid;gap:.45rem;min-height:155px;padding:1.25rem;text-align:left;border:1px solid var(--color-border);border-radius:var(--radius-md);background:#fff;color:var(--color-text);cursor:pointer;transition:var(--transition)}.FSL-activity-card:hover{transform:translateY(-2px);border-color:#93c5fd;box-shadow:var(--shadow-sm)}.FSL-activity-card__icon{display:grid;place-items:center;width:42px;height:42px;border-radius:12px;color:#2563eb;background:#eff6ff}.FSL-activity-card__icon svg{width:21px;height:21px}.FSL-activity-card strong{font-size:1rem}.FSL-activity-card small{color:var(--color-text-light);font-weight:700}.FSL-student-tools{display:grid;grid-template-columns:minmax(0,1fr) minmax(360px,1fr);gap:1.25rem;align-items:stretch}.FSL-student-tools>*{min-width:0}.FSL-student-tools .FSL-section{height:calc(100% - 2rem)}.FSL-dashboard-interpreter{display:flex;flex-direction:column;padding:1.25rem;border-top:3px solid var(--color-primary)}.FSL-dashboard-interpreter__heading{display:flex;align-items:center;justify-content:space-between;gap:1rem;margin-bottom:.35rem}.FSL-dashboard-interpreter__heading h2{margin:0;font-size:1.35rem}.FSL-dashboard-interpreter__live{display:inline-flex;align-items:center;gap:.35rem;flex:0 0 auto;padding:.35rem .6rem;border-radius:999px;background:#ecfdf5;color:#047857;font-size:.75rem;font-weight:800}.FSL-dashboard-interpreter__live svg{width:14px;height:14px}.FSL-dashboard-interpreter>p{color:var(--color-text-light);font-size:.88rem}.FSL-dashboard-interpreter .FSL-camera{max-width:none}.FSL-dashboard-interpreter .FSL-camera__viewport{aspect-ratio:4 / 3}.FSL-dashboard-interpreter .FSL-prediction{padding:.85rem 0 0;border:0;box-shadow:none}.FSL-dashboard-interpreter .FSL-prediction__letter{min-height:4.2rem;color:var(--color-primary)}@media(max-width:900px){.FSL-student-tools{grid-template-columns:1fr}.FSL-student-tools .FSL-section{height:auto}}.FSL-assignment{background:var(--color-surface);box-shadow:var(--shadow-sm);border-radius:var(--radius-md);padding:1.3rem;border:1px solid var(--color-border)}.FSL-assignment__type{display:block;font-size:.8rem;font-weight:700;color:var(--color-primary);margin-bottom:.5rem}.FSL-assignment h3{margin-bottom:.35rem}.FSL-assignment p{color:var(--color-text-light);font-size:.9rem;min-height:2.7rem}.FSL-empty-card,.FSL-empty{color:var(--color-text-light);text-align:center;padding:1.5rem}.FSL-empty-card{background:var(--color-surface);border:1px dashed var(--color-border);border-radius:var(--radius-md)}.FSL-table-wrap{overflow-x:auto;background:var(--color-surface);border-radius:var(--radius-md);box-shadow:var(--shadow-sm)}.FSL-table{border-collapse:collapse;width:100%;min-width:520px}.FSL-table th,.FSL-table td{padding:.85rem 1rem;text-align:left;border-bottom:1px solid var(--color-border);font-size:.9rem}.FSL-table th{background:#fbfbff;color:var(--color-text-light);font-size:.75rem;text-transform:uppercase;letter-spacing:.04em}.FSL-table tr:last-child td{border-bottom:0}.FSL-table-actions{display:inline-flex;align-items:center;gap:.45rem;white-space:nowrap}.FSL-icon-btn{display:grid;place-items:center;width:34px;height:34px;border:1px solid var(--color-border);border-radius:8px;background:#fff;color:var(--color-primary);cursor:pointer;transition:var(--transition)}.FSL-icon-btn:hover{background:#eff6ff;border-color:#93c5fd;color:#1d4ed8}.FSL-icon-btn--danger{color:var(--color-danger)}.FSL-icon-btn--danger:hover{background:#fef2f2;border-color:#fecaca;color:#b91c1c}.FSL-icon-btn:disabled{cursor:not-allowed;opacity:.55}.FSL-icon-btn:focus-visible{outline:3px solid rgba(37,99,235,.24);outline-offset:2px}.FSL-icon-btn svg{width:17px;height:17px;stroke-width:2.35}.FSL-attempt-tree{display:grid;gap:.55rem;min-width:240px}.FSL-attempt-tree__attempt{display:flex;align-items:center;justify-content:space-between;gap:.8rem;padding:.65rem .75rem;border:1px solid var(--color-border);border-radius:var(--radius-sm);background:#fbfdff}.FSL-attempt-tree__main{display:grid;gap:.12rem;min-width:0}.FSL-attempt-tree__attempt span{color:var(--color-text);font-weight:650}.FSL-attempt-tree__attempt strong{color:var(--color-primary);font-size:.86rem}.FSL-attempt-tree__attempt small{color:var(--color-text-light)}.FSL-teacher-grid{display:grid;grid-template-columns:minmax(280px,.9fr) minmax(350px,1.1fr);gap:1.5rem;align-items:start}.FSL-teacher-grid .FSL-card:hover{transform:none}.FSL-drawer-open{overflow:hidden}.FSL-drawer-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:90;background:#0f172a6b;opacity:0;pointer-events:none;transition:opacity .24s ease}.FSL-drawer-backdrop.is-open{opacity:1;pointer-events:auto}.FSL-form-drawer{position:fixed;z-index:91;inset:0 0 0 auto;width:min(100%,570px);overflow-y:auto;background:#fff;box-shadow:-18px 0 44px #0f172a33;padding:1.75rem;transform:translate(100%);visibility:hidden;transition:transform .3s cubic-bezier(.2,.8,.2,1),visibility 0s linear .3s}.FSL-form-drawer.is-open{transform:translate(0);visibility:visible;transition:transform .3s cubic-bezier(.2,.8,.2,1)}.FSL-form-drawer__header{display:flex;align-items:flex-start;justify-content:space-between;gap:1rem;padding-bottom:1.15rem;margin-bottom:.25rem;border-bottom:1px solid var(--color-border)}.FSL-form-drawer__header h2{margin:.25rem 0 0;font-size:1.45rem}.FSL-form-drawer__close{display:grid;place-items:center;width:38px;height:38px;border:1px solid var(--color-border);border-radius:9px;background:#fff;color:var(--color-text);cursor:pointer}.FSL-form-drawer__close:hover{background:#eff6ff;border-color:#93c5fd;color:#1d4ed8}.FSL-form-drawer__close svg{width:20px;height:20px}.FSL-info-drawer{position:fixed;z-index:91;inset:0 0 0 auto;width:min(100%,520px);overflow-y:auto;background:#fff;box-shadow:-18px 0 44px #0f172a33;padding:1.75rem}.FSL-info-list{display:grid;gap:.8rem}.FSL-info-list__item{display:grid;gap:.25rem;padding:.9rem 1rem;border:1px solid var(--color-border);border-radius:var(--radius-sm);background:#fbfdff}.FSL-info-list__item span,.FSL-info-list__item small{color:var(--color-text-light)}.FSL-status{display:inline-block;background:#f1f3f5;color:var(--color-text-light);padding:.2rem .55rem;border-radius:999px;font-size:.75rem;font-weight:700}.FSL-status--active{color:#1d7a34;background:#28a7451f}@media(max-width:800px){.FSL-teacher-grid,.FSL-form-row{grid-template-columns:1fr}}@media(max-width:600px){.FSL-form-drawer{width:100%;padding:1.25rem}}:root{--color-primary: #2563eb;--color-primary-dark: #1d4ed8;--color-primary-light: #60a5fa;--color-secondary: #14b8a6;--color-bg: #f4f7fb;--color-surface: #fff;--color-text: #172033;--color-text-light: #64748b;--color-border: #e2e8f0;--shadow-sm: 0 2px 8px rgba(15, 23, 42, .06);--shadow-md: 0 10px 28px rgba(15, 23, 42, .1);--radius-md: 14px;--radius-lg: 20px}body{background:#f4f7fb}#page-content{margin-left:264px;min-height:100vh;padding:2.25rem 2.5rem 4rem}body.FSL-sidebar-hidden #page-content{margin-left:0;padding-top:2rem}.FSL-container{max-width:1360px;padding:0}.FSL-navbar{position:fixed;inset:0 auto 0 0;width:264px;background:#101a35;box-shadow:none;z-index:1000}.FSL-navbar__inner{height:100%;display:flex;flex-direction:column;align-items:stretch;padding:1.5rem 1rem;max-width:none}.FSL-navbar__brand{display:flex;align-items:center;gap:.75rem;color:#fff;font-size:1rem;line-height:1.1;padding:.25rem .5rem 2rem}.FSL-navbar__brand small{display:block;color:#8fa2c8;font-size:.67rem;letter-spacing:.08em;text-transform:uppercase;margin-top:.35rem}.FSL-navbar__brand-mark{display:grid;place-items:center;width:38px;height:38px;background:linear-gradient(135deg,#60a5fa,#2563eb);border-radius:11px}.FSL-navbar__brand-mark svg{width:21px;height:21px;stroke-width:2.4}.FSL-navbar__section-label{color:#7e91b8;font-weight:700;font-size:.68rem;letter-spacing:.12em;text-transform:uppercase;padding:0 .65rem .7rem}.FSL-navbar__links{display:grid;gap:.25rem}.FSL-navbar__links a,.FSL-navbar__logout{display:flex;align-items:center;gap:.8rem;color:#bac7e3;background:transparent;border:0;border-radius:9px;padding:.75rem .7rem;font-size:.92rem;text-align:left;width:100%}.FSL-navbar__links svg,.FSL-navbar__logout svg{width:18px;height:18px;flex:0 0 auto;stroke-width:2}.FSL-navbar__links a:hover,.FSL-navbar__links a.active,.FSL-navbar__logout:hover{background:#60a5fa29;color:#fff;text-decoration:none}.FSL-navbar__links a.active{box-shadow:inset 3px 0 #60a5fa;font-weight:600}.FSL-navbar__logout{font-family:inherit;cursor:pointer;margin-top:.35rem}.FSL-navbar__footer{margin-top:auto;display:flex;align-items:center;gap:.5rem;color:#7e91b8;font-size:.7rem;padding:.75rem .6rem}.FSL-navbar__footer-dot{width:7px;height:7px;border-radius:50%;background:#34d399;box-shadow:0 0 0 3px #34d39921}.FSL-navbar__menu-btn{color:#fff}.FSL-home__hero{min-height:222px;border-radius:var(--radius-lg);text-align:left;display:flex;align-items:center;justify-content:space-between;overflow:hidden;padding:2.5rem 3rem;background:linear-gradient(115deg,#173d91,#2563eb 62%,#3b82f6);position:relative;color:#fff}.FSL-home__hero:after{content:"";position:absolute;width:340px;height:340px;border:48px solid rgba(255,255,255,.1);border-radius:50%;right:-100px;bottom:-190px}.FSL-home__hero .FSL-eyebrow{color:#bfdbfe}.FSL-home__title{background:none;-webkit-text-fill-color:#fff;color:#fff;font-size:clamp(2rem,4vw,2.8rem);margin:0 0 .35rem}.FSL-home__subtitle{color:#dbeafe;max-width:600px;margin:0}.FSL-btn--hero{margin-top:1.35rem;background:#fff;color:#1d4ed8;padding:.7rem 1rem;box-shadow:0 8px 18px #0f172a29}.FSL-btn--hero:hover{background:#eaf2ff;color:#1e40af}.FSL-btn--hero svg{width:17px;height:17px}.FSL-home__hero-art{display:flex;align-items:center;gap:.75rem;position:relative;z-index:1;padding:.85rem 1.1rem;border:1px solid rgba(255,255,255,.25);background:#ffffff1c;border-radius:14px;min-width:155px}.FSL-home__hero-art svg{width:40px;height:40px;stroke-width:1.7}.FSL-home__hero-art small{color:#e0edff;line-height:1.35;font-weight:700;text-transform:uppercase;letter-spacing:.05em}.FSL-home__stats{grid-template-columns:1.55fr repeat(3,1fr);max-width:none;margin:1.25rem 0 2.5rem;gap:1rem}.FSL-home__stat-card{border:1px solid var(--color-border);box-shadow:none;text-align:left;padding:1.1rem 1.25rem}.FSL-home__stat-card:first-child{background:#fff}.FSL-home__stat-value{font-size:1.65rem;color:#1e40af}.FSL-home__stat-label{font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:.055em}.FSL-progress__track{height:8px;background:#e8eef8}.FSL-progress__fill{background:linear-gradient(90deg,#2563eb,#38bdf8)}.FSL-section__heading{margin-bottom:1rem}.FSL-section__heading h2{font-size:1.4rem}.FSL-eyebrow{color:#2563eb;font-size:.7rem}.FSL-home__nav-cards{max-width:none;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem;margin:0}.FSL-home__nav-card{min-height:238px;text-align:left;box-shadow:none;border:1px solid var(--color-border);padding:1.45rem;position:relative;overflow:hidden;background:linear-gradient(145deg,#fff,#fbfdff)}.FSL-home__nav-card:after{content:"";position:absolute;width:105px;height:105px;border-radius:50%;right:-38px;top:-38px;background:#2563eb0f}.FSL-home__nav-card:hover{border-color:#93c5fd;box-shadow:var(--shadow-md);transform:translateY(-3px)}.FSL-home__nav-card-icon{color:#2563eb;display:grid;place-items:center;width:43px;height:43px;border-radius:12px;background:#eff6ff;margin:0 0 1.25rem}.FSL-home__nav-card-icon svg{width:22px;height:22px;stroke-width:2}.FSL-course-card__tag{color:#2563eb;display:block;font-size:.67rem;font-weight:800;letter-spacing:.1em}.FSL-home__nav-card-title{margin-top:.45rem;font-size:1.35rem}.FSL-home__nav-card-desc{font-size:.9rem;line-height:1.55}.FSL-course-card__action{position:absolute;bottom:1.35rem;color:#1d4ed8;font-size:.82rem;font-weight:700}.FSL-dashboard__heading{background:#fff;border:1px solid var(--color-border);box-shadow:none;padding:1.5rem 1.75rem;border-radius:var(--radius-md)}.FSL-dashboard__heading h1{font-size:2rem}.FSL-metric{border:1px solid var(--color-border);border-top:0;box-shadow:none;position:relative;overflow:hidden}.FSL-metric:before{content:"";position:absolute;left:0;top:0;height:3px;width:100%;background:linear-gradient(90deg,#2563eb,#38bdf8)}.FSL-metric strong{color:#1e40af}.FSL-card,.FSL-assignment{border:1px solid var(--color-border);box-shadow:none}.FSL-card:hover{transform:none;box-shadow:var(--shadow-sm)}.FSL-assignment{border-left:4px solid #60a5fa}.FSL-assignment__type{color:#1d4ed8}.FSL-table-wrap{border:1px solid var(--color-border);box-shadow:none}.FSL-table th{background:#f8fafc;color:#64748b}.FSL-table td{color:#334155}.FSL-status--active{background:#dcfce7;color:#15803d}.FSL-form input,.FSL-form select,.FSL-form textarea{border-color:#d7e0ee;background:#fbfdff}.FSL-form input:focus,.FSL-form select:focus,.FSL-form textarea:focus{background:#fff}.FSL-btn{border-radius:8px;font-weight:650}.FSL-btn--primary{background:#2563eb}.FSL-btn--primary:hover{background:#1d4ed8}.FSL-btn--secondary{border-color:#2563eb}.FSL-quizzes-hub__grid{max-width:none}.FSL-quizzes-hub .FSL-card{border-top:4px solid #2563eb}.FSL-quiz-settings{border:1px solid var(--color-border);box-shadow:none;border-radius:var(--radius-lg)}.FSL-quiz__info,.FSL-prediction{border:1px solid var(--color-border);box-shadow:none}.FSL-camera__viewport{border-radius:var(--radius-lg)}.FSL-alphabet-grid{max-width:680px}.FSL-letter-card{box-shadow:none;border-color:#dce5f1}.FSL-letter-card:hover{background:#eff6ff;border-color:#60a5fa}.FSL-letter-card--practiced{background:#fff;border-color:#dce5f1}.FSL-letter-card--practiced:after{content:none}.FSL-quizzes-hub,.FSL-quiz{width:100%;max-width:none}.FSL-quizzes-hub{min-height:calc(100vh - 6.25rem);display:flex;flex-direction:column;gap:1.25rem}.FSL-quizzes-hub .FSL-section{flex:1;margin-top:0;display:flex;flex-direction:column}.FSL-quizzes-hub .FSL-dashboard-grid{flex:1;width:100%;align-content:start;grid-template-columns:repeat(auto-fit,minmax(280px,1fr))}.FSL-quizzes-hub .FSL-empty-card{width:100%;min-height:100%}.FSL-quiz{min-height:calc(100vh - 6.25rem);padding:0;display:flex}.FSL-quiz__layout{width:100%;min-height:inherit;grid-template-columns:minmax(280px,.78fr) minmax(460px,1.22fr);align-items:stretch;gap:1.25rem}.FSL-quiz__info,.FSL-practice__camera{width:100%;min-height:100%}.FSL-quiz__info{justify-content:space-between}.FSL-practice__camera{align-items:stretch}.FSL-practice__camera .FSL-camera{flex:1 1 auto;max-width:none;min-height:0;margin:0}.FSL-practice__camera .FSL-camera__viewport{flex:1 1 auto;min-height:clamp(360px,calc(100vh - 14rem),720px)}.FSL-practice__camera .FSL-prediction,.FSL-practice__camera #prediction-container{width:100%}.FSL-classroom-header{display:flex;justify-content:space-between;align-items:end;gap:1.5rem;background:linear-gradient(115deg,#eff6ff,#fff);border:1px solid #cfe0ff;border-radius:var(--radius-lg);padding:1.8rem 2rem}.FSL-classroom-header h1{font-size:2rem;margin-bottom:.35rem}.FSL-classroom-header p{color:var(--color-text-light);margin:0}.FSL-classroom-header__count{min-width:125px;text-align:center;padding:.75rem 1rem;background:#fff;border:1px solid #dbeafe;border-radius:12px}.FSL-classroom-header__count strong{display:block;color:#1d4ed8;font-size:1.6rem}.FSL-classroom-header__count span{color:var(--color-text-light);font-size:.72rem;text-transform:uppercase;font-weight:700;letter-spacing:.04em}.FSL-classroom-activity{min-height:225px;position:relative;overflow:hidden}.FSL-classroom-activity__icon,.FSL-self-quiz__icon{display:grid;place-items:center;width:42px;height:42px;border-radius:12px;color:#2563eb;background:#eff6ff;margin-bottom:.8rem}.FSL-classroom-activity__icon svg,.FSL-self-quiz__icon svg{width:21px;height:21px}.FSL-classroom-activity .FSL-btn{position:absolute;left:1.25rem;bottom:1.25rem}.FSL-classroom-activity .FSL-btn svg,.FSL-self-quiz .FSL-btn svg{width:16px;height:16px}.FSL-self-quiz{display:flex;flex-direction:column;align-items:flex-start;gap:.55rem;padding:1.5rem}.FSL-self-quiz h2,.FSL-self-quiz p{margin:0}.FSL-self-quiz p{color:var(--color-text-light)}.FSL-self-quiz small{color:#1d4ed8;font-weight:700}.FSL-self-quiz .FSL-btn{margin-top:.75rem}.FSL-status--taken{margin-left:.45rem;color:#475569;background:#e2e8f0}.FSL-classroom-activity--completed{background:#f8fafc}.FSL-classroom-activity .FSL-btn:disabled{border-color:#cbd5e1;color:#64748b;background:#f1f5f9;cursor:not-allowed}.FSL-auth{min-height:calc(100vh - 4rem)}.FSL-auth__card{border:1px solid var(--color-border);box-shadow:var(--shadow-md)}.FSL-auth__mark{background:#eff6ff;width:64px;height:64px;border-radius:16px;display:grid;place-items:center;margin:0 auto 1.25rem}@media(max-width:1023px){.FSL-quiz{min-height:auto;display:block}.FSL-quiz__layout{min-height:auto;grid-template-columns:1fr}.FSL-quiz__info,.FSL-practice__camera,.FSL-practice__camera .FSL-camera__viewport{min-height:auto}}@media(max-width:980px){#page-content{margin-left:0;padding:5.75rem 1.25rem 3rem}.FSL-navbar{position:fixed;inset:0 0 auto 0;height:64px;width:auto}.FSL-navbar__inner{flex-direction:row;align-items:center;padding:.7rem 1rem}.FSL-navbar__brand{padding:0;font-size:.9rem}.FSL-navbar__brand-mark{width:33px;height:33px}.FSL-navbar__section-label,.FSL-navbar__footer{display:none}.FSL-navbar__menu-btn{display:block;order:3;margin-left:auto}.FSL-navbar__links{display:none;position:absolute;top:64px;left:0;right:0;background:#101a35;padding:.75rem;box-shadow:var(--shadow-md)}.FSL-navbar--open .FSL-navbar__links{display:grid}.FSL-navbar__links a{padding:.7rem}.FSL-home__stats{grid-template-columns:repeat(2,1fr)}.FSL-home__nav-cards{grid-template-columns:1fr}.FSL-home__nav-card{min-height:190px}.FSL-home__hero{padding:2rem}.FSL-home__hero-art{display:none}}@media(max-width:520px){#page-content{padding:5.1rem 1rem 2rem}.FSL-home__hero{min-height:auto;padding:1.6rem}.FSL-home__title{font-size:1.85rem}.FSL-home__stats{grid-template-columns:1fr 1fr}.FSL-home__stat-card:first-child{grid-column:1 / -1}.FSL-dashboard__heading{padding:1.2rem}.FSL-dashboard__heading h1{font-size:1.6rem}}@media(max-width:600px){.FSL-classroom-header{align-items:flex-start;flex-direction:column;padding:1.4rem}.FSL-classroom-header__count{text-align:left;min-width:0}.FSL-classroom-activity .FSL-btn{position:static;margin-top:.5rem}}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes fadeIn{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}@keyframes flashCorrect{0%,to{background-color:transparent}50%{background-color:#28a74526}}@keyframes flashIncorrect{0%,to{background-color:transparent}50%{background-color:#dc354526}}@keyframes pulse{0%,to{transform:scale(1)}50%{transform:scale(1.05)}}.FSL-fade-in{animation:fadeIn .3s ease}.FSL-flash-correct{animation:flashCorrect 1s ease}.FSL-flash-incorrect{animation:flashIncorrect 1s ease}.FSL-pulse{animation:pulse .5s ease}.FSL-feedback--correct{background:#28a7451a;color:var(--color-success);border:1px solid var(--color-success)}.FSL-feedback--incorrect{background:#dc35451a;color:var(--color-danger);border:1px solid var(--color-danger)}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.FSL-activity-filters{display:grid;grid-template-columns:minmax(180px,2fr) repeat(2,minmax(130px,1fr)) auto;align-items:end;gap:1rem;margin-bottom:1.25rem}.FSL-info-drawer--students{width:min(100%,920px)}.FSL-student-tree{width:100%;min-width:0;margin-top:1rem}.FSL-student-tree__node{padding:12px;display:grid;gap:6px;color:#1e293b;font:13px Inter,system-ui,sans-serif;overflow-wrap:anywhere}.FSL-student-tree__node small{color:#64748b;font-size:11px}@media(max-width:700px){.FSL-activity-filters{grid-template-columns:1fr}.FSL-info-drawer--students{padding:1rem}}.FSL-rooms-page{padding-bottom:2rem}.FSL-rooms-heading{display:flex;align-items:center;justify-content:space-between;gap:2rem;margin:.5rem 0 2rem}.FSL-rooms-heading h1{font-size:clamp(2rem,4vw,3rem);letter-spacing:-.055em;line-height:1.2;margin:.4rem 0 .8rem}.FSL-rooms-heading h1 span{color:var(--color-primary)}.FSL-rooms-heading p{color:#64748b;max-width:520px;margin:0}.FSL-rooms-heading__mark{display:grid;place-items:center;width:88px;height:88px;border-radius:26px;background:#eeecff;color:#6c63ff;transform:rotate(-7deg);flex-shrink:0}.FSL-rooms-heading__mark svg{width:42px;height:42px}.FSL-rooms-layout{display:grid;grid-template-columns:minmax(0,1fr) 300px;gap:1.75rem;align-items:start}.FSL-rooms-section-title{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:.5rem;margin-bottom:1rem}.FSL-rooms-section-title h2{font-size:1.1rem}.FSL-rooms-section-title h2 span{margin-left:.4rem;background:#eeecff;color:#5a52d5;padding:.15rem .55rem;border-radius:8px;font-size:.8rem}.FSL-rooms-section-title small{color:#64748b}.FSL-rooms-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem}.FSL-room-tile{--room-accent: #6c63ff;--room-tint: #f1efff;display:flex;flex-direction:column;gap:1rem;border:1px solid #e2e8f0;border-radius:18px;background:#fff;color:#1e293b;text-align:left;padding:1.25rem;font:inherit;cursor:pointer;transition:border-color .2s,box-shadow .2s,transform .2s;min-width:0}.FSL-room-tile--1{--room-accent: #0f877c;--room-tint: #e6f7f2}.FSL-room-tile--2{--room-accent: #b36d0a;--room-tint: #fff5df}.FSL-room-tile:hover{border-color:var(--room-accent);box-shadow:0 8px 24px #2834560d;transform:translateY(-3px)}.FSL-room-tile:focus-visible{outline:3px solid var(--color-primary);outline-offset:3px}.FSL-room-tile__top{display:flex;align-items:center;justify-content:space-between;gap:.5rem}.FSL-room-tile__icon{display:inline-grid;place-items:center;width:46px;height:46px;border-radius:13px;background:var(--room-tint, #eeecff);color:var(--room-accent, #6c63ff);flex-shrink:0}.FSL-room-tile__icon svg{width:23px;height:23px}.FSL-room-tile__badge{display:inline-flex;align-items:center;gap:.25rem;color:#64748b;font-size:.7rem}.FSL-room-tile__badge svg{width:13px;height:13px}.FSL-room-tile>strong{font-size:1.1rem;line-height:1.45;overflow-wrap:anywhere}.FSL-room-tile__code{display:flex;flex-wrap:wrap;align-items:center;gap:.5rem;color:#64748b;font-size:.65rem;letter-spacing:.06em}.FSL-room-tile__code code{color:#475569;padding:.2rem .45rem;border-radius:5px;background:#f1f5f9;font-size:.8rem}.FSL-room-tile__stats{display:flex;flex-wrap:wrap;gap:.85rem;margin-top:auto;font-size:.75rem;color:#64748b}.FSL-room-tile__stats>span,.FSL-room-tile__footer{display:flex;align-items:center;gap:.4rem}.FSL-room-tile__stats svg{width:15px;height:15px}.FSL-room-tile__footer{justify-content:space-between;border-top:1px solid #eef2f6;padding-top:.85rem;color:var(--room-accent);font-size:.8rem;font-weight:600}.FSL-room-tile__footer svg{width:18px;height:18px}.FSL-room-join{background:#fff;border:1px solid #e2e8f0;border-radius:18px;padding:1.5rem}.FSL-room-join__icon{display:inline-grid;place-items:center;width:44px;height:44px;background:#eeecff;color:#6c63ff;border-radius:12px;margin-bottom:1rem}.FSL-room-join h2{font-size:1.2rem;margin-bottom:.5rem}.FSL-room-join>p,.FSL-room-join .FSL-form>small{font-size:.8rem;color:#64748b}.FSL-room-join textarea{resize:vertical;min-height:100px}.FSL-room-join .FSL-btn{width:100%;font-size:.85rem}.FSL-room-join svg{width:20px;height:20px}.FSL-room-join__note{display:flex;gap:.6rem;margin-top:1.25rem;padding-top:1.1rem;border-top:1px solid #eef2f6;font-size:.75rem;color:#64748b}.FSL-room-join__note svg{flex-shrink:0;color:#0f877c}.FSL-rooms-empty{grid-column:1 / -1;display:grid;justify-items:center;text-align:center;gap:.75rem;padding:3rem 1.5rem;background:#fff;border:1px dashed #cbd5e1;border-radius:18px}.FSL-rooms-empty h3{font-size:1.1rem}.FSL-rooms-empty p{color:#64748b;font-size:.85rem;max-width:320px;margin:0}.FSL-room-drawer{background:#f8fafc}.FSL-room-drawer .FSL-form-drawer__header .FSL-room-tile__icon{display:grid;margin-bottom:1rem}.FSL-room-drawer .FSL-form-drawer__header h2{overflow-wrap:anywhere;margin-top:.35rem}.FSL-room-quiz{display:grid;gap:.75rem;padding:1.25rem;background:#fff;border:1px solid #e2e8f0;border-radius:15px}.FSL-room-quiz__type{display:flex;align-items:center;gap:.45rem;font-size:.65rem;font-weight:700;letter-spacing:.07em;color:#6c63ff}.FSL-room-quiz svg{width:17px;height:17px}.FSL-room-quiz>span:not(.FSL-status):not(.FSL-room-quiz__type),.FSL-room-quiz>small{color:#64748b;font-size:.8rem}.FSL-room-quiz .FSL-status{display:inline-flex;align-items:center;gap:.4rem;justify-self:start}.FSL-room-quiz .FSL-btn{font-size:.85rem;justify-content:space-between;margin-top:.25rem}@media(max-width:1100px){.FSL-rooms-layout{grid-template-columns:minmax(0,1fr) 270px}.FSL-rooms-grid{grid-template-columns:1fr}}@media(max-width:760px){.FSL-rooms-layout{grid-template-columns:1fr}.FSL-rooms-heading__mark{display:none}.FSL-room-join{order:-1}}@media(prefers-reduced-motion:reduce){.FSL-room-tile{transition:none}.FSL-room-tile:hover{transform:none}}.FSL-form textarea{display:block;min-height:108px;resize:vertical;line-height:1.6;transition:border-color .18s ease,background-color .18s ease,box-shadow .18s ease}.FSL-form textarea::placeholder{color:#94a3b8;opacity:1}.FSL-form textarea:hover:not(:disabled){border-color:#a5b4fc}.FSL-form textarea:focus{box-shadow:0 0 0 3px #6c63ff14}.FSL-form textarea[name=roomCodes]{font-family:ui-monospace,SFMono-Regular,Consolas,monospace;font-size:.875rem;letter-spacing:.04em;padding:.85rem 1rem}.FSL-form textarea:disabled{background:#f1f5f9;color:#64748b;cursor:not-allowed}.FSL-password-field{display:grid;gap:.4rem}.FSL-password-field__input{position:relative}.FSL-password-field__input input{padding-right:3.25rem}.FSL-password-toggle{position:absolute;right:.2rem;top:50%;transform:translateY(-50%);display:grid;place-items:center;width:44px;height:40px;padding:0;border:0;border-radius:6px;background:transparent;color:#64748b;cursor:pointer}.FSL-password-toggle:hover{color:#2563eb;background:#eff6ff}.FSL-password-toggle:focus-visible{outline:2px solid #2563eb;outline-offset:-2px}.FSL-password-toggle svg{width:20px;height:20px;pointer-events:none}.FSL-password-field__input input::-ms-reveal{display:none}
