
.game-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px;
  max-width: 1000px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  animation: slideUp 0.8s ease-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.game-container::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

.gameName {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin: 30px 0;
  background: linear-gradient(180deg, #f74b4b, #4ecdc4, #45b7d1);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glow 1s ease-in-out infinite alternate;
}

.gameImgLink {
  width: 50%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  margin: 20px 0;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.gameImgLink:hover {
  transform: scale(1.05) rotateY(5deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.playLink {
  background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
  color: white;
  border: none;
  padding: 16px 40px;
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 30px 0;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 20px rgba(255, 107, 107, 0.4);
  overflow: hidden;
}

.playLink::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.playLink:hover::before {
  left: 100%;
}

.playLink:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 107, 107, 0.6);
  background: linear-gradient(45deg, #ff5252, #ff6b6b);
}

.playLink:active {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(255, 107, 107, 0.4);
}

.gameDescription {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-meta-details {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
  height: fit-content;
  margin-top: 20px;
}

.meta-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.meta-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #ff85855c;
}

.meta-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.meta-label {
  color: rgba(255, 255, 255, 0.9);
}

.meta-value {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.rating-stars {
  color: #ffd700;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.circle-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.circle-2 {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.circle-3 {
  width: 40px;
  height: 40px;
  top: 80%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  to {
    transform: rotate(360deg);
  }
}

@keyframes glow {
  from {
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
  }

  to {
    text-shadow: 0 0 30px rgba(78, 205, 196, 0.8);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@media (max-width: 1200px) {
  .game-container {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .game-container {
    padding: 30px 20px;
  }

  .gameName {
    font-size: 2rem;
  }

  .gameImgLink {
    width: 100%;
    max-width: 250px;
    height: 180px;
  }

  .playLink {
    padding: 14px 30px;
    font-size: 1.1rem;
  }
}
/* 
#div-gpt-ad-1750345917434-0 {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  width: 100% !important;
  height: auto !important;
  overflow: scroll;
} */

