.big-nose{
  background:linear-gradient(135deg, #c8b390, #f3693b);
  color:#fff;
  text-align:center;
  animation:gradientBG 30s ease infinite;
}
body{
  height:100vh;
  background:linear-gradient(135deg, #c8b390, #f3693b);
  color:#fff;
  text-align:center;
  background-size:600% 600%;
  animation:gradientBG 30s ease infinite;
}
main{
  max-width:950px;
}
.login-btn{
  display:inline-block;
  background:#FF424D;
  color:#fff;
  font-weight:bold;
  padding:12px 24px;
  border-radius:8px;
  text-decoration:none;
  font-size:1.1em;
  transition:background 0.3s ease, transform 0.1s ease;
}
.login-btn:hover{
  background:#e63945;
  transform:translateY(-2px);
}
.login-btn:active{
  transform:translateY(0);
}
h1{
  font-size:2.5em;
  margin-bottom:0.5em;
}
p{
  color:#000;
  margin-bottom:1.5em;
}
article{
  color:#000;
}
article ul li{
  color:#00004d;
}

.buttons a{
  margin:0 10px;
  padding:10px 20px;
  background:#ff6a3d;
  border-radius:8px;
  text-decoration:none;
  color:white;
  font-weight:bold;
  transition:0.3s;
}
.game-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-bottom: 30px;
  grid-gap: 1px;
}
.game-gallery a.item:first-of-type {
  outline: 1px solid #ffc022;
  outline-offset: -1px;
  z-index: 2;
  box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.8);
}
.infos{
  display: none;
  top: 0;
  text-align: center;
  width: 100%;
  color:white;
  padding: 3px 5%;
  background-color: black;
  box-sizing: border-box;
  border: 1px solid white;
  border-bottom-color: white;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom: none;
}
.item:hover .infos{
  display:block;
}
.item .infos .title{
  display:block;
}
.item .infos .desc{
  display:block;
}

.tooltip {
  position: relative;
  cursor: help;
}

.tooltip::after {
  content: attr(data-tip);
  position: absolute;
  bottom: 120%;          /* position above text */
  left: 50%;
  transform: translateX(-50%);
  background: rgba(30, 30, 30, 0.9);
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.tooltip:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}
