.bs-icon {
  --bs-icon-size: .75rem;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: var(--bs-icon-size);
  width: calc(var(--bs-icon-size) * 2);
  height: calc(var(--bs-icon-size) * 2);
  color: var(--bs-primary);
}

.bs-icon-xs {
  --bs-icon-size: 1rem;
  width: calc(var(--bs-icon-size) * 1.5);
  height: calc(var(--bs-icon-size) * 1.5);
}

.bs-icon-sm {
  --bs-icon-size: 1rem;
}

.bs-icon-md {
  --bs-icon-size: 1.5rem;
}

.bs-icon-lg {
  --bs-icon-size: 2rem;
}

.bs-icon-xl {
  --bs-icon-size: 2.5rem;
}

.bs-icon.bs-icon-primary {
  color: var(--bs-white);
  background: var(--bs-primary);
}

.bs-icon.bs-icon-primary-light {
  color: var(--bs-primary);
  background: rgba(var(--bs-primary-rgb), .2);
}

.bs-icon.bs-icon-semi-white {
  color: var(--bs-primary);
  background: rgba(255, 255, 255, .5);
}

.bs-icon.bs-icon-rounded {
  border-radius: .5rem;
}

.bs-icon.bs-icon-circle {
  border-radius: 50%;
}

@keyframes ckw {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(180deg);
  }
}

.navbar-toggler:focus {
  animation-name: ckw;
  animation-duration: 0.5s;
}

.gradient-animated-text {
  background: linear-gradient(90deg, #6687F7, #5174D0, #92bbff, #5174D0, #6687F7);
  background-size: 300% 300%;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 15px;
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

body {
  background: #0D1117;
  margin: 0;
}

/* === Cards === */

.card-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.game-card {
  position: relative;
  width: 400px;
  height: 480px;
  background: #0D1117;
  border: 1px solid #21262D;
  border-radius: 12px;
  overflow: hidden;
  padding: 24px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 992px) {
  .card-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 992px) {
  .game-card {
    width: 90vw;
    max-width: 400px;
    height: auto;
  }
}

.card-bg {
  background-size: cover;
  background-position: center;
  filter: blur(12px);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  transition: filter 0.3s ease;
}

.game-card:hover .card-bg {
  filter: blur(4px);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 17, 23, 0.9);
  z-index: 1;
  transition: background 0.3s ease;
}

.game-card:hover .overlay {
  background: rgba(13, 17, 23, 0.3);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.card-logo {
  width: 48px;
  height: auto;
}

.status {
  color: #8B949E;
  font-size: 16px;
  margin: 0;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.game-card:hover .status {
  color: white;
}

.card-footer {
  position: relative;
  z-index: 2;
  margin-top: 16px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 16px;
  padding: 3px 10px;
  border-radius: 18px;
  background: rgba(13, 17, 23, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.purchase-text {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  text-align: center;
  color: #ffffff;
  font-size: 18px;
  z-index: 1;
  opacity: 0;
  transform: translateY(0);
  transition: all 0.3s ease;
  pointer-events: none;
}

.game-card:hover .purchase-text {
  opacity: 1;
  transform: translateY(-42px);
}

.game-card:active .tag {
  border: 1px solid #21262D;
}

.game-card:active .purchase-text {
  color: #6687F7;
}

.container-fluid {
  padding-right: 0px;
  padding-left: 0px;
  background: linear-gradient(rgba(13, 17, 23, 0) 0%, #0D1117 100%), url("../../assets/img/bg_3.png") top / cover no-repeat;
  padding-top: 1px;
}

.nav-setup {
  border-radius: 6px;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-right: 10px;
  padding-left: 10px;
  margin-left: 2px;
  margin-right: 2px;
  margin-bottom: 2px;
  margin-top: 2px;
  text-align: left;
}

.nav-itmst {
  margin-left: 2px;
  margin-right: 2px;
  margin-bottom: 2px;
  margin-top: 2px;
}

.main-textstyle {
  font-size: 5.2rem;
  color: rgb(255, 255, 255);
  background: linear-gradient(40deg, #FFFFFF, #ABB1C5);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Neue Power', sans-serif;
}

.animated-style {
  padding-bottom: 6px;
  padding-top: 6px;
  margin-bottom: 8px;
}

.nav-elementsstyle {
  border-radius: 20px !important;
  margin-left: 2px;
  margin-right: 2px;
  margin-top: 4px;
  margin-bottom: 4px !important;
  padding-left: 24px;
  padding-right: 24px;
}

.discord-elementstyle {
  background: url("../../assets/img/154.png") center / cover no-repeat, #6687F7;
  border-radius: 24px;
  height: 140px;
  margin-left: 12px;
  margin-right: 12px;
}

.btn-discord {
  border-radius: 20px;
  padding: 8px;
  margin: 12px;
}

.btn-mainstyle {
  border-radius: 32px;
  font-size: 18px;
}

.btn-authorize {
  margin-right: 14px;
  border-radius: 14px;
}

.btn-mainstyle:active {
  box-shadow: inset 0px 0px 11px rgba(255, 255, 255, 0.4);
}

.btn-authorize:active {
  box-shadow: inset 0px 0px 11px rgba(255, 255, 255, 0.4);
}

.info-card {
  position: relative;
  width: 318px;
  height: 180px;
  border: 1px solid #21262D;
  background: #0D1117;
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: background 0.3s ease;
}

.icon {
  font-size: 24px;
  color: white;
}

.text-content {
  margin-top: auto;
}

.title {
  font-size: 24px;
  color: white;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.desc {
  font-size: 16px;
  color: #8B949E;
  margin: 0;
}

.info-card:hover {
  background: #21262d;
}

.std-work {
  font-size: 34px;
}

@media (max-width: 576px) {
  .info-card {
    width: 100%;
    max-width: 100%;
  }
}

.legal-element-h {
  color: #fff;
  text-align: justify;
  font-size: 24px;
}

.legal-element-p {
  text-align: justify;
  color: rgb(145, 150, 156);
  font-size: 18px;
}

.btn-profile {
  margin-right: 14px;
  border-radius: 14px;
}

.container-market {
  background: linear-gradient(rgba(13, 17, 23, 50%) 0%, #0D1117 100%), url("../../assets/img/darkness.gif") top / cover no-repeat;
}

.items-div {
  border: 1px solid #21262D;
  background: rgba(13, 17, 23, 0.5);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}