/*=========================================================
  PalEntropía — Torneo
  index.css
=========================================================*/

*{
  box-sizing:border-box;
}

html{
  margin:0;
  padding:0;
  background:#0d0f10;
}

body{
  margin:0;
  padding:30px;
  background:#0d0f10;
  color:#eee;
  font-family:Arial,Helvetica,sans-serif;
  min-height:100vh;
}

/*=========================================================
  CABECERA
=========================================================*/

#cabecera{
  text-align:center;
  margin-bottom:25px;
}

h1{
  margin:0;
  color:#62d6ff;
  font-size:44px;
  line-height:1.1;
  text-shadow:0 0 12px rgba(98,214,255,.12);
}

#subtitulo{
  margin-top:7px;
  color:#fff;
  font-size:18px;
  line-height:1.2;
}

#subtitulo::after{
  content:"";
  display:block;
  width:210px;
  max-width:80%;
  height:1px;
  margin:8px auto 0;
  background:#62d6ff;
  opacity:.85;
  box-shadow:0 0 6px rgba(98,214,255,.25);
}

/*=========================================================
  BOTÓN MENÚ PRINCIPAL
=========================================================*/

#botonMenuPrincipal{
  position:fixed;
  top:10px;
  right:10px;
  width:34px;
  height:34px;
  padding:0;
  border:2px solid #62d6ff;
  border-radius:50%;
  background:#1d9bf0;
  color:#fff;
  font-size:17px;
  line-height:30px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:10000;
  box-shadow:0 0 10px rgba(98,214,255,.25);
  transition:.25s;
}

#botonMenuPrincipal:hover{
  background:#62d6ff;
  color:#001018;
  box-shadow:0 0 15px rgba(98,214,255,.42);
}

#botonMenuPrincipal:active{
  transform:scale(.92);
}

/*=========================================================
  CONTENEDOR TORNEO
=========================================================*/

#torneo{
  width:100%;
  max-width:900px;
  margin:0 auto;
  background:#181a1c;
  border:2px solid #62d6ff;
  border-radius:18px;
  padding:25px;
  box-shadow:
    0 0 20px rgba(98,214,255,.28),
    0 8px 30px rgba(0,0,0,.28);
}

/*=========================================================
  CABECERA TORNEO
=========================================================*/

#cabeceraTorneo{
  text-align:center;
}

#cabeceraTorneo h2{
  margin:0;
  color:#62d6ff;
  font-size:30px;
  line-height:1.2;
}

#cabeceraTorneo p{
  margin:10px 0 25px;
  color:#aaa;
  font-size:16px;
}

/*=========================================================
  ÍNDICE DEL TORNEO
=========================================================*/

#indiceTorneo{
  display:flex;
  flex-direction:column;
  gap:12px;
  width:100%;
}

.bloqueTorneo{
  width:100%;
  padding:16px;
  background:#151719;
  border:1px solid #25292c;
  border-left:4px solid #62d6ff;
  border-radius:10px;
  box-shadow:0 0 6px rgba(98,214,255,.08);
}

.bloqueTorneo h3{
  margin:0 0 12px;
  text-align:center;
  color:#62d6ff;
  font-size:18px;
}

/*=========================================================
  BOTONES DEL TORNEO
=========================================================*/

.botonTorneo{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:42px;
  padding:9px 16px;
  background:#151719;
  color:#fff;
  border:1px solid #62d6ff;
  border-radius:9px;
  text-decoration:none;
  font-size:16px;
  font-weight:600;
  box-shadow:0 0 8px rgba(98,214,255,.14);
  transition:.20s;
}

.botonTorneo:hover{
  background:#62d6ff;
  color:#001018;
  box-shadow:0 0 14px rgba(98,214,255,.30);
}

.botonTorneo:active{
  transform:scale(.985);
}

/*=========================================================
  VOLVER
=========================================================*/

#volver{
  text-align:center;
  margin:20px auto 0;
}

#botonVolver{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:9px 18px;
  background:#151719;
  color:#62d6ff;
  border:1px solid #62d6ff;
  border-radius:20px;
  text-decoration:none;
  font-size:15px;
  font-weight:600;
  box-shadow:0 0 8px rgba(98,214,255,.12);
  transition:.20s;
}

#botonVolver:hover{
  background:#62d6ff;
  color:#001018;
  box-shadow:0 0 14px rgba(98,214,255,.30);
}

#botonVolver:active{
  transform:scale(.96);
}

/*=========================================================
  RESPONSIVE
=========================================================*/

@media(max-width:768px){

  body{
    padding:15px;
  }

  h1{
    font-size:30px;
  }

  #subtitulo{
    font-size:16px;
  }

  #torneo{
    padding:18px;
    border-radius:15px;
  }

  #cabeceraTorneo h2{
    font-size:25px;
  }

  .bloqueTorneo{
    padding:14px;
  }

  .botonTorneo{
    min-height:42px;
    font-size:15px;
  }

  #botonMenuPrincipal{
    width:34px;
    height:34px;
    right:10px;
    top:10px;
  }

}

/*=========================================================
  FIN INDEX.CSS
=========================================================*/
