:where([class^="ri-"])::before {
  content: "\f3c2";
}
body {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
h1,
h2,
h3,
.font-heading {
  font-family: "Satoshi", sans-serif;
}
p,
span,
a,
label,
input,
button {
  font-family: "Manrope", sans-serif;
}
.badge {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 4px 8px;
  border-radius: 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 10;
}
@media (min-width: 768px) {
  .badge {
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
  }
}
.badge-hot {
  background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
  color: white;
  box-shadow: 0 2px 4px rgba(255, 65, 108, 0.3);
}
.badge-new {
  background: linear-gradient(135deg, #4776e6 0%, #8e54e9 100%);
  color: white;
  box-shadow: 0 2px 4px rgba(71, 118, 230, 0.3);
}
.badge-special {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  color: white;
  box-shadow: 0 2px 4px rgba(17, 153, 142, 0.3);
}
.btn-primary {
  background: linear-gradient(135deg, #2b95c3, #1b75a3);
  box-shadow: 0 4px 12px rgba(43, 149, 195, 0.3);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(241, 196, 15, 0.2),
    rgba(230, 126, 34, 0.2)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-primary:hover::before {
  opacity: 1;
}
.btn-secondary {
  background: transparent;
  border: 2px solid #e67e22;
  color: #e67e22;
  position: relative;
  overflow: hidden;
}
.btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(230, 126, 34, 0.1),
    rgba(142, 68, 173, 0.1)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-secondary:hover::before {
  opacity: 1;
}
.btn-secondary:hover {
  background: rgba(37, 99, 235, 0.05);
}
.hero-stat {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}
.hero-stat:hover {
  transform: translateY(-5px);
}
.marketplace-item {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.8)
  );
  backdrop-filter: blur(12px);
  border: 1px solid rgba(43, 149, 195, 0.1);
}
.custom-shadow {
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
}
.game-card:hover {
  transform: translateY(-4px);
  transition: all 0.3s ease;
}
.marketplace-item:hover {
  transform: translateY(-4px);
  transition: all 0.3s ease;
}
.custom-checkbox {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  position: relative;
}
.custom-checkbox:checked {
  background-color: #2563eb;
  border-color: #2563eb;
}
.custom-checkbox:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.hero-section {
  background-image: url("../images/main-hero-banner-cats.webp");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.85) 50%,
    rgba(255, 255, 255, 0.7) 100%
  );
}
@media (min-width: 768px) {
  .hero-section::before {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.95) 40%,
      rgba(255, 255, 255, 0) 100%
    );
  }
}
/* Mobile optimizations */
@media (max-width: 767px) {
  .mobile-nav {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .mobile-nav.open {
    transform: translateX(0);
  }
  h1 {
    font-size: 28px !important;
    line-height: 1.2;
  }
  h2 {
    font-size: 24px !important;
    line-height: 1.3;
  }
  h3 {
    font-size: 20px !important;
    line-height: 1.4;
  }
  .text-xl {
    font-size: 16px !important;
  }
  .text-lg {
    font-size: 16px !important;
  }
}
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.animate-pulse-slow {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}