:root{
      /* Retro sci‑fi palette */
      --bg:#0d0f14;            /* deep space */
      --panel:#141823;         /* console panel */
      --ink:#e2f1ff;           /* cool white */
      --muted:#7aa2c3;         /* desaturated cyan */
      --accent:#39d2ff;        /* neon cyan */
      --danger:#ff3d81;        /* neon magenta/red */
      --ok:#6aff6a;            /* neon green */
      --glow:rgba(57,210,255,.45);
      --glow-strong:rgba(57,210,255,.75);
      --block-bg:#223248;      /* lighter block background */
      /* Bold retro block gradient + outline */
      --block-c1:#2b1b3a;      /* deep magenta navy */
      --block-c2:#123a5e;      /* teal navy */
      --block-outline:#ff3d81; /* neon magenta outline */
    }
    *{box-sizing:border-box}
    body{
      margin:0;
      font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell;
      background:radial-gradient(1200px 800px at 50% -10%, #121623 0%, #0c0e15 60%, #0a0c12 100%);
      color:var(--ink); display:flex; flex-direction:column; min-height:100vh; align-items:center;
      letter-spacing: .2px;
    }
    .game-brand{
      width:100%;
      height:84px;
      margin:0 0 10px;
      color:#39d2ff;
      font-size:84px;
      font-weight:1000;
      line-height:1;
      text-align:center;
      letter-spacing:0;
      text-transform:lowercase;
      font-style:italic;
      text-shadow:
        0 0 18px rgba(57,210,255,.38),
        0 0 34px rgba(106,255,106,.18);
      transition:color .18s ease, transform .18s ease, text-shadow .18s ease, margin .18s ease;
    }
    .game-brand.workshop-active{
      margin-bottom:2px;
      color:#6aff6a;
      transform:skewX(-7deg) scale(.96);
      text-shadow:
        0 0 10px rgba(106,255,106,.36),
        0 0 26px rgba(57,210,255,.2);
    }
    .elite-mode-label{
      margin:-2px 0 12px;
      color:var(--muted);
      font-size:21px;
      font-weight:900;
      letter-spacing:0;
      line-height:1;
      text-align:center;
      text-transform:lowercase;
    }
    #game-screen{
      width:100%;
      display:flex;
      flex-direction:column;
      align-items:center;
    }
    header{
      width:100%; max-width:420px; background:var(--panel);
      display:flex; align-items:center; gap:8px; padding:10px; margin:12px auto 0; border-radius:12px;
      box-shadow:0 6px 24px rgba(0,0,0,.45), 0 0 18px var(--glow);
      border:1px solid #223042;
    }
    header .spacer{flex:1}
    header button{
      border:0; background:#1a2030; color:var(--ink); padding:10px 12px; border-radius:12px; cursor:pointer;
      line-height: 1; min-width: 50px; height: 50px; display:flex; align-items:center; justify-content:center;
      box-shadow: inset 0 0 0 1px #2a3a52, 0 0 0 rgba(0,0,0,0);
      transition: box-shadow .15s ease, background .2s ease, color .2s ease;
    }
    header button:hover{ background:#222a3c; color:var(--accent); box-shadow: inset 0 0 0 1px #355075, 0 0 14px var(--glow); }
    /* When we intentionally suppress hover (after toggling off), keep base look */
    header button.no-hover:hover{ background:#1a2030; color:var(--ink); box-shadow: inset 0 0 0 1px #2a3a52, 0 0 0 rgba(0,0,0,0); }
    header button svg{ width:26px; height:26px; stroke: currentColor; fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
    header button#btnFastForward.active{ background:#233147; color:#0b0; box-shadow: inset 0 0 0 1px #2e6f2e, 0 0 14px rgba(0,255,128,.4); }
    header .level-status{
      display:flex;
      flex-direction:column;
      align-items:flex-end;
      gap:4px;
      margin-right: 16px;
      flex-shrink: 0;
    }
    header .blocks{
      font-weight:700; color:var(--muted); margin-right: 16px; letter-spacing:.4px;
      /* Keep HUD width stable to avoid layout shifts when numbers change */
      white-space: nowrap; text-align: right; flex-shrink: 0;
      /* Reserve enough space for e.g. "Nivel 200 999/999" */
      min-width: 140px;
      /* Align digit widths to reduce jitter across updates */
      font-variant-numeric: tabular-nums; font-feature-settings: 'tnum' 1;
    }
    header .level-status .blocks{ margin-right:0; }
    .level-author{
      padding: 5px 12px;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(255, 209, 102, .2) 0%, rgba(255, 143, 76, .14) 100%);
      border: 1px solid rgba(255, 209, 102, .42);
      color: #fff0bf;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .35px;
      max-width: 220px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.05), 0 0 16px rgba(255,209,102,.16);
    }
    header .balls{font-weight:600; color:var(--ink); margin-right: 16px;}
    header .score{font-weight:700; color:var(--accent)}
    main{
      width:100%; max-width:420px; position:relative; margin:12px auto; border-radius:14px; overflow:hidden;
      box-shadow:0 24px 48px rgba(0,0,0,.55), 0 0 22px var(--glow);
      border:1px solid #223042;
    }
    main::after{ /* scanlines */
      content:""; position:absolute; inset:0; pointer-events:none;
      background:repeating-linear-gradient(to bottom, rgba(255,255,255,.045) 0, rgba(255,255,255,.045) 1px, transparent 2px, transparent 4px);
      mix-blend-mode: overlay; opacity:.15;
    }
    canvas#game{ display:block; width:100%; height:auto; background:#0f131b; touch-action: none; }
    .power-up-panel{
      width:100%;
      max-width:420px;
      margin:0 auto 16px;
      padding:12px;
      border-radius:14px;
      border:1px solid #223042;
      background:linear-gradient(180deg, rgba(20,24,35,.96) 0%, rgba(12,16,24,.92) 100%);
      box-shadow:0 18px 34px rgba(0,0,0,.4), 0 0 18px rgba(57,210,255,.12);
    }
    .power-up-grid{
      display:grid;
      grid-template-columns:repeat(3, minmax(0, 1fr));
      gap:10px;
    }
    .power-up-button{
      appearance:none;
      -webkit-appearance:none;
      border:1px solid rgba(57,210,255,.16);
      background:linear-gradient(180deg, rgba(19,27,38,.98) 0%, rgba(12,17,25,.98) 100%);
      color:var(--ink);
      border-radius:12px;
      padding:11px 10px;
      width:100%;
      cursor:pointer;
      min-height:74px;
      display:flex;
      flex-direction:column;
      align-items:flex-start;
      justify-content:space-between;
      gap:6px;
      font:inherit;
      text-align:left;
      transition:transform .15s ease, box-shadow .2s ease, border-color .2s ease, opacity .2s ease, background .2s ease;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.03), 0 10px 20px rgba(0,0,0,.22);
    }
    .power-up-button[hidden]{
      display:none !important;
    }
    .power-up-button:hover{
      transform:translateY(-1px);
      border-color:rgba(57,210,255,.45);
      box-shadow: inset 0 0 0 1px rgba(57,210,255,.18), 0 0 18px rgba(57,210,255,.18);
    }
    .power-up-button:disabled{
      cursor:not-allowed;
      transform:none;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.03), 0 0 0 rgba(0,0,0,0);
    }
    .power-up-button-top{
      width:100%;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:8px;
    }
    .power-up-button-icon{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:34px;
      padding:4px 7px;
      border-radius:999px;
      background:rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.08);
      color:#d2e8fb;
      font-size:10px;
      font-weight:900;
      letter-spacing:.7px;
    }
    .power-up-button-badge{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:44px;
      padding:4px 8px;
      border-radius:999px;
      font-size:10px;
      font-weight:900;
      letter-spacing:.55px;
      text-transform:uppercase;
      background:rgba(255,255,255,.08);
      color:#f4fbff;
    }
    .power-up-button.ready{
      border-color:rgba(57,210,255,.34);
      background:linear-gradient(180deg, rgba(22,39,52,.98) 0%, rgba(13,24,34,.98) 100%);
      box-shadow: inset 0 0 0 1px rgba(57,210,255,.12), 0 0 18px rgba(57,210,255,.12);
      color:#9fb0c1;
    }
    .power-up-button.ready .power-up-button-badge{
      background:rgba(57,210,255,.18);
      color:#bff4ff;
      border:1px solid rgba(57,210,255,.28);
    }
    .power-up-button.ready .power-up-button-title{
      color:#acbbca;
    }
    .power-up-button.ready .power-up-button-meta{
      color:#7f95ab;
    }
    .power-up-button.ready .power-up-button-icon{
      background:rgba(255,255,255,.04);
      color:#b8c7d6;
      border-color:rgba(255,255,255,.06);
    }
    .power-up-button.active,
    .power-up-button.targeting,
    .power-up-button.pending{
      border-color:rgba(255,209,102,.72);
      box-shadow: inset 0 0 0 1px rgba(255,209,102,.24), 0 0 18px rgba(255,209,102,.28);
      background:linear-gradient(180deg, rgba(52,40,19,.96) 0%, rgba(27,20,9,.98) 100%);
    }
    .power-up-button.active .power-up-button-badge,
    .power-up-button.targeting .power-up-button-badge,
    .power-up-button.pending .power-up-button-badge{
      background:rgba(255,209,102,.18);
      color:#fff2bf;
      border:1px solid rgba(255,209,102,.3);
    }
    .power-up-button.cooldown{
      border-color:rgba(133,159,188,.22);
      background:linear-gradient(180deg, rgba(22,28,38,.98) 0%, rgba(13,17,24,.98) 100%);
      color:#a8bdd3;
    }
    .power-up-button.cooldown .power-up-button-badge{
      background:rgba(123,147,176,.18);
      color:#d8e9f9;
      border:1px solid rgba(123,147,176,.26);
    }
    .power-up-button.cooldown .power-up-button-icon{
      background:rgba(123,147,176,.08);
      color:#c4d7e9;
    }
    .power-up-button.blocked{
      border-color:rgba(90,102,120,.18);
      background:linear-gradient(180deg, rgba(16,20,27,.98) 0%, rgba(10,13,19,.98) 100%);
      color:#76889b;
      opacity:.82;
    }
    .power-up-button.blocked .power-up-button-icon{
      background:rgba(255,255,255,.03);
      color:#8a99ab;
    }
    .power-up-button-title{
      font-size:13px;
      font-weight:800;
      letter-spacing:.35px;
      text-transform:uppercase;
    }
    .power-up-button-meta{
      color:var(--muted);
      font-size:12px;
      line-height:1.25;
      min-height:15px;
    }
    .power-up-hint{
      margin:10px 2px 2px;
      min-height:18px;
      color:#ffd166;
      font-size:12px;
      letter-spacing:.25px;
    }
    #ball-counter{
      position:absolute; left:50%; top:50%; transform: translate(-50%, -100%);
      background: #101626; color: var(--ink);
      padding: 4px 9px; border-radius: 999px; font-weight: 800; font-size: 13px;
      box-shadow: 0 4px 12px rgba(0,0,0,.45), 0 0 12px var(--glow);
      border:1px solid #2a3a52;
      pointer-events: none; opacity: .98; letter-spacing:.4px;
    }
    .overlay{
      position:absolute; inset:0; display:none; align-items:center; justify-content:center;
      background:rgba(0,0,0,.55); backdrop-filter: blur(4px);
    }
    .panel{
      background:#131a28; padding:16px; border-radius:12px; text-align:center; width:min(92%, 360px);
      box-shadow:0 10px 28px rgba(0,0,0,.6), 0 0 18px var(--glow);
      border:1px solid #223042;
    }
    .panel h2{margin:0 0 8px 0}
    .panel p{margin:6px 0 14px 0; color:var(--muted)}
    .panel button{
      border:0; background:var(--accent); color:#111; padding:10px 14px; border-radius:8px; cursor:pointer;
      font-weight:700;
    }
    .elite-overlay{ background:radial-gradient(900px 600px at 50% 20%, rgba(255,181,71,.25), rgba(0,0,0,.65) 55%); }
    .elite-panel{
      position:relative;
      background:linear-gradient(135deg, #1a0f26 0%, #1d2642 45%, #0f1d35 100%);
      border:1px solid rgba(255,181,71,.35);
      box-shadow:0 14px 38px rgba(0,0,0,.7), 0 0 26px rgba(255,181,71,.35);
      overflow:hidden;
    }
    .elite-panel::before, .elite-panel::after{
      content:""; position:absolute; inset:-24%; background:radial-gradient(circle at 30% 30%, rgba(255,78,146,.25), transparent 35%), radial-gradient(circle at 80% 20%, rgba(255,198,91,.25), transparent 32%);
      filter: blur(32px); opacity:.7; z-index:0;
    }
    .elite-panel::after{ inset:-10%; mix-blend-mode: screen; opacity:.4; }
    .elite-panel > *{ position:relative; z-index:1; }
    .elite-confetti{ position:absolute; inset:0; pointer-events:none; overflow:hidden; z-index:0; }
    .elite-confetti span{
      position:absolute; width:10px; height:16px;
      background:linear-gradient(135deg, #ffb547 0%, #ff3d81 60%);
      animation: confettiFall 4.5s linear infinite;
      filter: drop-shadow(0 0 4px rgba(255,181,71,.55));
      border-radius:3px;
    }
    .elite-confetti span:nth-child(2){ left:16%; animation-delay:.3s; background:linear-gradient(135deg,#6aff6a,#39d2ff); }
    .elite-confetti span:nth-child(3){ left:28%; animation-delay:.6s; background:linear-gradient(135deg,#ff7ad1,#ffd166); }
    .elite-confetti span:nth-child(4){ left:42%; animation-delay:1s; }
    .elite-confetti span:nth-child(5){ left:55%; animation-delay:1.3s; background:linear-gradient(135deg,#39d2ff,#7f6bff); }
    .elite-confetti span:nth-child(6){ left:67%; animation-delay:.8s; }
    .elite-confetti span:nth-child(7){ left:75%; animation-delay:1.6s; background:linear-gradient(135deg,#7f6bff,#ffb547); }
    .elite-confetti span:nth-child(8){ left:83%; animation-delay:.1s; background:linear-gradient(135deg,#6aff6a,#ffb547); }
    .elite-confetti span:nth-child(9){ left:6%; animation-delay:1.9s; }
    .elite-confetti span:nth-child(10){ left:93%; animation-delay:1.2s; background:linear-gradient(135deg,#ff3d81,#39d2ff); }
    @keyframes confettiFall{
      0%{ transform: translateY(-120%) rotate(0deg); opacity:.9; }
      70%{ opacity:1; }
      100%{ transform: translateY(140%) rotate(260deg); opacity:.6; }
    }
    .elite-cup{
      width:110px; height:110px; margin:6px auto 8px;
      background: radial-gradient(circle at 40% 35%, rgba(255,255,255,.25), transparent 50%), radial-gradient(circle at 70% 60%, rgba(255,181,71,.3), transparent 45%);
      border-radius: 28px;
      display:flex; align-items:center; justify-content:center;
      position:relative;
      filter: drop-shadow(0 10px 22px rgba(0,0,0,.55));
    }
    .cup-glare{
      position:absolute; inset:8px 22px; border-radius:50%;
      background: radial-gradient(circle at 40% 30%, rgba(255,255,255,.45), transparent 55%);
      mix-blend-mode: screen; opacity:.7;
    }
    .cup-body{ font-size:64px; text-shadow:0 0 18px rgba(255,181,71,.6), 0 6px 16px rgba(0,0,0,.55); }
    .cup-stars{
      position:absolute; top:-14px; left:0; right:0; text-align:center; letter-spacing:6px;
      font-size:14px; color:#ffd166; text-shadow:0 0 8px rgba(255,181,71,.8);
      animation: twinkle 2.4s ease-in-out infinite alternate;
    }
    @keyframes twinkle{
      0%{ transform: translateY(0) scale(1); opacity:.8; }
      100%{ transform: translateY(-4px) scale(1.05); opacity:1; }
    }
    .elite-kicker{
      text-transform: uppercase; letter-spacing:1.2px; font-weight:800; color:#ffd166; font-size:12px; margin:0 0 6px 0;
      text-shadow:0 0 14px rgba(255,181,71,.5);
    }
    .elite-panel h2{ font-size:24px; margin:4px 0 6px; color:#fff8e7; }
    .elite-copy{ margin:6px 0 14px; line-height:1.4; color:#f8e9ff; }
    .elite-actions{ display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin:4px 0 6px; }
    .elite-actions button{
      background:linear-gradient(135deg,#ffd166 0%, #ff7ad1 60%, #7f6bff 100%);
      color:#120c1e; border:0; border-radius:10px; padding:12px 14px; font-weight:800; cursor:pointer;
      box-shadow:0 10px 28px rgba(255,122,209,.4), 0 0 14px rgba(127,107,255,.45);
      text-transform: uppercase; letter-spacing:.8px;
    }
    .elite-actions button:nth-child(2){
      background:linear-gradient(135deg,#39d2ff 0%, #6aff6a 80%);
      box-shadow:0 10px 28px rgba(57,210,255,.35), 0 0 14px rgba(106,255,106,.4);
    }
    .elite-footnote{
      margin:6px 0 0; font-size:12px; color:#ffd166; opacity:.8; letter-spacing:.3px;
    }
    details#tests{ width:100%; max-width:420px; margin:8px 0 24px; background:#101522; padding:8px 12px; border-radius:10px; box-shadow:0 0 10px var(--glow); }
    #test-output{white-space:pre-wrap; font-family:ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; color:#cfe7ff}
    small.hint{color:var(--muted)}

    #level-select-screen {
      width: 100%;
      max-width: 420px;
      text-align: center;
      padding: 12px 20px 20px;
    }
    #level-select-screen h3{
      margin: 2px 0 10px;
      color:#5f748b;
      font-size:14px;
      font-weight:600;
      line-height:1.2;
    }
    .level-action-row{
      display:flex;
      align-items:stretch;
      gap:10px;
      margin: 12px 0 14px;
    }
    #auth-wrapper{
      flex:1 1 auto;
      min-width:0;
    }
    #community-wrapper{
      flex:0 0 auto;
    }
    .auth-panel{
      width: 100%;
      min-height:58px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:10px 12px;
      border-radius:12px;
      border:1px solid rgba(57,210,255,.24);
      background:linear-gradient(180deg, rgba(20,24,35,.96) 0%, rgba(13,17,25,.96) 100%);
      box-shadow:0 12px 24px rgba(0,0,0,.24), inset 0 0 0 1px rgba(255,255,255,.03);
      text-align:left;
    }
    .auth-panel.error{
      border-color:rgba(255,61,129,.42);
    }
    .auth-panel.single-action{
      padding:0;
      border:0;
      background:transparent;
      box-shadow:none;
    }
    .auth-panel.single-action .auth-button{
      width:100%;
      min-height:58px;
    }
    .auth-copy{
      min-width:0;
      display:flex;
      flex-direction:column;
      gap:2px;
    }
    .auth-copy strong{
      color:var(--ink);
      font-size:14px;
      line-height:1.2;
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
    }
    .auth-copy span{
      color:var(--muted);
      font-size:12px;
      line-height:1.25;
    }
    .auth-panel.error .auth-copy span{
      color:#ff9cbc;
    }
    .auth-button{
      flex:0 0 auto;
      border:1px solid rgba(57,210,255,.36);
      background:rgba(57,210,255,.12);
      color:#dff8ff;
      padding:9px 11px;
      border-radius:10px;
      font-weight:800;
      cursor:pointer;
      white-space:nowrap;
      font:inherit;
      font-size:14px;
    }
    .auth-button:hover{
      background:rgba(57,210,255,.2);
      box-shadow:0 0 14px rgba(57,210,255,.18);
    }
    .auth-button:disabled{
      opacity:.58;
      cursor:not-allowed;
      box-shadow:none;
    }
    .auth-handle-form{
      flex:0 0 auto;
      display:flex;
      align-items:center;
      gap:8px;
    }
    .auth-handle-form input{
      width:58px;
      height:38px;
      border-radius:10px;
      border:1px solid rgba(57,210,255,.28);
      background:#101621;
      color:var(--ink);
      text-align:center;
      font:inherit;
      font-weight:900;
      letter-spacing:0;
      text-transform:uppercase;
      outline:none;
    }
    .auth-handle-form input:focus{
      border-color:rgba(57,210,255,.7);
      box-shadow:0 0 0 3px rgba(57,210,255,.12);
    }
    #play-current-wrapper{
      margin: 10px 0 16px;
    }
    #play-current-wrapper .play-current{
      width: 100%;
      height:58px;
      border: 2px solid var(--accent);
      background: linear-gradient(135deg, rgba(57,210,255,.9) 0%, rgba(106,255,106,.82) 100%);
      color: #071019;
      padding: 10px;
      border-radius: 10px;
      font-size: 24px;
      font-weight: bold;
      letter-spacing: 0;
      cursor: pointer;
      box-shadow:0 12px 24px rgba(57,210,255,.22);
      font-family:inherit;
      line-height:1.05;
      text-transform:none;
      transition: background 0.2s, transform 0.2s;
    }
    #play-current-wrapper .play-current:hover{
      background: linear-gradient(135deg, rgba(57,210,255,1) 0%, rgba(106,255,106,.95) 100%);
      transform: scale(1.02);
    }
    #play-current-wrapper .play-current.elite-exit{
      height:46px;
      border-color:rgba(106,255,106,.54);
      background:rgba(106,255,106,.12);
      color:#c9ffd4;
      font-size:21px;
      text-transform:lowercase;
      box-shadow:0 10px 20px rgba(106,255,106,.1);
    }
    #play-current-wrapper .play-current.elite-exit:hover{
      background:rgba(106,255,106,.18);
    }
    .elite-workshop{
      margin:12px 0 18px;
      text-align:left;
    }
    .elite-workshop-panel{
      display:grid;
      gap:10px;
      border:0;
      background:transparent;
      border-radius:0;
      box-shadow:none;
      overflow:visible;
    }
    .elite-workshop-panel.error{
      border:1px solid rgba(255,61,129,.42);
      background:linear-gradient(180deg, rgba(20,24,35,.98) 0%, rgba(12,17,25,.98) 100%);
      border-radius:8px;
      box-shadow:0 16px 28px rgba(0,0,0,.3), 0 0 18px rgba(255,61,129,.12);
      overflow:hidden;
    }
    .elite-workshop-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      padding:12px;
      border:1px solid rgba(57,210,255,.28);
      border-radius:8px;
      background:linear-gradient(180deg, rgba(20,24,35,.98) 0%, rgba(12,17,25,.98) 100%);
      box-shadow:0 10px 20px rgba(0,0,0,.22), 0 0 14px rgba(57,210,255,.08);
    }
    .elite-workshop-title{
      color:var(--ink);
      font-size:18px;
      font-weight:900;
      letter-spacing:0;
      text-transform:uppercase;
    }
    .elite-workshop-message{
      color:var(--muted);
      font-size:12px;
      font-weight:700;
    }
    .elite-workshop-message{
      margin:0;
      padding:12px;
      line-height:1.35;
    }
    .elite-workshop-section{
      border:1px solid rgba(57,210,255,.22);
      border-radius:8px;
      background:linear-gradient(180deg, rgba(20,24,35,.98) 0%, rgba(12,17,25,.98) 100%);
      box-shadow:0 10px 20px rgba(0,0,0,.24), 0 0 14px rgba(57,210,255,.07);
      overflow:hidden;
      padding:0;
    }
    .elite-workshop-section-title{
      display:block;
      padding:12px;
      color:var(--ink);
      font-size:18px;
      font-weight:900;
      letter-spacing:0;
      text-transform:lowercase;
      cursor:pointer;
    }
    details > .elite-workshop-section-title{
      list-style:none;
      display:flex;
      align-items:center;
      gap:8px;
    }
    details > .elite-workshop-section-title::-webkit-details-marker{
      display:none;
    }
    details > .elite-workshop-section-title::before{
      content:'▶';
      color:var(--ok);
      font-size:12px;
      line-height:1;
    }
    details[open] > .elite-workshop-section-title::before{
      content:'▼';
    }
    .elite-workshop-section:not(details) .elite-workshop-section-title{
      cursor:default;
    }
    .elite-ranking-list{
      margin:0;
      padding:0 12px 12px 34px;
      display:grid;
      gap:8px;
    }
    .elite-ranking-list li{
      padding-left:4px;
    }
    .elite-ranking-list strong{
      display:block;
    }
    .elite-ranking-list strong{
      color:var(--ink);
      font-size:13px;
      line-height:1.2;
    }
    .elite-workshop-table{
      width:calc(100% - 24px);
      margin:0 12px 12px;
      border-collapse:collapse;
      table-layout:fixed;
      color:var(--ink);
      font-weight:900;
    }
    .elite-workshop-table th,
    .elite-workshop-table td{
      padding:8px 0;
      border-bottom:1px solid rgba(57,210,255,.14);
      font-size:14px;
      line-height:1.2;
      text-align:right;
    }
    .elite-workshop-table th{
      color:var(--muted);
      font-size:12px;
      text-transform:lowercase;
    }
    .elite-workshop-table th:first-child,
    .elite-workshop-table td:first-child{
      text-align:left;
    }
    .elite-workshop-table tbody tr:last-child td{
      border-bottom:0;
    }
    [data-testid="elite-section-top-played"] .elite-workshop-section-title{
      font-size:21px;
    }
    .elite-top-level-table{
      table-layout:auto;
    }
    .elite-top-level-table td{
      font-size:21px;
    }
    .elite-top-level-table th{
      font-size:21px;
    }
    [data-testid="elite-section-hall-of-fame"] .elite-workshop-section-title{
      font-size:21px;
    }
    .elite-hall-table th,
    .elite-hall-table td{
      font-size:21px;
    }
    .elite-hall-table th:first-child,
    .elite-hall-table td:first-child{
      width:36px;
      color:var(--muted);
    }
    .elite-hall-table th:nth-child(2),
    .elite-hall-table td:nth-child(2){
      text-align:left;
    }
    .elite-hall-table tbody tr.anonymous td,
    .elite-hall-table td.anonymous-cell{
      color:#6f879d !important;
      font-weight:800;
    }
    [data-testid="elite-section-claims"] .elite-workshop-section-title{
      font-size:21px;
    }
    [data-testid="elite-section-claims"] .elite-claims-status{
      font-size:21px;
    }
    [data-testid="elite-section-claims"] .elite-claims-status strong{
      font-size:21px;
    }
    [data-testid="elite-section-all-levels"] .elite-workshop-section-title{
      font-size:21px;
    }
    .elite-level-stats{
      display:grid;
      gap:4px;
      margin-top:6px;
    }
    .elite-level-stat{
      display:flex;
      align-items:baseline;
      justify-content:space-between;
      gap:10px;
      color:var(--muted);
      font-size:14px;
      font-weight:800;
      line-height:1.25;
    }
    .elite-level-stat-label{
      text-transform:lowercase;
    }
    .elite-level-stat-value{
      color:var(--ink);
      font-size:15px;
      font-weight:900;
      text-align:right;
    }
    .elite-workshop-empty{
      margin:0;
      padding:0 12px 12px;
      color:var(--muted);
      font-size:12px;
      font-weight:700;
    }
    .elite-claims-status{
      padding:0 12px 12px;
      display:grid;
      grid-template-columns:auto 1fr auto;
      align-items:center;
      gap:10px;
      color:var(--muted);
      font-size:12px;
      font-weight:800;
    }
    .elite-claims-status strong{
      color:var(--ok);
      font-size:16px;
      letter-spacing:0;
    }
    .elite-level-filters{
      padding:0 12px 10px;
      display:grid;
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:6px;
    }
    .elite-level-filter{
      min-height:34px;
      border:1px solid rgba(57,210,255,.24);
      border-radius:8px;
      background:rgba(255,255,255,.04);
      color:var(--muted);
      font:inherit;
      font-size:21px;
      font-weight:900;
      line-height:1;
      text-transform:lowercase;
      cursor:pointer;
    }
    .elite-level-filter.active{
      border-color:rgba(106,255,106,.55);
      background:rgba(106,255,106,.12);
      color:var(--ink);
    }
    .elite-filter-empty{
      padding-top:0;
    }
    .elite-level-grid{
      padding:0 12px 12px;
      display:grid;
      grid-template-columns:repeat(auto-fill, minmax(126px, 1fr));
      gap:8px;
    }
    .elite-level-tile{
      min-height:84px;
      border:1px solid rgba(57,210,255,.34);
      background:linear-gradient(180deg, rgba(19,27,38,.98) 0%, rgba(12,17,25,.98) 100%);
      color:var(--ink);
      padding:10px;
      border-radius:8px;
      font:inherit;
      cursor:pointer;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:8px;
      text-align:left;
    }
    .elite-level-tile[hidden]{
      display:none;
    }
    .elite-level-tile:hover{
      background:rgba(57,210,255,.22);
    }
    .elite-level-tile:disabled{
      color:#8292a4;
      cursor:not-allowed;
      background:rgba(255,255,255,.04);
      border-color:rgba(255,255,255,.08);
    }
    .elite-level-tile.owned{
      border-color:rgba(106,255,106,.5);
      background:rgba(106,255,106,.1);
    }
    .elite-level-tile strong{
      font-size:21px;
      line-height:1;
    }
    .elite-level-tile .elite-level-stats{
      margin-top:0;
    }
    .elite-level-tile .elite-level-stat{
      color:var(--muted);
      font-size:18px;
    }
    .elite-level-tile .elite-level-stat-value{
      color:var(--muted);
      font-size:18px;
    }
    #community-wrapper .community-link{
      height:100%;
      min-height:58px;
      border: 1px solid rgba(88, 101, 242, .45);
      background: linear-gradient(135deg, #5865f2 0%, #7b84ff 100%);
      color: #f5f7ff;
      padding: 10px 13px;
      border-radius: 12px;
      font-weight: 800;
      letter-spacing: 0;
      cursor: pointer;
      box-shadow: 0 12px 24px rgba(88,101,242,.22);
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      font:inherit;
      font-size:14px;
      text-transform:lowercase;
      white-space:nowrap;
    }
    #community-wrapper .community-link:hover{
      filter: brightness(1.05);
      box-shadow: 0 14px 28px rgba(88,101,242,.3);
    }
    .discord-logo{
      width:20px;
      height:20px;
      flex:0 0 auto;
    }
    #level-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
      gap: 15px;
      margin-top: 20px;
    }
    .level-button {
      position: relative;
      aspect-ratio: 1;
      border: 2px solid var(--panel);
      background: var(--bg);
      color: var(--ink);
      font-size: 24px;
      font-weight: bold;
      border-radius: 10px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, transform 0.2s;
      overflow: hidden;
    }
    .level-button-number{
      position: relative;
      z-index: 1;
    }
    .level-button:hover {
      background: var(--panel);
      transform: scale(1.05);
    }
    .level-button:disabled {
      background: #111;
      color: #444;
      cursor: not-allowed;
      border-color: #222;
    }
    .level-button.unlocked {
      border-color: var(--accent);
    }
    .level-button.author-level {
      border-color: #ffd166;
      background:
        linear-gradient(180deg, rgba(255,209,102,.22) 0 6px, rgba(255,209,102,0) 6px),
        linear-gradient(135deg, rgba(255,209,102,.16) 0%, rgba(57,210,255,.12) 100%);
      box-shadow: inset 0 0 0 1px rgba(255,209,102,.28), 0 0 18px rgba(255,209,102,.22);
    }
    .level-button.author-level.unlocked:hover {
      background:
        linear-gradient(180deg, rgba(255,209,102,.32) 0 6px, rgba(255,209,102,0) 6px),
        linear-gradient(135deg, rgba(255,209,102,.26) 0%, rgba(57,210,255,.18) 100%);
    }
    .level-button-author-accent{
      position: absolute;
      top: 8px;
      right: 8px;
      width: 14px;
      height: 14px;
      border-radius: 999px;
      background: radial-gradient(circle at 35% 35%, #fff5d7 0%, #ffd166 42%, #ff9f43 100%);
      box-shadow: 0 0 0 2px rgba(13,15,20,.75), 0 0 14px rgba(255,209,102,.55);
      z-index: 1;
    }
    @media (max-width: 480px){
      .game-brand{
        height:72px;
        font-size:72px;
      }
      .elite-mode-label{
        margin-top:-4px;
        font-size:21px;
      }
    }
    .editor-body{
      align-items: stretch;
      min-height: 100vh;
      position: relative;
      overflow-x: hidden;
      background:
        radial-gradient(circle at 18% 12%, rgba(255, 172, 77, .14), transparent 26%),
        radial-gradient(circle at 84% 18%, rgba(57, 210, 255, .16), transparent 24%),
        linear-gradient(180deg, #0a0d13 0%, #111722 46%, #0b1017 100%);
    }
    .editor-atmosphere{
      position: fixed;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }
    .editor-orb{
      position: absolute;
      border-radius: 999px;
      filter: blur(18px);
      opacity: .45;
      mix-blend-mode: screen;
    }
    .editor-orb-a{
      width: 280px;
      height: 280px;
      left: -60px;
      top: 120px;
      background: radial-gradient(circle, rgba(255,209,102,.42) 0%, rgba(255,209,102,0) 70%);
    }
    .editor-orb-b{
      width: 360px;
      height: 360px;
      right: -120px;
      top: 40px;
      background: radial-gradient(circle, rgba(57,210,255,.30) 0%, rgba(57,210,255,0) 72%);
    }
    .editor-orb-c{
      width: 300px;
      height: 300px;
      right: 18%;
      bottom: -120px;
      background: radial-gradient(circle, rgba(106,255,106,.18) 0%, rgba(106,255,106,0) 72%);
    }
    .editor-app{
      position: relative;
      z-index: 1;
      width: 100%;
      min-height: 100vh;
      padding: 28px;
    }
    .editor-empty{
      max-width: 720px;
      margin: 88px auto 0;
      background: rgba(10,15,22,.92);
      border: 1px solid rgba(86, 111, 145, .28);
      border-radius: 24px;
      padding: 30px 34px;
      box-shadow: 0 30px 70px rgba(0,0,0,.42);
      text-align: center;
      color: var(--ink);
      font-weight: 700;
    }
    .editor-shell{
      max-width: 1440px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 340px minmax(0, 1fr);
      gap: 22px;
      align-items: start;
    }
    .editor-sidebar,
    .editor-card{
      background: linear-gradient(180deg, rgba(11,16,24,.94) 0%, rgba(18,24,36,.96) 100%);
      border: 1px solid rgba(80, 100, 128, .28);
      border-radius: 24px;
      box-shadow: 0 24px 60px rgba(0,0,0,.34);
      backdrop-filter: blur(12px);
    }
    .editor-sidebar{
      padding: 18px;
      position: sticky;
      top: 16px;
      display: grid;
      gap: 16px;
    }
    .editor-sidebar-hero{
      padding: 22px;
      border-radius: 20px;
      background:
        linear-gradient(155deg, rgba(255,209,102,.12) 0%, rgba(255,143,76,.08) 28%, rgba(57,210,255,.08) 100%),
        rgba(10,16,24,.82);
      border: 1px solid rgba(255,209,102,.15);
    }
    .editor-sidebar-hero h1,
    .editor-grid-head h3{
      margin: 0;
    }
    .editor-sidebar-copy{
      margin: 10px 0 0;
      color: #bfd5ea;
      line-height: 1.45;
      max-width: 24ch;
    }
    .editor-identity{
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin: 18px 0 0;
      padding: 9px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.07);
      color: #f3f7ff;
      font-weight: 700;
    }
    .editor-kicker{
      margin: 0 0 8px;
      color: #ffd166;
      text-transform: uppercase;
      letter-spacing: 1.1px;
      font-size: 11px;
      font-weight: 900;
    }
    .editor-sidebar-section{
      padding: 18px;
      border-radius: 20px;
      background: rgba(255,255,255,.02);
      border: 1px solid rgba(255,255,255,.05);
    }
    .editor-sidebar-section-head h3{
      margin: 0;
      font-size: 18px;
    }
    .editor-sidebar-section-head p{
      margin: 6px 0 0;
      color: var(--muted);
      line-height: 1.45;
    }
    .editor-level-list{
      display: grid;
      gap: 10px;
      margin-top: 16px;
    }
    .editor-level-card{
      border: 1px solid rgba(84,104,132,.28);
      background: linear-gradient(180deg, rgba(18,25,37,.92) 0%, rgba(12,17,26,.96) 100%);
      border-radius: 18px;
      padding: 14px 16px;
      color: var(--ink);
      text-align: left;
      cursor: pointer;
      display: grid;
      gap: 6px;
      transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease, background .16s ease;
    }
    .editor-level-card:hover{
      transform: translateY(-1px);
      border-color: rgba(101, 188, 222, .42);
      box-shadow: 0 14px 30px rgba(0,0,0,.24);
    }
    .editor-level-card.selected{
      border-color: rgba(57,210,255,.58);
      background: linear-gradient(180deg, rgba(16,29,43,.96) 0%, rgba(13,20,30,.98) 100%);
      box-shadow: 0 0 0 1px rgba(57,210,255,.15), 0 18px 34px rgba(0,0,0,.28);
    }
    .editor-level-card.author-level{
      border-color: rgba(255,209,102,.36);
    }
    .editor-level-card-topline{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:10px;
    }
    .editor-level-card-num{
      font-weight: 900;
      font-size: 16px;
    }
    .editor-level-card-version{
      padding: 4px 9px;
      border-radius: 999px;
      background: rgba(255,255,255,.06);
      color: #dbe8f8;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .4px;
    }
    .editor-level-card-meta{
      color: #9bb6cf;
      font-size: 13px;
      text-transform: capitalize;
      font-weight: 700;
    }
    .editor-token-list{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:14px;
    }
    .editor-token{
      display:inline-flex;
      align-items:center;
      padding:7px 10px;
      border-radius:999px;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.06);
      color: #d7e6f6;
      font-size: 12px;
      font-weight: 700;
      font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    }
    .editor-main{
      display: block;
    }
    .editor-canvas{
      display:grid;
      gap:16px;
    }
    .editor-main-head{
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 18px;
      padding: 22px 24px;
      background:
        linear-gradient(135deg, rgba(57,210,255,.10) 0%, rgba(255,209,102,.10) 100%),
        linear-gradient(180deg, rgba(11,16,24,.96) 0%, rgba(18,24,36,.98) 100%);
    }
    .editor-main-head-copy h2{
      margin: 0;
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1;
    }
    .editor-main-subtitle{
      margin: 12px 0 0;
      color: #b3c9de;
      line-height: 1.5;
      max-width: 56ch;
    }
    .editor-status-chip{
      flex-shrink: 0;
      padding: 10px 14px;
      border-radius: 999px;
      border: 1px solid rgba(105, 174, 202, .26);
      background: rgba(57,210,255,.10);
      color: var(--ink);
      font-weight: 900;
      text-transform: capitalize;
      letter-spacing: .4px;
    }
    .editor-status-chip.state-borrador{
      background: rgba(255, 209, 102, .12);
      border-color: rgba(255, 209, 102, .26);
      color: #ffe39d;
    }
    .editor-status-chip.state-publicado{
      background: rgba(106,255,106,.12);
      border-color: rgba(106,255,106,.26);
      color: #c4ffc4;
    }
    .editor-feedback{
      border-radius: 18px;
      padding: 15px 18px;
      white-space: pre-wrap;
      font-weight: 700;
      border: 1px solid rgba(80, 100, 128, .28);
      background: rgba(57,210,255,.10);
      box-shadow: 0 12px 30px rgba(0,0,0,.18);
    }
    .editor-feedback.success{
      background: rgba(106,255,106,.10);
      border-color: rgba(106,255,106,.28);
      color: #d6ffd6;
    }
    .editor-feedback.warning{
      background: rgba(255,209,102,.12);
      border-color: rgba(255,209,102,.26);
      color: #ffe7b4;
    }
    .editor-feedback.error{
      background: rgba(255,61,129,.12);
      border-color: rgba(255,61,129,.24);
      color: #ffcbdd;
    }
    .editor-card{
      padding: 22px;
    }
    .editor-controls-card{
      display:grid;
      gap:18px;
    }
    .editor-form-grid{
      display: grid;
      grid-template-columns: 1.5fr .7fr;
      gap: 14px;
    }
    .editor-powerups-card{
      display:grid;
      gap:14px;
      padding:16px 18px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.06);
      background: rgba(255,255,255,.03);
    }
    .editor-powerups-head{
      display:flex;
      justify-content:space-between;
      gap:14px;
      align-items:flex-end;
      flex-wrap:wrap;
    }
    .editor-powerups-head h3{
      margin:4px 0 0;
      font-size:18px;
    }
    .editor-powerups-head p:last-child{
      margin:0;
      color:#aec5db;
      max-width:44ch;
      line-height:1.4;
      font-size:13px;
    }
    .editor-powerups-grid{
      display:grid;
      grid-template-columns:repeat(3, minmax(0, 1fr));
      gap:12px;
    }
    .editor-powerups-grid label{
      display:grid;
      gap:8px;
      font-weight:800;
      color:#bfd5ea;
    }
    .editor-form-grid label{
      display: grid;
      gap: 8px;
      font-weight: 800;
      color: #bfd5ea;
    }
    .editor-form-grid span{
      font-size: 13px;
      letter-spacing: .25px;
    }
    .editor-form-grid input,
    .editor-powerups-grid input,
    .editor-grid input{
      width: 100%;
      border: 1px solid rgba(84,104,132,.30);
      background: rgba(11,15,23,.92);
      color: var(--ink);
      border-radius: 14px;
      padding: 12px 14px;
      font: inherit;
      transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
    }
    .editor-form-grid input:focus,
    .editor-powerups-grid input:focus,
    .editor-grid input:focus{
      outline: none;
      border-color: rgba(57,210,255,.56);
      box-shadow: 0 0 0 3px rgba(57,210,255,.12);
      background: rgba(14,20,30,.98);
    }
    .editor-actions{
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      align-items: center;
    }
    .editor-button{
      border: 0;
      border-radius: 14px;
      padding: 12px 16px;
      font-weight: 900;
      cursor: pointer;
      text-transform: uppercase;
      letter-spacing: .55px;
      transition: transform .14s ease, box-shadow .14s ease, filter .14s ease;
    }
    .editor-button:hover{
      transform: translateY(-1px);
      filter: brightness(1.03);
    }
    .editor-button.primary{
      background: linear-gradient(135deg, #39d2ff 0%, #6aff6a 100%);
      color: #071019;
      box-shadow: 0 14px 28px rgba(57,210,255,.20);
    }
    .editor-button.secondary{
      background: linear-gradient(135deg, #ffd166 0%, #ff8f4c 100%);
      color: #16110a;
      box-shadow: 0 14px 28px rgba(255,143,76,.16);
    }
    .editor-button.ghost{
      background: rgba(255,255,255,.04);
      color: var(--ink);
      border: 1px solid rgba(255,255,255,.08);
    }
    .editor-button.subtle{
      background: rgba(255,255,255,.08);
      color: #f6fbff;
      border: 1px solid rgba(255,255,255,.08);
    }
    .editor-card-grid{
      overflow: hidden;
      padding: 0;
    }
    .editor-grid-head{
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
      padding: 22px 22px 16px;
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .editor-grid-head p{
      margin: 8px 0 0;
      color: #aec5db;
      line-height: 1.45;
      max-width: 58ch;
    }
    .editor-grid-shell{
      padding: 18px 18px 20px;
      overflow-x: auto;
    }
    .editor-grid-columns{
      display:grid;
      grid-template-columns: repeat(10, minmax(96px, 1fr));
      gap:10px;
      margin-left: 120px;
      margin-bottom: 10px;
      min-width: 1060px;
    }
    .editor-grid-columns span{
      display:flex;
      justify-content:center;
      padding:7px 0;
      border-radius:999px;
      background: rgba(255,255,255,.05);
      color:#9bb6cf;
      font-size:12px;
      font-weight:800;
      letter-spacing:.45px;
    }
    .editor-grid{
      display: grid;
      gap: 10px;
      min-width: 1180px;
    }
    .editor-grid-row{
      display: grid;
      grid-template-columns: 110px minmax(0, 1fr);
      gap: 10px;
      align-items: start;
    }
    .editor-row-controls{
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 8px;
      align-items: stretch;
    }
    .editor-row-badge{
      display:flex;
      align-items:center;
      justify-content:center;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(57,210,255,.18) 0%, rgba(57,210,255,.06) 100%);
      border: 1px solid rgba(57,210,255,.18);
      color: #d8f6ff;
      font-weight: 900;
      letter-spacing: .35px;
      min-height: 46px;
    }
    .editor-row-controls button{
      border: 1px solid rgba(84,104,132,.30);
      background: rgba(17,24,36,.95);
      color: var(--ink);
      border-radius: 14px;
      min-height: 46px;
      padding: 0;
      font-weight: 900;
      font-size: 18px;
      cursor: pointer;
      transition: border-color .14s ease, background .14s ease;
    }
    .editor-row-controls button:hover{
      border-color: rgba(57,210,255,.45);
      background: rgba(22,31,47,.98);
    }
    .editor-row-cells{
      display: grid;
      grid-template-columns: repeat(10, minmax(96px, 1fr));
      gap: 10px;
    }
    .editor-grid input{
      min-height: 46px;
      text-align: center;
      font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .2px;
    }
    @media (max-width: 480px){
      body{ align-items:stretch; }
      header, main, .power-up-panel{
        max-width:100vw;
        width:100vw;
        border-radius:0;
        margin-left:0;
        margin-right:0;
      }
      main{ border-left:0; border-right:0; }
      .power-up-panel{
        margin-bottom:0;
        padding:10px 12px 12px;
        border-left:0;
        border-right:0;
      }
      .power-up-grid{
        display:grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap:8px;
      }
      .power-up-button{
        min-height:48px;
        padding:8px 6px;
        align-items:center;
        justify-content:center;
        gap:4px;
        text-align:center;
      }
      .power-up-button-title{
        width:100%;
        font-size:10px;
        line-height:1.1;
        letter-spacing:.2px;
        white-space:normal;
        text-wrap:balance;
      }
      .power-up-button-meta{
        width:100%;
        font-size:10px;
        line-height:1.1;
        text-align:center;
      }
      .power-up-hint{ margin-top:8px; }
      .editor-app{ padding: 12px; }
      .editor-shell{ grid-template-columns: 1fr; }
      .editor-sidebar{ position: static; }
      .editor-main-head,
      .editor-grid-head,
      .editor-actions{ flex-direction: column; align-items: stretch; }
      .editor-form-grid{ grid-template-columns: 1fr; }
      .editor-powerups-grid{ grid-template-columns: 1fr; }
      .editor-grid-columns{
        margin-left: 0;
        min-width: 980px;
      }
      .editor-grid{
        min-width: 980px;
      }
      .editor-grid-row{ grid-template-columns: 1fr; }
      .editor-row-controls{
        grid-template-columns: 72px repeat(3, minmax(0, 1fr));
      }
    }
