.btns {
    width: 95%;margin: 32px auto;max-width: 1000px;display: flex;flex-direction: column;justify-content: center;align-items: center;gap: 0.3rem;
}
.btn_instagram {
  width: 100%;max-width: 600px;cursor: pointer;pointer-events: auto;
}
.btn-atualizacao-container {
  position: relative;display: inline-block;
}
.btn-atualizacao {
  width: 100%;max-width: 600px;
}
.texto-atualizacao {
  position: absolute;top: 40%;left: 50%;transform: translate(-50%, -50%);color: white;font-size: 14px;font-weight: bold;text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);white-space: nowrap;
}
.filter {
  width: 95%;max-width: 600px;margin: 0 auto;display: flex;flex-direction: column;justify-content: center;align-items: center;gap: 1rem;
}
.btn-filter {
  display: flex;justify-content: space-around;align-items: center;gap: 0.5rem;width: 100%;margin: 0 auto;
}
.btn-filter > div {
  background-color: #facc15;color: #713f12;text-transform: uppercase;padding: 8px 24px;border-radius: 8px;cursor: pointer;
}
.input-filter {
  width: 100%;padding: 10px 10px 10px 35px;background-color: #facc15;color: #713f12;font-size: 16px;border: 2px solid #713f12;border-radius: 5px;outline: none;position: relative;margin: 0 auto;
}
.input-wrapper {
  position: relative;display: inline-block;width: 100%;
}
.input-wrapper::before {
  content: "🔍︎";position: absolute;left: 10px;top: 50%;transform: translateY(-50%);color: #713f12;font-size: 16px;z-index: 40;
}
.games-list {
  width: 85%;margin: 0 auto;display: flex;justify-content: start;flex-wrap: wrap;gap: 0.7rem;margin-top: 24px;
}
.game-card {
  width: 190px;position: relative;border-radius: 14px !important;box-shadow: black 0px 8px 15px;
}
@media screen and (max-width: 480px) {
  .games-list {
    width: 100%;justify-content: center;
  }
  .game-card {
    width: 178px;
  }
}
.game-header {
  position: relative;width: 100%;max-width: 190px;display: flex;overflow: hidden;align-items: center;cursor: pointer;border-radius: 14px 14px 0 0 !important;
}
.game-header > img {
  height: 140px;width: 100%;object-fit: cover;object-position: center;
}
.game-header > p {
  position: absolute;width: 100%;text-align: center;padding: 4px;background-color: rgba(0, 0, 0, 0.3);bottom: 0;color: #fafafa;font-weight: 500;z-index: 50;
}
.game-header > span {
  position: absolute;width: 40%;text-align: center;padding: 4px;background-color: #22c55e;top: 4px;right: 4px;color: #fafafa;font-size: 15px;font-weight: 500;z-index: 50;border-radius: 8px;animation: pulse 1.5s infinite ease;
}
.game-contain {
  position: relative;width: 100%;height: 300px;overflow: hidden;border-radius: 0 0 14px 14px;display: flex;flex-direction: column;align-items: center;justify-content: space-between;padding-bottom: 8px;
}
.background-image {
  position: absolute;top: 0;left: 0;right: 0;bottom: 0;width: 100%;height: 100%;object-fit: cover;filter: blur(8px);z-index: 0;
}
.game-contain::after {
  content: "";position: absolute;top: 0;left: 0;right: 0;bottom: 0;background-color: rgba(0, 0, 0, 0.3);z-index: 1;
}
.game-contain > div {
  position: relative;z-index: 2;
}
.game-data {
  padding: 10px;padding-top: 12px;display: flex;justify-content: space-around;align-items: center;
}
.game-data > img {
  width: 54px;border-radius: 12px;
}
.game-data > p {
  color: #fafafa;font-weight: 500;margin-left: 18px;
}
.game-metrics {
  color: #fafafa;width: 90%;text-align: center;position: relative;top: -10px;
}
.game-metrics > span {
  display: block;width: 100%;height: 10px;border-radius: 8px;margin-top: 3px;
}
.checkout-button {
  height: 80px;display: flex;justify-content: center;align-items: center;width: 90%;
}
.checkout-button > button {
  cursor: pointer;background-color: #22c55e;color: #fafafa;width: 100%;height: 38px;border-radius: 14px;text-transform: uppercase;font-weight: 600;font-size: 16px;
}
.game-contain > button {
  background-color: #22c55e;color: #fafafa;z-index: 5;position: relative;text-transform: uppercase;text-align: center;width: 90%;height: 20px;border-radius: 8px;font-weight: 500;animation: pulse 1.5s infinite ease;cursor: pointer;
}
.footer-margin {
  width: 100%;height: 20px;
}
@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
.footer-card {
  background-color: rgba(0, 0, 0, 0.4);color: #fafafa;text-align: center;width: 95%;font-size: 12px;display: flex;flex-direction: column;gap: 0.4rem;padding: 8px;border-radius: 8px;
}
@media screen and (max-width: 500px) {
  .btn-filter > div {
    font-size: 14px;
  }
}
@media screen and (max-width: 348px) {
  .btn-filter > div {
    font-size: 12px;
  }
}
