/*      */
body {
  font-family: "Poppins", sans-serif;
  background: #0f0f1a;
  color: #fff;
  line-height: 1.6;
  padding-top: 80px; /*            */
  position: relative;
  overflow-x: hidden;
}

/*        */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(0, 255, 135, 0.05) 0%,
      transparent 20%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(96, 239, 255, 0.05) 0%,
      transparent 20%
    ),
    linear-gradient(45deg, rgba(15, 15, 26, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%);
  z-index: -1;
}

/*        */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(0, 255, 135, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(96, 239, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: -1;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(30px);
  }
}

/*            */
.hero-section {
  background: linear-gradient(
    to right,
    rgba(97, 67, 230, 0.8),
    rgba(81, 99, 210, 0.8),
    rgba(64, 164, 184, 0.8)
  );
  padding: 0;
  /* margin: 20px 40px 50px; */
  margin: 20px auto;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
  cursor: pointer;
  --mouse-x: 0.5;
  --mouse-y: 0.5;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.03)"/></svg>');
  opacity: 0.3;
}

/*          */
.hero-section::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(
    circle at calc(var(--mouse-x) * 100%) calc(var(--mouse-y) * 100%),
    rgba(255, 255, 255, 0.4),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.hero-section:hover::after {
  opacity: 1;
}

.hero-section:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 180px;
}

.hero-content h1 {
  display: none;
}

.hero-content p {
  display: none;
}

/*        */
.hero-content::before {
  content: "Advertisement";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.hero-section:hover .hero-content::before {
  opacity: 0.8;
}

/*       */
@media (max-width: 768px) {
  .hero-section {
    margin: 15px 20px 40px;
  }

  .hero-content {
    padding: 80px 15px;
    height: 160px;
  }

  .hero-content::before {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    margin: 10px 15px 30px;
  }

  .hero-content {
    padding: 60px 10px;
    height: 140px;
  }

  .hero-content::before {
    font-size: 1.2rem;
  }
}

/*        */
.qvnj {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  padding-top: 35px;
  position: relative;
}

/*        */
.qvnj::before {
  /* content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(0, 255, 135, 0.2);
  border-radius: 50%; */
  /* animation: pulse 3s ease-in-out infinite; */
}

.qvnj::after {
  /* content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(96, 239, 255, 0.2);
  border-radius: 50%; */
  /* animation: pulse 3s ease-in-out infinite 1.5s; */
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.2;
  }
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}

/*      */
.section-title {
  margin: 40px 0;
  text-align: center;
  position: relative;
}

.section-title h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
  display: inline-block;
  position: relative;
  text-shadow: 0 0 10px rgba(0, 255, 135, 0.3);
}

.section-title h2::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #00ff87, #60efff);
  box-shadow: 0 0 10px rgba(0, 255, 135, 0.5);
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #00ff87, #60efff);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.section-title:hover h2::after {
  transform: scaleX(1);
  transform-origin: left;
}

/*      */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  padding: 20px 0;
  perspective: 1000px;
  position: relative;
}

/*       */
.game-grid::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 255, 135, 0.3),
    transparent
  );
}

/*      */
.game-card {
  background: rgba(26, 26, 46, 0.7);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s ease;
  text-decoration: none;
  color: #fff;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.game-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(0, 255, 135, 0.1),
    rgba(96, 239, 255, 0.1)
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover {
  transform: rotateY(5deg) translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 255, 135, 0.2);
  border-color: rgba(0, 255, 135, 0.3);
}

.game-card:hover::before {
  opacity: 1;
}

.game-image {
  position: relative;
  width: 100%;
  padding-top: 100%; /*   1:1     */
  overflow: hidden;
  background: #1a1a2e;
}

.game-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(0, 255, 135, 0.1),
    rgba(96, 239, 255, 0.1)
  );
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover .game-image::after {
  opacity: 1;
}

.game-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.game-card:hover .game-image img {
  transform: scale(1.1) rotate(-2deg);
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.play-now {
  background: linear-gradient(45deg, #00ff87, #60efff);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  color: #000;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 255, 135, 0.3);
  position: relative;
  overflow: hidden;
}

.play-now::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover .play-now {
  transform: translateY(0);
  box-shadow: 0 0 15px rgba(0, 255, 135, 0.5);
}

.game-card:hover .play-now::before {
  opacity: 1;
  animation: ripple 1.5s linear infinite;
}

@keyframes ripple {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.game-info {
  padding: 20px;

  background: rgba(26, 26, 46, 0.9);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
}

.featured-games .game-info {
  height: 100%;
}

.game-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 255, 135, 0.3),
    transparent
  );
}

.game-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  display: inline-block;
  margin-right: 10px;
  background: linear-gradient(45deg, #00ff87, #60efff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 5px rgba(0, 255, 135, 0.3);
}

.game-meta {
  display: flex;
  align-items: center;
}

.game-category {
  background: rgba(255, 255, 255, 0.1);
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  border: 1px solid rgba(0, 255, 135, 0.2);
  box-shadow: 0 0 5px rgba(0, 255, 135, 0.1);
}

/*          */
.game-rating {
  display: none;
}

/*        -      */
@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-10px) translateX(5px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}

.game-card::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: rgba(0, 255, 135, 0.5);
  border-radius: 50%;
  top: 10px;
  right: 10px;
  box-shadow: 0 0 10px rgba(0, 255, 135, 0.5);
  animation: float 3s ease-in-out infinite;
  z-index: 4;
}

/*       */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .game-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }

  .game-info h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .game-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .game-info {
    padding: 15px;
  }

  .game-info h3 {
    font-size: 1rem;
  }

  .game-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}

/* Popular Games       */
.popular-games .game-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  perspective: none;
  position: relative;
}

.popular-games .game-grid::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, #00ff87, #60efff, #f100ff, #00ff87);
  background-size: 300% 100%;
  animation: gradientFlow 5s ease-in-out infinite;
  z-index: 5;
}

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

.popular-games .game-card {
  /* flex: 1 1 calc(25% - 2px); */
  flex-basis: calc(25% - 2px);
  flex-shrink: 0;
  margin: 1px;
  border-radius: 0;
  overflow: visible;
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  color: #fff;
  z-index: 1;
  aspect-ratio: 1/1;
}

.popular-games .game-card::before {
  content: "";
  position: absolute;
  inset: -5px;
  background: transparent;
  border: 2px solid transparent;
  z-index: -1;
  transform: translateZ(-10px);
  transition: all 0.5s ease;
  border-radius: 0;
  display: block;
}

.popular-games .game-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at var(--x, 50%) var(--y, 50%),
    rgba(0, 255, 135, 0.4) 0%,
    transparent 80%
  );
  opacity: 0;
  z-index: 4;
  mix-blend-mode: overlay;
  pointer-events: none;
  transition: opacity 0.5s ease;
  display: block;
}

.popular-games .game-card:hover::after {
  opacity: 1;
}

.popular-games .game-card:hover::before {
  inset: -8px;
  border-color: rgba(0, 255, 135, 0.5);
  box-shadow: 0 0 20px rgba(0, 255, 135, 0.4),
    inset 0 0 20px rgba(0, 255, 135, 0.2);
}

.popular-games .game-card:nth-child(4n + 1):hover {
  transform: translateZ(20px) rotateX(5deg) rotateY(-5deg);
  z-index: 10;
}

.popular-games .game-card:nth-child(4n + 2):hover {
  transform: translateZ(20px) rotateX(-5deg) rotateY(5deg);
  z-index: 10;
}

.popular-games .game-card:nth-child(4n + 3):hover {
  transform: translateZ(20px) rotateX(5deg) rotateY(5deg);
  z-index: 10;
}

.popular-games .game-card:nth-child(4n + 4):hover {
  transform: translateZ(20px) rotateX(-5deg) rotateY(-5deg);
  z-index: 10;
}

.popular-games .game-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #1a1a2e;
  border-radius: 0;
  transition: all 0.5s ease;
  transform: translateZ(0);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.popular-games .game-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    125deg,
    rgba(255, 0, 255, 0.3),
    rgba(0, 255, 255, 0.3)
  );
  mix-blend-mode: overlay;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.popular-games .game-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
  opacity: 1;
}

.popular-games .game-card:hover .game-image::before {
  opacity: 1;
  animation: colorShift 3s linear infinite;
}

@keyframes colorShift {
  0% {
    background: linear-gradient(
      125deg,
      rgba(255, 0, 255, 0.3),
      rgba(0, 255, 255, 0.3)
    );
  }
  33% {
    background: linear-gradient(
      125deg,
      rgba(0, 255, 255, 0.3),
      rgba(255, 255, 0, 0.3)
    );
  }
  66% {
    background: linear-gradient(
      125deg,
      rgba(255, 255, 0, 0.3),
      rgba(255, 0, 255, 0.3)
    );
  }
  100% {
    background: linear-gradient(
      125deg,
      rgba(255, 0, 255, 0.3),
      rgba(0, 255, 255, 0.3)
    );
  }
}

.popular-games .game-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  will-change: transform;
}

.popular-games .game-card:hover .game-image img {
  transform: scale(1.1);
}

.popular-games .play-now {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #00ff87;
  padding: 5px 15px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.8rem;
  opacity: 0;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 255, 135, 0.3);
  z-index: 5;
  letter-spacing: 1px;
  transform: translateY(-10px);
  overflow: hidden;
}

.popular-games .play-now::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #00ff87, #60efff);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.popular-games .play-now::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 100%;
  top: 0;
  left: -30px;
  background: rgba(255, 255, 255, 0.5);
  transform: skewX(-30deg);
  transition: all 0.5s ease;
  animation: shimmer 3s infinite;
  z-index: 2;
  opacity: 0;
}

@keyframes shimmer {
  0% {
    left: -30px;
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    left: 130%;
    opacity: 0;
  }
}

.popular-games .game-card:hover .play-now {
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.popular-games .game-card:hover .play-now::after {
  opacity: 1;
}

.popular-games .game-card:hover .play-now:hover {
  color: #000;
  border-color: transparent;
}

.popular-games .game-card:hover .play-now:hover::before {
  opacity: 1;
}

.popular-games .game-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 15px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  backdrop-filter: blur(5px);
  border: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 3;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.popular-games .game-card:hover .game-info {
  transform: translateY(-5px);
  padding-bottom: 25px;
}

.popular-games .game-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  position: relative;
  padding-left: 5px;
  transition: all 0.3s ease;
}

.popular-games .game-card:hover .game-info h3 {
  transform: scale(1.05);
  text-shadow: 0 0 10px rgba(0, 255, 135, 0.5);
}

.popular-games .game-category {
  position: relative;
  background: rgba(0, 255, 135, 0.2);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  border: 1px solid rgba(0, 255, 135, 0.2);
  color: #fff;
  overflow: hidden;
  transition: all 0.5s ease;
  transform: translateZ(0);
}

.popular-games .game-card:hover .game-category {
  background: rgba(0, 255, 135, 0.3);
  box-shadow: 0 0 10px rgba(0, 255, 135, 0.3);
  border-color: rgba(0, 255, 135, 0.5);
  transform: translateZ(5px);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
}

/*       */
@media (max-width: 992px) {
  .popular-games .game-card {
    /* flex: 1 1 calc(33.333% - 2px); */
    flex-basis: calc(50% - 2px);
    flex-shrink: 0;
    aspect-ratio: 1/1;
  }
}

@media (max-width: 768px) {
  .popular-games .game-card {
    flex-basis: calc(50% - 2px);
    aspect-ratio: 1/1;
  }

  .popular-games .game-info h3 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .popular-games .game-card {
    flex-shrink: 0;
    margin: 1px;
    aspect-ratio: 1/1;
  }
}

/* Popular Games     */
.popular-games-heading {
  margin: 60px 0 30px 0;
  text-align: left;
  position: relative;
  padding-left: 20px;
  border-left: 4px solid transparent;
  overflow: hidden;
}

.popular-games-heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #00ff87, #60efff, #f100ff);
  animation: borderPulse 3s ease-in-out infinite;
}

@keyframes borderPulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}

.popular-games-heading::after {
  content: "⚡";
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 2rem;
  opacity: 0.3;
  animation: pulse 2s ease-in-out infinite;
}

.popular-games-heading h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  margin-bottom: 5px;
  position: relative;
  background: linear-gradient(90deg, #fff, #00ff87, #fff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShine 3s linear infinite;
}

@keyframes textShine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.popular-games-heading p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  max-width: 600px;
}

.popular-games-heading p::before {
  content: "🎮 ";
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .popular-games-heading h2 {
    font-size: 1.8rem;
  }

  .popular-games-heading p {
    font-size: 0.9rem;
  }
}

/*        */
.popular-games .game-card:nth-child(3n + 1) .game-category {
  background: rgba(0, 255, 135, 0.2);
}

.popular-games .game-card:nth-child(3n + 2) .game-category {
  background: rgba(96, 239, 255, 0.2);
}

.popular-games .game-card:nth-child(3n + 3) .game-category {
  background: rgba(255, 0, 170, 0.2);
}

.popular-games .game-meta {
  display: flex;
  align-items: center;
}

/*            */
.popular-games {
  --x: 50%;
  --y: 50%;
}

/*       */
.popular-games {
  cursor: none;
}

.popular-games::after {
  content: "";
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 255, 135, 0.5);
  transform: translate(-50%, -50%);
  left: var(--x);
  top: var(--y);
  pointer-events: none;
  z-index: 9999;
  display: none;
  mix-blend-mode: difference;
  transition: width 0.2s, height 0.2s;
}

.popular-games .game-card:hover + .popular-games::after {
  width: 40px;
  height: 40px;
}
