@import url(http://fonts.googleapis.com/css?family=Lato:300:400);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;

}

body {
  color: white;
  text-align: center;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
}

header {
  background-image: -o-linear-gradient(1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10%;
}



::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0, 3);
  border-radius: 10px;
}

::-webkit-scrollbar {

  width: 06px;
  background-color: #ecececd2;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 3px rgb(0, 0, 0);
  background-color: #ea00ff;
}

.logo img {
  width: 300px;
  /* Ajuste o tamanho da imagem */
  margin-bottom: 3px;
}

.logo h1 {
  color: #ffeb3b;
  font-size: 2.5rem;
  text-align: center;
}

.platforms {
  align-items: center;
  flex-direction: column;
  display: flex;
  margin-top: 5px;
  text-align: center;
  border-radius: 10px;
}

.platforms span {
  font-weight: bold;
  font-size: 1.5rem;
  color: rgb(255, 255, 255);
  margin-bottom: 15px;
}

.platform-icons {
  justify-content: center;
}

.platform-icons img {
  border-radius: 15px;
  width: 80px;
  margin: 0 5px;
  transition: transform 0.3s;
}

.platform-icons img:hover {
  transform: scale(1.1);
}



.centralizar-search {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search {
  width: 40%;
  border: 1px solid black;
  border-radius: 30px;
  animation: rgbBorderAnimation 4s ease-in-out infinite;
}

.search input {
  width: 100%;
  padding: 14px;
  background: transparent;
  outline: none;
  border: none;
  animation: corInput 4s ease-in-out infinite;
}


.search input::placeholder {
  color: #fff;
}



.game-card {
  position: relative;
  width: 300px;
  /* Largura do card */
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.game-card:hover {
  transform: translateY(-5px);
  /* Efeito de elevação no hover */
}

.game-card {
  width: 300px;
  height: 555px;
  border: 1px solid;
  /* Espessura e estilo da borda */
  animation: rgbBorderAnimation 4s infinite;
  /* Duração de 4 segundos e repete infinitamente */
}

.games-grid {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}

.game-card {
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.7);
  /* Sombra suave */
  background-color: #8507c0e1;
  border-radius: 15px;
  margin: 6px;
  padding: 3px;
  width: 160px;
  /* Ajuste na largura para melhor visualização das barras */
  text-align: center;
}

.game-card img {
  width: 100%;
  border-radius: 10px;
}

.game-info h3 {
  align-items: center;
  justify-content: center;
  display: flex;
  height: 40px;
  color: #ffeb3b;
  margin: 10px 0;
}

.game-info p {
  margin: 10px 0;
}

.animated-button {
  background: linear-gradient(-30deg, #0b1b3d 50%, #08142b 50%);
  padding: 15px 25px;
  margin: 10px;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  overflow: hidden;
  color: #d4e0f7;
  font-size: 15px;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.animated-button::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #8592ad;
  opacity: 0;
  -webkit-transition: .2s opacity ease-in-out;
  transition: .2s opacity ease-in-out;
}

.animated-button:hover::before {
  opacity: 0.2;
}

.animated-button span {
  position: absolute;
}

.animated-button span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(8, 20, 43, 0)), to(#2662d9));
  background: linear-gradient(to left, rgba(8, 20, 43, 0), #2662d9);
  -webkit-animation: 4s animateTop linear infinite;
  animation: 4s animateTop linear infinite;
}



.animated-button span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(8, 20, 43, 0)), to(#2662d9));
  background: linear-gradient(to top, rgba(8, 20, 43, 0), #2662d9);
  -webkit-animation: 4s animateRight linear -1s infinite;
  animation: 4s animateRight linear -1s infinite;
}


.animated-button span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(8, 20, 43, 0)), to(#2662d9));
  background: linear-gradient(to right, rgba(8, 20, 43, 0), #ffa600);
  -webkit-animation: 4s animateBottom linear infinite;
  animation: 4s animateBottom linear infinite;
}


.animated-button span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 20, 43, 0)), to(#2662d9));
  background: linear-gradient(to bottom, rgba(8, 20, 43, 0), #ffa600);
  -webkit-animation: 4s animateLeft linear -1s infinite;
  animation: 4s animateLeft linear -1s infinite;
}


.progress-container {
  width: 100%;
  background-color: #ddd;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-bar {
  height: 15px;
  border-radius: 10px;
  transition: width 0.5s ease, background-color 0.5s ease;
}

.green {
  background-color: rgb(62, 231, 90);
}

.orange {
  background-color: orange;
}

.red {
  background-color: red;
}



/* ESTILO HORARIO DE ULTIMA ATUALIZAÇÃO*/

.update-container {
  width: 100%;
  position: fixed;
  background: rgba(0, 0, 0, 0.397);
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
  z-index: 5;
  top: 0;
  color: #ffffff;
  font-family: 'Arial', sans-serif;
  font-size: 1.1rem;
  text-align: center;
  backdrop-filter: blur(5px);
}

.update-container:hover {
  cursor: pointer;
  transform: scale(1.05);
}

.bell-icon {
  font-size: 2rem;
  margin-right: 15px;
  color: #f0c674;
  transition: color 0.3s;
}

.bell-icon:hover {
  color: #ffeb3b;
}

.update-info {
  color: #e0e0ff;
}

.update-info p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
}


.disclaimer {
  background: linear-gradient(180deg, #000 0, #0015ff 100%);
  color: #fff;
  border-radius: 45px 45px 0 0;
  padding: 50px 30px 90px;
}

.disclaimer h2 {
  margin-bottom: 15px;
  color: var(--roxo)
}

.disclaimer p {
  white-space: pre-line
}