










































































:root {
  color-scheme: dark;
  --negro: #050407;
  --panel: #0b0a0e;
  --rosa: #e86fa4;
  --violeta: #b14fe0;
  --verde: #31d67a;
  --mono: "MS Gothic", Fixedsys, "Lucida Console", "Courier New", monospace;
  --arte: Consolas, "Courier New", monospace;
}

*, *::before, *::after {
  box-sizing: border-box;
  border-radius: 0 !important;
}

html, body {
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--negro);
}

body {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  color: var(--rosa);
  font-family: var(--mono);
  -webkit-font-smoothing: none;
  text-rendering: geometricPrecision;
  user-select: none;
}











.tubo {
  position: relative;
  align-self: center;
  justify-self: center;
  inline-size: min(100vw - 16px, (100dvh - 76px) * 1.7778);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: clamp(3px, .5vw, 7px) solid var(--violeta);
  border-block-start-color: var(--rosa);
  border-inline-start-color: var(--rosa);
  background: var(--negro);
  container-type: inline-size;
}


.tubo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  background: repeating-linear-gradient(to bottom, transparent 0 3px, var(--negro) 3px 4px);
  opacity: .5;
}




.acto {
  position: absolute;
  inset: 0;
  display: none;
  padding: 2cqi;
}

.tubo[data-escena="boot"]    .acto-boot,
.tubo[data-escena="arcade"]  .acto-arcade,
.tubo[data-escena="casa"]    .acto-casa,
.tubo[data-escena="oficial"] .acto-oficial,
.tubo[data-escena="ko"]      .acto-ko,
.tubo[data-escena="carta"]   .acto-carta,
.tubo[data-escena="final"]   .acto-final { display: grid; }








.acto p, .acto h1, .acto h3 { margin: 0; }

@keyframes ver { to { visibility: visible; } }
.ver { visibility: hidden; animation: ver 1ms steps(1, end) both; }

@keyframes tipeo { from { inline-size: 0; } to { inline-size: var(--ch, 20ch); } }

.tipeo {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  vertical-align: bottom;
  visibility: hidden;
  animation: ver 1ms steps(1, end) both, tipeo 1ms steps(20, end) both;
}


@keyframes viva { 0%, 100% { opacity: 1; } }

@keyframes parpadeo { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }




@keyframes golpe {
  0%   { transform: scale(2.6); opacity: 0; }
  1%   { transform: scale(2.6); opacity: 1; }
  40%  { transform: scale(1.35); }
  100% { transform: scale(1); }
}

.golpe { animation: golpe 260ms steps(3, end) both; }


.rotulo-arcade {
  font-weight: 700;
  letter-spacing: .1em;
  text-shadow: .5cqi .5cqi 0 var(--violeta), 1cqi 1cqi 0 var(--negro);
}





.acto-boot { place-items: center; }

.linea-encendido {
  position: absolute;
  z-index: 5;
  inset-inline: 50% 50%;
  inset-block-start: calc(50% - 1px);
  block-size: 2px;
  background: var(--rosa);
  




  animation: encendido 300ms steps(3, end) forwards;
}

@keyframes encendido {
  0%   { inset-inline: 50% 50%; opacity: 1; }
  70%  { inset-inline: 0 0; opacity: 1; }
  100% { inset-inline: 0 0; opacity: 0; }
}

.terminal {
  position: relative;
  z-index: 1;
  inline-size: 100%;
  block-size: 100%;
  padding: 2cqi 3cqi;
  border: .4cqi solid var(--violeta);
  border-block-start-color: var(--rosa);
  border-inline-start-color: var(--rosa);
  background: var(--panel);
  color: var(--violeta);
  


  font: 700 1.16cqi/1.28 var(--mono);
  letter-spacing: .04em;
  visibility: hidden;
  animation: ver 1ms steps(1, end) 240ms both;
}

.terminal p { margin: 0 0 .2cqi; }

.post-titulo {
  color: var(--rosa);
  font-size: 2.7cqi;
  line-height: 1.1;
  letter-spacing: 0;
  --ch: 22ch;
  animation: ver 1ms steps(1, end) 300ms both, tipeo 620ms steps(22, end) 300ms both;
}

.post-bios { visibility: hidden; color: var(--violeta); font-size: 1.3cqi; letter-spacing: .1em; animation: ver 1ms steps(1, end) 980ms both; }

.post-linea {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 1cqi;
  margin-block-end: .16cqi !important;
  white-space: nowrap;
  visibility: hidden;
  animation: ver 1ms steps(1, end) both;
}

.post-linea > span { min-inline-size: 0; overflow: hidden; }
.post-linea > span::after { content: " ................................................................................................................................"; }
.post-linea b { color: var(--verde); }
.post-linea b.mal { color: var(--rosa); }

.post-mem { animation-delay: 1160ms; }

.rueda { display: inline-block; block-size: 1.5em; overflow: hidden; vertical-align: bottom; line-height: 1.5; }
.rueda i { display: block; font-style: normal; animation: rueda 720ms steps(3, end) 1220ms both; }

@keyframes rueda { from { transform: translateY(0); } to { transform: translateY(-4.5em); } }

.post-det { visibility: hidden; margin-block-end: .4cqi !important; color: var(--rosa); font-size: 1.3cqi; letter-spacing: .1em; animation: ver 1ms steps(1, end) 1980ms both; }



.p1  { animation-delay: 2160ms; }
.p2  { animation-delay: 2250ms; }
.p3  { animation-delay: 2330ms; }
.p4  { animation-delay: 2520ms; }
.p5  { animation-delay: 2610ms; }
.p6  { animation-delay: 2840ms; }
.p7  { animation-delay: 2930ms; }
.p8  { animation-delay: 3080ms; }
.p9  { animation-delay: 3320ms; }
.p10 { animation-delay: 3410ms; }
.p11 { animation-delay: 3640ms; }








.post-fase2 { visibility: hidden; margin-block: .5cqi .3cqi !important; color: var(--rosa); font-size: 1.15cqi; letter-spacing: .1em; animation: ver 1ms steps(1, end) 3900ms both; }
.m1 { animation-delay: 4100ms; }
.m2 { animation-delay: 4800ms; }
.m3 { animation-delay: 5400ms; }
.m4 { animation-delay: 6000ms; }
.m1 .mini i { animation-delay: 4150ms; }
.m2 .mini i { animation-delay: 4850ms; }
.m3 .mini i { animation-delay: 5450ms; }
.m4 .mini i { animation-delay: 6050ms; }

.mini { position: relative; display: inline-block; inline-size: 8ch; overflow: hidden; vertical-align: baseline; color: var(--verde); }
.mini em { position: absolute; inset: 0; color: var(--violeta); font-style: normal; white-space: nowrap; }
.mini i { position: relative; display: block; inline-size: 0; overflow: hidden; font-style: normal; white-space: nowrap; animation: carga8 560ms steps(8, end) both; }

@keyframes carga8 { from { inline-size: 0; } to { inline-size: 8ch; } }








.p12 { animation-delay: 9200ms; }
.p13 { animation-delay: 9500ms; }

.post-server { visibility: hidden; margin-block-start: .5cqi !important; color: var(--verde); letter-spacing: .1em; animation: ver 1ms steps(1, end) 9900ms both; }





.post-linea b.raro { position: relative; display: inline-block; inline-size: 3ch; color: var(--rosa); text-align: start; }

.duda {
  display: inline-block;
  inline-size: 3ch;
  font-style: normal;
  white-space: nowrap;
  clip-path: inset(0 100% 0 0);
  



  animation: duda 680ms steps(3, end) 6600ms forwards,
             apagar 1ms steps(1, end) 7400ms forwards;
}

@keyframes duda { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0 0 0 0); } }
@keyframes apagar { to { visibility: hidden; } }

.duda-fin {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  display: inline-block;
  font-style: normal;
  visibility: hidden;
  animation: ver 1ms steps(1, end) 7400ms both;
}

.post-load { margin-block-start: .5cqi !important; animation-delay: 6600ms; }
.post-load > span { color: var(--rosa); }

.barra { position: relative; display: inline-block; inline-size: 12ch; overflow: hidden; vertical-align: baseline; color: var(--verde); }
.barra em { position: absolute; inset: 0; color: var(--violeta); font-style: normal; white-space: nowrap; }
.barra i {
  position: relative;
  display: block;
  inline-size: 0;
  overflow: hidden;
  font-style: normal;
  white-space: nowrap;
  animation: carga 2600ms steps(12, end) 6660ms both;
}

@keyframes carga { from { inline-size: 0; } to { inline-size: 12ch; } }

.post-ready { visibility: hidden; margin-block-start: .5cqi !important; animation: ver 1ms steps(1, end) 10300ms both; }
.post-prompt { visibility: hidden; margin-block-end: 0 !important; color: var(--verde); animation: ver 1ms steps(1, end) 10600ms both; }
.cmd { --ch: 8ch; animation: ver 1ms steps(1, end) 11100ms both, tipeo 620ms steps(8, end) 11100ms both; }
.cursor { display: inline-block; color: var(--verde); animation: parpadeo 560ms steps(1, end) 10600ms infinite; }

.fogonazo {
  position: absolute;
  inset: 0;
  z-index: 40;
  background: var(--rosa);
  opacity: 0;
  animation: fogonazo 300ms steps(2, end) 12300ms forwards;
}

@keyframes fogonazo { 0% { opacity: .9; } 100% { opacity: 0; } }




.acto-arcade { place-items: center; }

.marquesina { display: grid; justify-items: center; gap: 2cqi; text-align: center; }

.logo {
  margin: 0;
  color: var(--rosa);
  font-size: 11cqi;
  line-height: .92;
  letter-spacing: .05em;
  text-shadow: .7cqi .7cqi 0 var(--violeta), 1.4cqi 1.4cqi 0 var(--negro);
  animation: golpe 300ms steps(3, end) 120ms both;
}

.bajada { visibility: hidden; color: var(--verde); font-size: 2.4cqi; letter-spacing: .34em; animation: ver 1ms steps(1, end) 620ms both; }




.server-linea {
  visibility: hidden;
  margin-block-start: 1.6cqi;
  padding: .8cqi 2cqi;
  border: .3cqi solid var(--verde);
  color: var(--verde);
  font-size: 2.4cqi;
  letter-spacing: .18em;
  animation: ver 1ms steps(1, end) 1100ms both, parpadeo 1100ms steps(1, end) 1600ms infinite;
}









.acto-casa { grid-template-rows: auto minmax(0, 1fr) auto; gap: 1cqi; }

.marcador {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: start;
  gap: 1.6cqi;
  visibility: hidden;
  animation: ver 1ms steps(1, end) 120ms both;
}

.hp { display: grid; gap: .4cqi; }
.hp-nombre { display: flex; justify-content: space-between; color: var(--violeta); font-size: 1.5cqi; letter-spacing: .12em; }
.hp-canal { position: relative; block-size: 2.2cqi; border: .3cqi solid var(--violeta); background: var(--negro); }



.hp-canal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to right, transparent 0 1.4cqi, var(--negro) 1.4cqi 1.7cqi);
}

.hp-relleno { position: absolute; inset: 0; inline-size: 0; background: var(--rosa); animation: llenar 700ms steps(12, end) 260ms both; }
.hp.baja .hp-relleno { background: var(--violeta); }
.hp.animo .hp-relleno { background: var(--verde); }

@keyframes llenar { from { inline-size: 0; } to { inline-size: var(--nivel, 50%); } }

.reloj-ring {
  align-self: center;
  padding: .4cqi 1.4cqi;
  border: .3cqi solid var(--rosa);
  background: var(--negro);
  color: var(--verde);
  font-size: 3.2cqi;
  letter-spacing: .06em;
}

.lienzo { position: relative; display: grid; place-items: center; min-block-size: 0; }

.arte {
  position: absolute;
  margin: 0;
  color: var(--rosa);
  font: 700 1.9cqi/1.28 var(--arte);
  white-space: pre;
  letter-spacing: 0;
  opacity: 0;
}

.plano1 { animation: viva 1500ms steps(1) 300ms; }
.plano2 { animation: viva 1400ms steps(1) 1800ms; }
.plano3 { animation: viva 1400ms steps(1) 3200ms; }
.plano4 { animation: viva 1600ms steps(1) 4600ms; }

.pie { display: grid; gap: .2cqi; padding: .7cqi 1.2cqi; border: .3cqi solid var(--violeta); background: var(--panel); font-size: 1.5cqi; color: var(--violeta); }


.pie p { margin: 0; }
.pie b { color: var(--verde); font-weight: 700; }
.pie i { color: var(--rosa); font-style: normal; }
.pie .reloj { display: inline-block; inline-size: 5ch; color: var(--verde); }

.beat1 { animation: ver 1ms steps(1, end) 600ms both; }
.beat2 { animation: ver 1ms steps(1, end) 2000ms both; }
.beat3 { animation: ver 1ms steps(1, end) 3400ms both; }
.beat4 { animation: ver 1ms steps(1, end) 4800ms both; }






.acto-oficial { place-items: center; }

.navegador {
  inline-size: 100%;
  block-size: 100%;
  display: grid;
  grid-template-rows: auto auto auto auto minmax(0, 1fr) auto;
  border: .4cqi solid var(--violeta);
  border-block-start-color: var(--rosa);
  border-inline-start-color: var(--rosa);
  background: var(--panel);
  visibility: hidden;
  animation: ver 1ms steps(1, end) 100ms both;
}

.barra-url {
  display: flex;
  align-items: center;
  gap: 1cqi;
  padding: .8cqi 1.2cqi;
  border-block-end: .3cqi solid var(--violeta);
  background: var(--negro);
  color: var(--verde);
  font-size: 2.6cqi;
  letter-spacing: .04em;
}

.barra-url span { color: var(--violeta); font-size: 1.8cqi; }
.barra-url .vivo { margin-inline-start: auto; padding: .3cqi 1cqi; background: var(--verde); color: var(--negro); font-size: 1.6cqi; letter-spacing: .14em; animation: parpadeo 900ms steps(1, end) infinite; }

.cinta-titulo {
  display: flex;
  align-items: center;
  gap: 1cqi;
  padding: .6cqi 1.2cqi;
  background: linear-gradient(180deg, var(--rosa) 0 48%, var(--violeta) 48% 100%);
  color: var(--negro);
  font: 700 1.8cqi/1 var(--mono);
}

.cinta-titulo .mirando { margin-inline-start: auto; }











.pestanas {
  display: flex;
  gap: .6cqi;
  padding: .6cqi 1.2cqi;
  border-block-end: .25cqi solid var(--violeta);
  font-size: 1.4cqi;
  letter-spacing: .1em;
}

.pestanas span,
.pestanas b {
  padding: .4cqi 1cqi;
  border: .2cqi solid var(--violeta);
  color: var(--violeta);
  font-weight: 400;
}

.pestanas b { background: var(--rosa); border-color: var(--rosa); color: var(--negro); font-weight: 700; }

.franja {
  padding: .5cqi 1.2cqi;
  border-block-end: .25cqi solid var(--violeta);
  color: var(--verde);
  font-size: 1.3cqi;
  letter-spacing: .16em;
}

.cuerpo-sitio { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr); gap: .8cqi; min-block-size: 0; padding: .8cqi; }



.pila { display: grid; grid-template-rows: repeat(4, minmax(0, 1fr)); gap: .8cqi; min-block-size: 0; }

.archivo {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-block-size: 0;
  border: .25cqi solid var(--violeta);
  background: var(--negro);
  visibility: hidden;
  animation: ver 1ms steps(1, end) both;
}

.archivo p { padding: .5cqi .7cqi; color: var(--rosa); font-size: 1.2cqi; line-height: 1.35; }
.archivo .dato { color: var(--verde); }
.archivo .flojo { color: var(--violeta); }


.hef { display: grid; align-content: center; gap: .35cqi; padding: .5cqi .7cqi; font-size: 1.1cqi; color: var(--violeta); }
.hef div { display: grid; grid-template-columns: 11ch minmax(0, 1fr) 4ch; align-items: center; gap: .5cqi; }
.hef .canal { position: relative; block-size: 1.2cqi; border: 1px solid var(--violeta); }
.hef .canal i { position: absolute; inset: 0; inline-size: var(--n, 50%); background: var(--rosa); }
.hef .canal.ok i { background: var(--verde); }
.hef b { color: var(--verde); font-weight: 700; text-align: end; }

.a1 { animation-delay: 500ms; }
.a2 { animation-delay: 800ms; }
.a3 { animation-delay: 1100ms; }
.a4 { animation-delay: 1400ms; }
.a5 { animation-delay: 1700ms; }
.a6 { animation-delay: 2000ms; }

.panel-sitio {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-block-size: 0;
  border: .25cqi solid var(--violeta);
  background: var(--negro);
  visibility: hidden;
  animation: ver 1ms steps(1, end) both;
}

.panel-cabecera { display: flex; justify-content: space-between; gap: 1cqi; padding: .5cqi .8cqi; background: var(--violeta); color: var(--negro); font-size: 1.3cqi; font-weight: 700; letter-spacing: .08em; }

.arte-web { margin: 0; place-self: center; color: var(--rosa); font: 700 1.2cqi/1.28 var(--arte); white-space: pre; }

.ahora { margin: 0; display: grid; gap: .25cqi; padding: .6cqi .8cqi; border-block-start: .2cqi solid var(--violeta); font-size: 1.25cqi; }
.ahora div { display: flex; gap: .8cqi; }
.ahora dt { color: var(--violeta); flex: 0 0 13ch; letter-spacing: .08em; }
.ahora dd { margin: 0; color: var(--rosa); }

.porque { margin: 0; display: grid; align-content: start; gap: .45cqi; padding: .7cqi .8cqi; list-style: none; font-size: 1.25cqi; color: var(--rosa); }
.porque li b { display: inline-block; inline-size: 6ch; color: var(--verde); font-weight: 700; }

.barra-estado { display: flex; justify-content: space-between; padding: .5cqi 1.2cqi; border-block-start: .25cqi solid var(--violeta); color: var(--violeta); font-size: 1.3cqi; letter-spacing: .08em; }
.barra-estado b { color: var(--verde); font-weight: 700; }

.w1 { animation-delay: 500ms; }
.w2 { animation-delay: 900ms; }

.llamado {
  position: absolute;
  z-index: 30;
  inset-block-end: 0;
  inset-inline: 0;
  padding: 1cqi;
  text-align: center;
  background: var(--verde);
  color: var(--negro);
  font-size: 3.4cqi;
  font-weight: 700;
  letter-spacing: .16em;
  visibility: hidden;
  animation: ver 1ms steps(1, end) 2400ms both, golpe 260ms steps(3, end) 2400ms both;
}










.acto-ko { place-items: center; }

.ko-centro { display: grid; justify-items: center; gap: 1.1cqi; text-align: center; }

.ko {
  color: var(--rosa);
  font-size: 7cqi;
  font-weight: 700;
  letter-spacing: .1em;
  text-shadow: .5cqi .5cqi 0 var(--violeta), 1cqi 1cqi 0 var(--negro);
  animation: golpe 320ms steps(3, end) 80ms both;
}

.ko-fin {
  visibility: hidden;
  color: var(--violeta);
  font-size: 3.6cqi;
  letter-spacing: .3em;
  animation: ver 1ms steps(1, end) 500ms both;
}

.ko-causa { visibility: hidden; color: var(--rosa); font-size: 2.6cqi; animation: ver 1ms steps(1, end) 900ms both; }
.ko-datos { visibility: hidden; color: var(--violeta); font-size: 1.8cqi; letter-spacing: .1em; animation: ver 1ms steps(1, end) 1300ms both; }

.ko-server {
  visibility: hidden;
  margin-block-start: 1.4cqi !important;
  padding: .6cqi 1.6cqi;
  border: .25cqi solid var(--verde);
  color: var(--verde);
  font-size: 2cqi;
  letter-spacing: .16em;
  animation: ver 1ms steps(1, end) 1900ms both;
}




.ko-sigue { visibility: hidden; margin-block-start: 1.2cqi !important; color: var(--rosa); font-size: 3.2cqi; letter-spacing: .12em; animation: ver 1ms steps(1, end) 2500ms both, golpe 260ms steps(3, end) 2500ms both; }
.ko-proxima { visibility: hidden; color: var(--violeta); font-size: 2.6cqi; letter-spacing: .1em; animation: ver 1ms steps(1, end) 3100ms both; }




.cuenta { display: inline-block; block-size: 1.1em; overflow: hidden; vertical-align: bottom; color: var(--verde); font-weight: 700; line-height: 1.1; }
.cuenta i { display: block; font-style: normal; animation: cuenta 2400ms steps(5, end) 3300ms both; }

@keyframes cuenta { from { transform: translateY(0); } to { transform: translateY(-5.5em); } }




.acto-carta { place-items: center; }

.lapida { display: grid; justify-items: center; gap: 1cqi; text-align: center; }
.vida { visibility: hidden; color: var(--violeta); font-size: 2.4cqi; letter-spacing: .2em; animation: ver 1ms steps(1, end) 100ms both; }

.registro { margin-block-start: .6cqi; display: grid; gap: .3cqi; color: var(--violeta); font-size: 1.7cqi; text-align: start; }
.registro div { visibility: hidden; animation: ver 1ms steps(1, end) both; }
.r1 { animation-delay: 500ms; }
.r2 { animation-delay: 650ms; }
.r3 { animation-delay: 800ms; }
.r4 { animation-delay: 950ms; }
.r5 { animation-delay: 1100ms; }

.herencia { visibility: hidden; margin-block-start: 1.2cqi; color: var(--verde); font-size: 2.4cqi; letter-spacing: .12em; animation: ver 1ms steps(1, end) 1600ms both; }
.carta { color: var(--rosa); font-size: 2.6cqi; --ch: 44ch; animation: ver 1ms steps(1, end) 2000ms both, tipeo 1100ms steps(44, end) 2000ms both; }



.acto-final { place-items: center; }

.marca { display: grid; justify-items: center; gap: 1.6cqi; text-align: center; }

.titulo {
  margin: 0;
  color: var(--rosa);
  font-size: 9.4cqi;
  line-height: .95;
  letter-spacing: .06em;
  text-shadow: .6cqi .6cqi 0 var(--violeta), 1.2cqi 1.2cqi 0 var(--negro);
  animation: golpe 300ms steps(3, end) 100ms both;
}

.tres { display: grid; gap: .5cqi; color: var(--violeta); font-size: 2.2cqi; letter-spacing: .2em; }
.tres span { visibility: hidden; animation: ver 1ms steps(1, end) both; }
.tres span:nth-child(1) { animation-delay: 700ms; }
.tres span:nth-child(2) { animation-delay: 1100ms; }
.tres span:nth-child(3) { color: var(--rosa); animation-delay: 1500ms; }

.dominio {
  visibility: hidden;
  margin-block-start: 1.2cqi;
  display: flex;
  align-items: center;
  gap: 1.4cqi;
  font-size: 3.4cqi;
  color: var(--verde);
  animation: ver 1ms steps(1, end) 2100ms both;
}

.dominio em { padding: .4cqi 1cqi; background: var(--verde); color: var(--negro); font-style: normal; font-size: 1.9cqi; letter-spacing: .16em; animation: parpadeo 900ms steps(1, end) 2100ms infinite; }

.server-final { visibility: hidden; color: var(--violeta); font-size: 1.9cqi; letter-spacing: .2em; animation: ver 1ms steps(1, end) 2600ms both, parpadeo 1100ms steps(1, end) 3100ms infinite; }



.mandos { display: flex; align-items: center; gap: 8px; padding: 8px; font: 700 11px/1 var(--mono); color: var(--violeta); }
.progreso { position: relative; flex: 1; block-size: 10px; border: 2px solid var(--violeta); background: var(--negro); }
.progreso i { position: absolute; inset: 0; inline-size: 0; background: var(--verde); }

.mandos button {
  padding: 6px 12px;
  border: 2px solid var(--negro);
  border-block-start-color: var(--rosa);
  border-inline-start-color: var(--rosa);
  background: var(--violeta);
  color: var(--negro);
  font: 700 11px/1 var(--mono);
  letter-spacing: .08em;
  cursor: pointer;
}

.mandos button:active { transform: translate(1px, 1px); }
.mandos :focus-visible { outline: 2px dotted var(--verde); outline-offset: 2px; }

.fin {
  position: absolute;
  z-index: 95;
  inset-block-end: 3cqi;
  inset-inline-end: 3cqi;
  padding: 1cqi 1.8cqi;
  border: .3cqi solid var(--verde);
  background: var(--negro);
  color: var(--verde);
  font: 700 1.8cqi/1 var(--mono);
  letter-spacing: .12em;
  cursor: pointer;
  display: none;
}

.tubo[data-fin="si"] .fin { display: block; }

@media (max-width: 620px) {
  .mandos { font-size: 10px; }
  .mandos button { padding: 8px 10px; }
}
