@font-face {
    font-family: 'SHPinscher-Regular';
    src: url('SHPinscher-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body{
    background-color: #000000;
    font-family: 'SHPinscher-Regular', Arial, sans-serif;
    color: #5eff00;
    margin: 0;
    padding: 20px;
    font-size: 20px;
}
header {    
    background-color:rgba(0, 0, 0, 0);
    box-shadow: 0 0 10px #00ff007a, 0 0 10px #00ff007a, 0 0 10px #00ff007a, inset 0 0 10px #00ff007a, inset 0 0 10px #00ff007a;
    border-radius: 25px 25px 40px 40px / 20px 20px 60px 60px;
    border: 4px solid #ffffff;
    border-style: dashed;
    color: rgb(0, 255, 55);
    padding: 10px 0;
    font-family: 'SHPinscher-Regular', Arial, sans-serif;
    text-align: center;
    font-size: 30px;
}
body .ascii-art{    /* Estilo para el ASCII art */
    font-family: monospace;
    white-space: pre;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    line-height: 0;
    text-shadow: 0 0 16px #00ff00, 0 0 16px #00ff00, 0 0 32px #00ff00;
}

body::after {   /* Efecto de fondo de pantalla */
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    background: repeating-linear-gradient(
        to bottom,
        rgba(0, 255, 0, 0.164) 0px,
        rgba(0, 255, 0, 0.164) 2px,
        transparent 2px,
        transparent 6px
    );
    z-index: 9999;
}

section.boot-sequence{    
    line-height: 0;
   
}

/* Selector CRT para menú navegable */
.crt-selector {   
  display: inline-block;
  width: 3.5em;
  font-weight: bold;
  margin-right: 8px;
}

#crt-menu ul {    /* Estilo para el menú */
  list-style: none;
  padding-left: 0;
}

#crt-menu li {    /* Elementos del menú */
  margin-bottom: 8px;
  font-size: 1.2em;
  border-radius: 6px;
  transition: background 0.2s;
}

#crt-menu li.selected {   /* Elemento seleccionado en el menú */
  background: rgba(0,255,0,0.18);
}

#crt-menu li a {    /* Enlaces dentro del menú */
  color: #00ff00;
  text-decoration: none;
  font-family: 'SHPinscher-Regular', monospace;
  text-shadow: 0 0 8px #00ff00, 0 0 16px #00ff00;
  pointer-events: none;
  cursor: default;
}

#crt-menu .menu-item.selected::before {
  content: "";
  margin-right: 0px;
}

#crt-menu-contacto ul {   /* Estilo para el menú de contacto */
  list-style: none;
  padding-left: 0;
}

#crt-menu-contacto ul, #crt-menu-contacto li {  /* Estilo para el menú de contacto */
  font-family: 'SHPinscher-Regular', monospace;
}

#crt-menu-contacto li {   /* Elementos del menú de contacto */
  margin-bottom: 8px;
  font-size: 1.2em;
  border-radius: 6px;
  transition: background 0.2s;
}

#crt-menu-contacto li.selected {    /* Elemento seleccionado en el menú de contacto */
  background: rgba(0,255,0,0.18);
}

#crt-menu-contacto li a { /* Enlaces dentro del menú de contacto */ 
  color: #00ff00;
  text-decoration: none;
  font-family: 'SHPinscher-Regular', monospace;
  text-shadow: 0 0 8px #00ff00, 0 0 16px #00ff00;
  pointer-events: none;
  cursor: default;
}
.ascii-container {  /*Los Ascii que vayan dentro iran a la izquierda*/
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
}

.ascii-art {  /* Estilo para el ASCII art */
  font-family: monospace;
  white-space: pre;
}

#ascii-art-right {   /* Estilo para el ASCII art de la derecha */
  letter-spacing: 5px;
  line-height: 0;
  font-size: 5px;
  /*color:#000000;*/   /*Descomentar para modo luz solo*/
}

#ascii-es {   /* Estilo para el ASCII art de España */
  letter-spacing: 5px;
  line-height: 0;
  font-size: 5px;
}
#ascii-en {   /* Estilo para el ASCII art de Inglaterra */
  letter-spacing: 5px;
  line-height: 0;
  font-size: 5px;
}
@keyframes blink {
  to { visibility: hidden; }
}
.blink {
  animation: blink 1s steps(2, start) infinite;
}
.ascii-art:focus {
  outline: none;
}

.menu-item {
  /* alineación, color, fuente, etc. */
  color: #00ff00;
  font-family: 'SHPinscher-Regular', monospace;
  white-space: pre;
  padding-left: 0;
  margin-left: 0;
  cursor: none;
  line-height: 0.4em;
  font-size: larger;
  
  
}

.menu-selectable.selected {
  background: #003300;
  color: #5eff00;
  font-size: larger;
  line-height: 0.39em;

}

.menu-item.menu-selectable a {
  color: inherit;
  text-decoration: none;
  font-family: inherit;
  text-shadow: inherit;
}

#crt-menu.tree-menu .menu-item.menu-selectable a {
  pointer-events: none;
  cursor: none;
}

