
/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Jura:wght@300&display=swap");
/*=============== VARIABLES CSS ===============*/
:root {
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(82, 60%, 28%);
  --title-color: hsl(0, 0%, 15%);
  --text-color: hsl(0, 0%, 35%);
  --body-color: hsl(0, 0%, 95%);
  --container-color: hsl(0, 0%, 100%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --h2-font-size: 1rem;
  --small-font-size: .813rem;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1120px) {
  :root {
    --h2-font-size: 1.2rem;
    --small-font-size: .875rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  background-color: black;
  color: var(--text-color);
  text-align: center;
  background-image: url(https://f.feridinha.com/FDH9I.gif);
  background-size: cover;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

h1{
  font-family: 'Bebas Neue', sans-serif;
  font-size: 60px;
  padding: 0;
  margin: 0;
  color: white;
  text-shadow: 0 0 3px #000000, 0 0 3px #000000; 
}

h3{
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  padding: 0;
  margin: 0;
  color: white;
}

/*=============== CARD ===============*/
.container {
  font-family: "Poppins", sans-serif;


  margin-inline: 1.5rem;
  padding-block: 5rem;

}

.card__container {
  display: grid;
  row-gap: 1.5rem;
}

.card__article {
  position: relative;
  overflow: hidden;
}

.card__img {
  width: 400px;
  border-radius: 1.5rem;
  
}

.card__data {
  width: 200px;
  padding: 1.5rem 2rem;
  box-shadow: 0 8px 24px hsla(0, 0%, 0%, .15);
  border-radius: 1rem;
  position: absolute;
  bottom: -7rem;
  left: 0;
  right: 0;
  margin-inline: auto;
  opacity: 0;
  transition: opacity 1s 1s;
  background-color:black;
  border:solid #ffd700;
  
}

.card__description {
  display: block;
  font-size: var(--small-font-size);
  margin-bottom: .20rem;
  color: White;
}

.card__title {
  font-size: var(--h2-font-size);
  font-weight: 200;
  color: White;
  margin-bottom: .75rem;
}
/*=============== TWITCH ===============*/
.card__button1 {
  padding:16px;
  border-radius: 3px;
  background-image:url(https://f.feridinha.com/1fQf9.png) ;
  display: inline;
}
/*=============== STEAM ===============*/
.card__button2 {
  padding:16px;
  border-radius: 8px;
  background-image:url(https://f.feridinha.com/IAmFN.png) ;
  display: inline;
  
}
/*=============== ITCHIO ===============*/
.card__button3 {
  padding:16px;
  border-radius: 8px;
  background-image:url(https://f.feridinha.com/VvPFd.png) ;
  display: inline;
}
/*=============== Youtube ===============*/
.card__button4 {
  padding:16px;
  border-radius: 8px;
  background-image:url(https://f.feridinha.com/JqbYY.png) ;
  display: inline;
}
/*=============== NINTENDO ===============*/
.card__button5 {
  padding:16px;
  border-radius: 3px;
  background-image:url(https://f.feridinha.com/6fqdB.png) ;
  display: inline;
}
/*=============== EPIC ===============*/
.card__button6 {
  padding:16px;
  border-radius: 3px;
  background-image:url(https://f.feridinha.com/W4C0Z.jpg) ;
  display: inline;
}
/*=============== PLAYSTATION ===============*/
.card__button7 {
  padding:16px;
  border-radius: 3px;
  background-image:url(https://f.feridinha.com/0nSTX.png) ;
  display: inline;
}
/*=============== INFINITE CRAFT ===============*/
.card__button88 {
  padding:16px;
  border-radius: 3px;
  background-image:url(https://f.feridinha.com/jhSof.png) ;
  display: inline;
}

/*=============== ROBLOX ===============*/
.card__button8 {
  padding:16px;
  border-radius: 3px;
  background-image:url(https://f.feridinha.com/1fQf9.png) ;
  display: inline;
}

/*=============== GuessTheGame ===============*/
.card__button10 {
  padding:16px;
  border-radius: 3px;
  background-image:url(https://f.feridinha.com/3uQSX.png) ;
  display: inline;
}

/*=============== Imagem/sites ===============*/
.card__button9 {
  padding:16px;
  border-radius: 3px;
  background-image:url(https://f.feridinha.com/kg1q7.png) ;
  display: inline;
}





.card__button:hover {
  text-decoration: underline;
}

/* Naming animations in hover */
.card__article:hover .card__data {
  animation: show-data 1s forwards;
  opacity: 1;
  transition: opacity .3s;
}

.card__article:hover {
  animation: remove-overflow 2s forwards;
}

.card__article:not(:hover) {
  animation: show-overflow 2s forwards;
}

.card__article:not(:hover) .card__data {
  animation: remove-data 1s forwards;
}

/* Card animation */
@keyframes show-data {
  50% {
    transform: translateY(-8rem);
  }
  100% {
    transform: translateY(-7rem);
  }
}

@keyframes remove-overflow {
  to {
    overflow: hidden;
  }
}

@keyframes remove-data {
  0% {
    transform: translateY(-7rem);
  }
  50% {
    transform: translateY(-10rem);
  }
  100% {
    transform: translateY(.5rem);
  }
}


/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .card__data {
    width: 250px;
    padding: 1rem;
  }
}

/* For medium devices */
@media screen and (min-width: 768px) {
  .card__container {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.5rem;
  }
}

/* For large devices */
@media screen and (min-width: 1120px) {
  .container {
    height: 100vh;
  }

  .card__container {
    grid-template-columns: repeat(4, 1fr);
  }
  .card__img {
    width: 348px;
  }
  .card__data {
    width: 316px;
    padding-inline: 2.5rem;
  }
}

/*scrollllllllll*/
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 2.5px yellow; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #ffd700; 
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #d1b000; 
}

/* rubinho */
button0:hover {
  background-color: #ffd700;
  color: black;
  opacity: 0.8;
  transition: 0.4s;
  cursor: pointer;
  border-radius: 8px;
  text-decoration:none;
}
 button0 {
  background-color: black;
  color: white;
  border: 1px solid #ffd700;
  opacity: 1;
  font-size: 20px;
  margin: 1px 1px;
  transition: 0.4s;
  cursor: pointer;
  border-radius: 10px;
  width: 180px;
  height: 40px;
  display: inline-block;
  Text-align: center;
  text-decoration:none;
  padding: 10px 15px;
  font-family: 'Bebas Neue', sans-serif;
  align-items: center;
  
 
  

}


button0.active {
  background-color: #ffd700; /* Fundo dourado */
  color: black; /* Texto preto */
}



button2 {background-color: black;
  color: white;
  border: 1px solid #ffd700;
  opacity: 1;
  padding: 16px 42px;
  text-align: center;
  font-size: 16px;
  margin: 4px 2px;
  transition: 0.4s;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  border-radius: 12px;
  background-size:auto;
}

button2:hover {background-color: black;
  color: white;
  border: 1px solid #ffd700;
  opacity: 1;
  padding: 16px 42px;
  text-align: center;
  font-size: 16px;
  margin: 4px 2px;
  transition: 0.4s;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  border-radius: 12px;
}

button8 {
  background-color: black;
  color: white;
  border: 1px solid #ffd700;
  opacity: 1;
  font-size: 16px;
  margin: 1px 1px;
  transition: 0.4s;
  cursor: pointer;
  border-radius: 10px;
  width: 180px;
  height: 40px;
  display: inline-block;
  Text-align: center;
  text-decoration:none;
  padding: 10px 20px;

}

/* unvisited link */
a:link {
  color: white;
  text-decoration:none;
}

/* visited link */
a:visited {
  color: white;
  text-decoration:none;
}

/* mouse over link */
a:hover {
  color: gold;
  text-decoration:none;
}

/* selected link */
a:active {
  color: gold;
  text-decoration:none;
}


.grow { 
transition: all .2s ease-in-out; 
}

.grow:hover { 
transform: scale(1.15); 
}
  
/*scrollllllllll*/
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px yellow; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #ffd700; 
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #d1b000; 
}

#search-bar {
  display: block;
  margin: 20px auto; /* EspaÃ§amento do tÃ­tulo e centralizado */
  width: 90%; /* Largura da barra de pesquisa */
  max-width: 500px; /* Tamanho mÃ¡ximo */
  padding: 10px; /* EspaÃ§amento interno */
  border: 1px solid #ffd700; /* Borda dourada */
  border-radius: 8px; /* Bordas arredondadas */
  background-color: black; /* Fundo preto */
  color: white; /* Texto branco */
  font-size: 16px; /* Ajuste de fonte */
}

#search-bar:focus {
  outline: none; /* Remove a borda azul padrÃ£o ao focar */
  border-color: #fff700; /* Borda amarela ao focar */
}