:root{
    --bg:#030813;
    --bg2:#06101f;
    --panel:#0b1424;
    --panel2:#101b31;
    --glass:rgba(18,32,56,.82);
    --glass2:rgba(17,29,51,.72);
    --line:rgba(103,140,220,.22);
    --line-strong:rgba(61,122,255,.58);
    --text:#f8fbff;
    --muted:#a9b5cc;
    --soft:#d7deeb;
    --blue:#3578ff;
    --blue2:#5e98ff;
    --gold:#ffd36b;
    --red:#ff6b7b;
    --green:#52f2b0;
    --shadow:0 24px 90px rgba(0,0,0,.55);
    --radius:24px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth;background:#000}
body{
    margin:0;
    min-height:100vh;
    color:var(--text);
    font-family:-apple-system,BlinkMacSystemFont,"SF Pro Display","Segoe UI",Roboto,Arial,sans-serif;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
    background:
        radial-gradient(circle at 50% -16%, rgba(58,120,255,.33), transparent 34rem),
        radial-gradient(circle at 80% 18%, rgba(91,154,255,.17), transparent 20rem),
        linear-gradient(180deg,#020610 0%,#040914 50%,#02040a 100%);
}
a{color:inherit;text-decoration:none}
button,input{font:inherit}
button{-webkit-tap-highlight-color:transparent}
svg{width:1em;height:1em;fill:none;stroke:currentColor;stroke-width:2.15;stroke-linecap:round;stroke-linejoin:round}
.ambient-glow{position:fixed;pointer-events:none;z-index:0;border-radius:999px;filter:blur(12px)}
.glow-one{width:560px;height:560px;left:50%;top:-260px;transform:translateX(-50%);background:rgba(51,119,255,.18)}
.glow-two{width:320px;height:320px;right:-90px;top:220px;background:rgba(82,142,255,.12)}
.main-panel{
    position:relative;z-index:1;
    width:min(100%,470px);
    margin:0 auto;
    min-height:100vh;
    padding:12px 15px calc(32px + env(safe-area-inset-bottom));
    background:
        radial-gradient(circle at 50% 0%, rgba(42,85,170,.22), transparent 18rem),
        linear-gradient(180deg,rgba(6,15,30,.96),rgba(3,8,17,.98));
    box-shadow:0 0 0 1px rgba(255,255,255,.04),0 30px 110px rgba(0,0,0,.48);
}
.app-header{padding:4px 0 12px;position:sticky;top:0;z-index:20;background:linear-gradient(180deg,rgba(5,12,24,.96) 0%,rgba(5,12,24,.84) 74%,rgba(5,12,24,0) 100%);backdrop-filter:blur(18px)}
.status-row{display:flex;justify-content:space-between;align-items:center;height:28px;padding:0 28px 0 30px;font-weight:800;font-size:15px;letter-spacing:.01em;color:#fff}
.status-icons{font-size:11px;color:rgba(255,255,255,.9);letter-spacing:.04em;white-space:nowrap}
.brand-row{display:grid;grid-template-columns:58px 1fr 58px;align-items:center;gap:6px;padding-top:6px}
.round-icon-btn{
    width:48px;height:48px;border-radius:999px;border:1px solid rgba(125,153,206,.12);
    display:grid;place-items:center;background:linear-gradient(145deg,rgba(30,43,67,.92),rgba(15,25,44,.92));
    color:#eaf1ff;box-shadow:inset 0 1px 1px rgba(255,255,255,.08),0 12px 34px rgba(0,0,0,.28);cursor:pointer;
}
.round-icon-btn.menu{justify-self:start}.round-icon-btn.crown{justify-self:end;color:var(--gold);font-size:34px;line-height:1;border-color:rgba(255,211,107,.22)}
.round-icon-btn.menu span{display:block;width:22px;height:2px;background:#eaf1ff;border-radius:20px;margin:3px 0}
.center-brand{text-align:center;min-width:0}.brand-title{font-family:Georgia,"Times New Roman",serif;font-size:31px;font-weight:800;letter-spacing:-.055em;line-height:1;color:#fff;text-shadow:0 2px 18px rgba(255,255,255,.10)}
.brand-title span{color:#3984ff}.brand-subtitle{margin-top:7px;font-size:17px;color:#aab5ca;letter-spacing:-.02em}
.side-panel{
    position:fixed;z-index:50;left:0;top:0;bottom:0;width:min(84vw,320px);padding:22px 18px;
    transform:translateX(-105%);transition:transform .24s ease;background:rgba(5,12,24,.92);border-right:1px solid var(--line);backdrop-filter:blur(24px);box-shadow:var(--shadow)
}
.side-panel.open{transform:translateX(0)}
.panel-backdrop{position:fixed;inset:0;z-index:45;background:rgba(0,0,0,.42);backdrop-filter:blur(5px);opacity:0;pointer-events:none;transition:.2s ease}.panel-backdrop.open{opacity:1;pointer-events:auto}
.side-brand{display:flex;align-items:center;gap:12px;margin-bottom:24px}.brand-mark{width:48px;height:48px;border-radius:18px;display:grid;place-items:center;background:linear-gradient(135deg,#1b5dff,#65a3ff);font-weight:900;color:#fff;box-shadow:0 14px 40px rgba(53,120,255,.34)}
.side-brand strong{display:block;font-size:18px}.side-brand span,.side-note{color:var(--muted);font-size:13px}.side-nav{display:grid;gap:9px}.side-nav a{padding:14px;border:1px solid var(--line);border-radius:17px;background:rgba(255,255,255,.045);color:#eaf1ff}.side-note{margin-top:18px;line-height:1.45;padding:16px;border-radius:18px;border:1px solid var(--line);background:rgba(255,255,255,.04)}
.alert{margin:10px 0 12px;padding:13px 14px;border-radius:18px;border:1px solid var(--line);background:rgba(255,255,255,.07);color:#f4f8ff;line-height:1.4;font-size:14px}.alert.success{border-color:rgba(82,242,176,.36);background:rgba(82,242,176,.10)}.alert.error{border-color:rgba(255,107,123,.40);background:rgba(255,107,123,.12)}
.login-hero{margin-top:18px;padding:24px 18px;border:1px solid var(--line);border-radius:28px;background:linear-gradient(160deg,rgba(22,37,64,.88),rgba(8,15,29,.86));box-shadow:var(--shadow);text-align:center}.login-orb{width:66px;height:66px;margin:0 auto 16px;border-radius:22px;display:grid;place-items:center;background:linear-gradient(135deg,#286dff,#69a6ff);box-shadow:0 18px 44px rgba(53,120,255,.38);font-weight:900}.login-hero h1{font-size:34px;line-height:.98;letter-spacing:-.06em;margin:0 0 12px}.login-hero p{margin:0 0 18px;color:var(--muted);line-height:1.5}.setup-box{text-align:left;margin:16px 0;padding:14px;border:1px solid rgba(255,211,107,.35);border-radius:18px;background:rgba(255,211,107,.10)}.setup-box strong{display:block;margin-bottom:7px}.setup-box p{font-size:13px;margin:4px 0;color:#dfe6f3}.google-btn{min-height:54px;border-radius:17px;display:inline-flex;align-items:center;justify-content:center;gap:10px;padding:14px 18px;background:linear-gradient(135deg,#2d72ff,#5d98ff);box-shadow:0 16px 44px rgba(53,120,255,.34);font-weight:850}.g-dot{width:26px;height:26px;border-radius:999px;background:#fff;color:#111;display:grid;place-items:center;font-weight:900}
.credit-card{margin-top:10px;display:grid;grid-template-columns:72px 1fr 58px;align-items:center;gap:12px;min-height:95px;padding:14px 13px 14px 14px;border:1px solid var(--line);border-radius:19px;background:linear-gradient(145deg,rgba(24,39,67,.78),rgba(9,17,32,.86));box-shadow:inset 0 1px 0 rgba(255,255,255,.05),0 18px 44px rgba(0,0,0,.24)}
.credit-icon{width:56px;height:56px;border-radius:14px;display:grid;place-items:center;background:linear-gradient(145deg,rgba(40,82,177,.52),rgba(21,41,95,.48));color:#4383ff;box-shadow:inset 0 1px 0 rgba(255,255,255,.08)}.credit-icon svg{width:34px;height:34px;stroke-width:2.3}.credit-copy{min-width:0}.credit-copy span{display:block;font-size:17px;color:#aab5ca;letter-spacing:-.02em}.credit-copy strong{display:block;margin-top:3px;font-size:31px;line-height:1;font-weight:900;letter-spacing:-.045em;color:#fff}.credit-copy em{font-style:normal;color:#4383ff}.plus-btn{width:52px;height:52px;border-radius:999px;border:0;background:linear-gradient(145deg,rgba(59,112,224,.8),rgba(32,58,119,.9));color:#a7c4ff;font-size:36px;line-height:1;box-shadow:0 12px 32px rgba(53,120,255,.26);cursor:pointer}
.quick-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:12px}.mini-action{min-height:48px;border:1px solid var(--line);border-radius:11px;background:linear-gradient(145deg,rgba(24,39,67,.76),rgba(9,17,32,.84));color:#f2f6ff;font-weight:730;display:flex;align-items:center;justify-content:center;gap:10px;box-shadow:inset 0 1px 0 rgba(255,255,255,.05);cursor:pointer}.mini-action span{color:#92b8ff;font-size:20px}
.upload-area{margin-top:22px}.upload-area form{display:grid;gap:9px}.upload-btn{width:100%;height:64px;border:0;border-radius:10px;background:linear-gradient(180deg,#377eff,#2867f2);color:#fff;font-size:22px;font-weight:870;display:flex;align-items:center;justify-content:center;gap:15px;box-shadow:0 16px 34px rgba(43,104,243,.34),inset 0 1px 0 rgba(255,255,255,.18);cursor:pointer}.upload-btn svg{width:28px;height:28px;stroke-width:2.4}.upload-btn:active{transform:translateY(1px)}.upload-hint{margin:0;text-align:center;color:#8592aa;font-size:13px;line-height:1.35}
.upload-progress-card{margin-top:12px;padding:14px;border-radius:18px;border:1px solid rgba(61,122,255,.45);background:linear-gradient(155deg,rgba(18,34,62,.93),rgba(8,16,31,.96));box-shadow:0 16px 46px rgba(0,0,0,.32),0 0 0 1px rgba(65,126,255,.12)}.upload-progress-card[hidden]{display:none!important}.upload-progress-head{display:grid;grid-template-columns:48px 1fr 44px;align-items:center;gap:11px}.upload-progress-icon{width:45px;height:45px;border-radius:14px;display:grid;place-items:center;background:rgba(50,111,255,.15);border:1px solid rgba(73,133,255,.28)}.mini-spinner{display:block;width:23px;height:23px;border-radius:999px;border:3px solid rgba(91,144,255,.22);border-top-color:#5b93ff;animation:spin .85s linear infinite}.upload-progress-copy{min-width:0}.upload-progress-copy strong{display:block;font-size:15px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.upload-progress-copy span{display:block;margin-top:3px;font-size:13px;color:#aab5ca}.upload-progress-head b{font-size:14px;color:#8fb6ff;text-align:right}.progress-track{height:8px;margin-top:13px;border-radius:999px;background:rgba(255,255,255,.08);overflow:hidden}.progress-bar{width:0%;height:100%;border-radius:999px;background:linear-gradient(90deg,#2e73ff,#7fb0ff);transition:width .18s ease;box-shadow:0 0 18px rgba(59,126,255,.8)}.upload-progress-foot{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-top:10px}.upload-progress-foot span{font-size:12px;line-height:1.35;color:#8794ac}.upload-progress-foot button{border:1px solid var(--line);border-radius:12px;background:rgba(255,255,255,.06);color:#dbe6ff;padding:7px 10px;cursor:pointer}.upload-progress-card.is-processing .progress-bar{width:100%!important;background:linear-gradient(90deg,#2e73ff,#6ca6ff,#2e73ff);background-size:180% 100%;animation:barMove 1.1s ease-in-out infinite}.upload-progress-card.is-error{border-color:rgba(255,107,123,.48)}.upload-progress-card.is-error .mini-spinner{animation:none;border-color:rgba(255,107,123,.24);border-top-color:var(--red)}
.api-button{margin-top:12px;min-height:54px;border-radius:10px;border:1px solid var(--line-strong);background:rgba(2,8,18,.72);color:#9fc0ff;font-size:18px;font-weight:800;display:flex;align-items:center;justify-content:center;gap:12px;box-shadow:inset 0 1px 0 rgba(255,255,255,.04)}.api-button svg{width:24px;height:24px}
.info-row{display:grid;grid-template-columns:42px 1fr;gap:11px;align-items:center;margin-top:17px;padding:0 10px 18px;border-bottom:1px solid rgba(255,255,255,.08)}.info-icon{width:28px;height:28px;border-radius:999px;display:grid;place-items:center;border:2px solid rgba(52,117,255,.56);color:#4c85ff;font-weight:900}.info-row p{margin:0;color:#9ca9bf;font-size:15px;line-height:1.45}
.history-section{margin-top:15px}.history-head{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:12px}.history-head h2{margin:0;font-size:22px;letter-spacing:-.035em}.sort-btn{display:flex;align-items:center;gap:9px;min-height:38px;border-radius:9px;border:1px solid rgba(255,255,255,.08);background:rgba(7,14,27,.64);color:#b7c2d4;padding:8px 11px;font-weight:700;white-space:nowrap;cursor:pointer}.sort-btn span{color:#91a1ba}.empty-card{padding:20px;border-radius:18px;border:1px dashed var(--line);background:rgba(255,255,255,.045);text-align:center}.empty-card strong{display:block;font-size:18px}.empty-card p{margin:8px 0 0;color:var(--muted);line-height:1.45}.transcript-list{display:grid;gap:12px}.transcript-card{border-radius:13px;border:1px solid rgba(105,139,207,.21);background:linear-gradient(158deg,rgba(23,38,64,.82),rgba(9,17,31,.92));box-shadow:0 16px 42px rgba(0,0,0,.24),inset 0 1px 0 rgba(255,255,255,.04);overflow:hidden}.transcript-card.failed{border-color:rgba(255,107,123,.36)}.transcript-card.processing{border-color:rgba(255,211,107,.34)}.transcript-main{display:grid;grid-template-columns:58px 1fr 20px;gap:14px;padding:14px 13px 10px;align-items:start}.file-icon{width:50px;height:50px;border-radius:10px;display:grid;place-items:center;background:linear-gradient(145deg,rgba(49,95,193,.30),rgba(18,35,77,.45));color:#3e82ff;border:1px solid rgba(90,134,216,.18);box-shadow:inset 0 1px 0 rgba(255,255,255,.06)}.file-icon svg{width:29px;height:29px;stroke-width:2.4}.file-icon.wave svg{stroke-width:2.8}.transcript-copy{min-width:0}.transcript-copy h3{margin:0 0 4px;color:#3d83ff;font-size:17px;line-height:1.15;letter-spacing:-.02em;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.transcript-copy time{display:block;color:#a9b5ca;font-size:13px;margin-bottom:6px}.transcript-copy p{margin:0;color:#d6deee;font-size:14px;line-height:1.42;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.failed .transcript-copy p{color:#ffd0d6}.processing .transcript-copy p{color:#ffe4ab}.chevron{font-size:38px;line-height:1;color:#aeb9ca;opacity:.88;margin-top:3px}.card-actions{display:grid;grid-template-columns:repeat(5,1fr);align-items:center;border-top:1px solid rgba(255,255,255,.055);padding:8px 15px 11px}.card-action{height:32px;display:grid;place-items:center;border:0;background:transparent;color:#aebad0;cursor:pointer}.card-action svg{width:22px;height:22px;stroke-width:1.9}.pdf-action{font-size:10px;font-weight:900;border:1.8px solid currentColor!important;border-radius:3px;width:20px;height:24px;justify-self:center;align-self:center;line-height:1;letter-spacing:-.08em}.card-action:hover{color:#fff}.detail-body{background:#030813;color:var(--text)}.detail-wrap{position:relative;z-index:1;width:min(100%,760px);margin:0 auto;padding:18px 14px 30px}.back-link{display:inline-flex;margin:6px 0 14px;color:#9fb3d6;font-weight:780}.detail-card{padding:18px;border-radius:24px;background:linear-gradient(158deg,rgba(23,38,64,.86),rgba(8,16,31,.95));border:1px solid var(--line);box-shadow:var(--shadow)}.detail-head{display:flex;align-items:flex-start;justify-content:space-between;gap:14px;margin-bottom:18px}.detail-head span{display:block;color:#aab5ca;font-size:13px;margin-bottom:7px}.detail-head h1{font-size:clamp(25px,7vw,42px);line-height:1.02;letter-spacing:-.055em;margin:0;word-break:break-word}.download-btn,.copy-btn{border:0;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;border-radius:14px;padding:13px 15px;background:linear-gradient(180deg,#377eff,#2867f2);color:#fff;font-weight:850;white-space:nowrap}.copy-btn{margin-bottom:12px}.transcript-text{white-space:pre-wrap;word-break:break-word;margin:0;padding:16px;border-radius:18px;background:rgba(0,0,0,.22);border:1px solid rgba(255,255,255,.08);color:#eef4ff;font-size:16px;line-height:1.64;font-family:inherit}
@keyframes spin{to{transform:rotate(360deg)}}
@keyframes barMove{0%{background-position:0% 50%}100%{background-position:180% 50%}}
@media (min-width:760px){
    .main-panel{margin-top:22px;margin-bottom:22px;border-radius:34px;min-height:calc(100vh - 44px);border:1px solid rgba(255,255,255,.07)}
}
@media (max-width:430px){
    .main-panel{padding-left:13px;padding-right:13px}.brand-row{grid-template-columns:52px 1fr 52px}.round-icon-btn{width:46px;height:46px}.brand-title{font-size:29px}.brand-subtitle{font-size:16px}.credit-card{grid-template-columns:64px 1fr 52px}.credit-copy strong{font-size:29px}.quick-actions{gap:8px}.mini-action{font-size:14px}.upload-btn{height:60px;font-size:20px}.transcript-main{grid-template-columns:54px 1fr 18px;gap:12px}.transcript-copy h3{font-size:16px}.info-row p{font-size:14px}.history-head h2{font-size:20px}.sort-btn{font-size:13px;padding:7px 9px}.status-row{padding-left:25px;padding-right:24px}
}
@media (max-width:360px){
    .quick-actions{grid-template-columns:1fr}.credit-card{grid-template-columns:58px 1fr 46px;padding:12px}.credit-icon{width:50px;height:50px}.plus-btn{width:46px;height:46px}.brand-title{font-size:26px}.transcript-copy p{-webkit-line-clamp:3}.card-actions{padding-left:10px;padding-right:10px}.upload-progress-head{grid-template-columns:44px 1fr 38px}.upload-progress-foot{align-items:flex-start;flex-direction:column}.upload-progress-foot button{width:100%}
}

/* Selettore AI ChatGPT per trascrizione */
.ai-picker{margin-bottom:12px;padding:13px;border-radius:18px;border:1px solid rgba(67,131,255,.34);background:linear-gradient(155deg,rgba(20,35,64,.88),rgba(7,15,30,.94));box-shadow:0 14px 38px rgba(0,0,0,.24),inset 0 1px 0 rgba(255,255,255,.06)}
.ai-picker-head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:10px}.ai-picker-head span{display:block;color:#8fb6ff;font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.08em}.ai-picker-head strong{display:block;margin-top:3px;color:#f5f8ff;font-size:16px;letter-spacing:-.025em}.ai-picker-head b{border:1px solid rgba(73,133,255,.38);border-radius:999px;background:rgba(55,126,255,.13);color:#b9d0ff;padding:7px 10px;font-size:12px;white-space:nowrap}.ai-options{display:grid;gap:8px}.ai-choice{position:relative;display:grid;grid-template-columns:42px 1fr auto;align-items:center;gap:10px;padding:10px;border-radius:15px;border:1px solid rgba(255,255,255,.08);background:rgba(1,7,18,.43);cursor:pointer;transition:transform .16s ease,border-color .16s ease,background .16s ease,box-shadow .16s ease}.ai-choice:active{transform:scale(.992)}.ai-choice input{position:absolute;opacity:0;pointer-events:none}.ai-choice-icon{width:39px;height:39px;border-radius:13px;display:grid;place-items:center;background:linear-gradient(145deg,rgba(54,115,255,.21),rgba(12,26,63,.5));border:1px solid rgba(85,142,255,.22);font-size:18px}.ai-choice-copy{min-width:0}.ai-choice-copy strong{display:block;color:#fff;font-size:14px;line-height:1.15}.ai-choice-copy small{display:block;margin-top:3px;color:#9ca9bf;font-size:11.5px;line-height:1.25}.ai-choice em{font-style:normal;color:#9fc0ff;border:1px solid rgba(102,153,255,.25);background:rgba(52,117,255,.10);border-radius:999px;padding:6px 8px;font-size:11px;font-weight:900;white-space:nowrap}.ai-choice.is-selected{border-color:rgba(72,132,255,.76);background:linear-gradient(145deg,rgba(44,99,219,.28),rgba(5,13,30,.78));box-shadow:0 0 0 1px rgba(59,126,255,.22),0 12px 30px rgba(34,91,255,.16)}.ai-choice.is-selected .ai-choice-icon{box-shadow:0 0 24px rgba(61,128,255,.25)}
@media (max-width:430px){.ai-picker{padding:11px}.ai-picker-head{align-items:flex-start}.ai-picker-head strong{font-size:15px}.ai-picker-head b{font-size:11px;padding:6px 8px}.ai-choice{grid-template-columns:38px 1fr;gap:9px}.ai-choice em{grid-column:2;justify-self:start;padding:5px 8px}.ai-choice-icon{width:36px;height:36px}.ai-choice-copy small{font-size:11px}}

/* Audio-Text.com custom: v2 premium layout + lingua sempre visibile + funzioni complete */
.brand-title{font-size:28px;letter-spacing:-.06em;white-space:nowrap}.brand-title span{color:#3984ff}.brand-subtitle{font-size:14px}.side-language{margin-top:14px;padding:13px;border:1px solid var(--line);border-radius:18px;background:rgba(255,255,255,.04)}.side-language>span{display:block;color:#aab5ca;font-size:12px;font-weight:800;margin-bottom:8px}.language-strip{margin:9px 0 0;display:flex;align-items:center;justify-content:center;gap:9px;padding:7px 9px;border:1px solid rgba(103,140,220,.16);border-radius:999px;background:rgba(255,255,255,.045)}.language-strip>span{font-size:12px;color:#aab5ca;font-weight:850;white-space:nowrap}.lang-switcher{margin:0}.lang-switcher select{max-width:190px;appearance:none;-webkit-appearance:none;border:1px solid rgba(73,133,255,.34);border-radius:999px;background:linear-gradient(145deg,rgba(20,35,64,.92),rgba(7,15,30,.95));color:#eaf1ff;padding:8px 28px 8px 11px;font-size:12px;font-weight:850;outline:none;box-shadow:inset 0 1px 0 rgba(255,255,255,.06)}.lang-switcher-side select{width:100%;max-width:none}.lang-switcher-detail select{max-width:180px}.sr-only{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.detail-topline{display:flex;align-items:center;justify-content:space-between;gap:12px;margin:6px 0 14px}.card-actions.has-delete{grid-template-columns:repeat(6,1fr)}.card-actions form{display:grid;place-items:center;margin:0}.card-actions form button{width:100%}.delete-action{color:#ff8b99}.tools-card{margin-top:18px;padding:17px;border-radius:20px;border:1px solid var(--line);background:linear-gradient(158deg,rgba(23,38,64,.78),rgba(9,17,31,.90));box-shadow:0 16px 42px rgba(0,0,0,.22)}.tools-card h2{margin:0 0 12px;font-size:20px;letter-spacing:-.035em}.tool-list{display:grid;gap:10px}.tool-list div{padding:12px;border-radius:15px;border:1px solid rgba(255,255,255,.07);background:rgba(0,0,0,.16)}.tool-list strong{display:block;font-size:14px;color:#fff}.tool-list span{display:block;margin-top:4px;color:#aab5ca;font-size:13px;line-height:1.35}.quick-actions .mini-action{min-width:0}.premium-app[dir="rtl"] .side-panel{left:auto;right:0;transform:translateX(105%);border-right:0;border-left:1px solid var(--line)}.premium-app[dir="rtl"] .side-panel.open{transform:translateX(0)}
@media (max-width:430px){.brand-title{font-size:24px}.brand-subtitle{font-size:13px}.language-strip{gap:6px}.language-strip>span{font-size:11px}.lang-switcher select{max-width:150px;font-size:11px;padding-top:7px;padding-bottom:7px}.detail-topline{align-items:flex-start;flex-direction:column}.lang-switcher-detail select{max-width:100%}}
@media (max-width:360px){.brand-title{font-size:21px}.language-strip{border-radius:16px;flex-direction:column;align-items:stretch}.language-strip>span{text-align:center}.lang-switcher select{width:100%;max-width:none}.card-actions.has-delete{padding-left:7px;padding-right:7px}}
html[dir="rtl"] .side-panel{left:auto;right:0;transform:translateX(105%);border-right:0;border-left:1px solid var(--line)}html[dir="rtl"] .side-panel.open{transform:translateX(0)}
