/* Efecto de fondo respirando */
  body {margin: 0; height: 100vh;
    background-color: #FFFFFF; /* color inicial */
    animation: respirar 8s infinite alternate;
    color: #ffffff; /* texto visible sobre fondo oscuro */
    font-family: Arial, sans-serif; text-align: center;
    padding: 2% 30%;}
      @media (max-width: 700px){body {padding: 2% 10%;}}
/* Botones Generales */    
  .botones button {padding: 5px 5px;
      cursor: pointer; border: none;
      border-radius: 5px; background-color: #222;
      color: white; font-size: 15px;
      transition: background-color 0.3s;
      margin-right: 5px; margin-bottom: 5px;}  
  .botones button:hover {
      background-color: #555;}

    /* Efecto de fondo respirando */
   @keyframes respirar {
  0%   { background-color: #000000; }
  25%  { background-color: #1d1a1a; }
  50%  { background-color: #1b1818; }
  75%  { background-color: #272323; }
  100% { background-color: #000000; }}

/* Configuración para estilo visual de enlaces */
.l {  color: inherit;          /* mismo color que el texto */
      text-decoration: none;   /* sin subrayado */
      cursor: pointer;         /* sin la manito */
      pointer-events: auto;    /* mantiene el click activo */}


/* Botones de tabla */    
    h1 {margin-bottom: 30px;}
    table {width: 90%; max-width: 800px;
      margin: 0 auto; border-collapse: collapse;}
    td {border: none; padding: 0px;
      vertical-align: top;}
    .plataforma {text-align: center;
      margin-bottom: 10px;}
    .plataforma .nombre {font-weight: bold;
      font-size: 0.9rem; margin-bottom: 1px;}
    .plataforma .link-crudo span {font-size: 0.75rem;
      word-break: break-word; display: block;
      margin-bottom: 2px;}
    .plataforma .botones button {padding: 5px 5px;
      cursor: pointer; border: none;
      border-radius: 5px; background-color: #222;
      color: white; font-size: 15px;
      transition: background-color 0.3s;
      margin-right: 5px; margin-bottom: 5px;}
    .plataforma .botones button:hover {
      background-color: #555;}    
      
