/* GAMES SECTION */

.gamesSection {
  max-width: 1100px;
  margin: 0 auto 3.5rem auto;
  padding-top: 1.25rem;
}

.gamesHeader {
  margin-bottom: 1.5rem;
}

.gamesSubtitle {
  font-size: 0.96rem;
  line-height: 1.7;
  color: rgba(235, 235, 255, 0.9);
  max-width: 720px;
}

.gamesStatus {
  font-size: 0.95rem;
  color: rgba(235, 235, 255, 0.85);
  margin-bottom: 1.5rem;
}

.gamesGrid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.gameCard {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 0.9rem;
  background: linear-gradient(145deg, rgba(11, 12, 15, 0.96), rgba(17, 19, 24, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out,
    background 0.18s ease-out;
}

.gameCard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(245, 196, 67, 0.16), transparent 55%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease-out;
}

.gameCard:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.75);
  border-color: rgba(245, 196, 67, 0.65);
  background: linear-gradient(145deg, rgba(17, 19, 24, 0.98), rgba(21, 24, 33, 0.99));
}

.gameCard:hover::before {
  opacity: 1;
}

.gameThumb {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 55%);
  max-height: 300px;
  aspect-ratio: 16 / 9;
}

.gameThumb img {
  width: 100%;
  height: 100%;
  max-height: 300px;
  display: block;
  object-fit: cover;
}

.gameBody {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.25rem 0.1rem 0;
  flex: 1;
}

.gameTitleRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.gameName {
  font-size: 1rem;
  margin: 0;
  color: #ffe4a1;
}

.gameDescription {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(243, 244, 247, 0.86);
  margin: 0;
}

.gameLongDescription {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(243, 244, 247, 0.74);
  margin: 0.25rem 0 0;
}

.gameMeta {
  list-style: none;
  padding: 0;
  margin: 0.35rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  font-size: 0.78rem;
  color: rgba(243, 244, 247, 0.72);
}

.gameMetaItem .label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  color: rgba(249, 227, 176, 0.9);
  margin-right: 0.25rem;
}
   
.gameKeywords {
  margin: 0.4rem 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(243, 244, 247, 0.74);
}
 
.gameKeywords .label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  color: rgba(249, 227, 176, 0.9);
  margin-right: 0.25rem;
  display: inline-block;
}

.gameHashtags {
  margin: 0.3rem 0 0;
  font-size: 0.78rem;
  color: rgba(193, 198, 255, 0.95);
  word-break: break-word;
}

.gameAdHooks {
  list-style: none;
  padding: 0;
  margin: 0.45rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 0.45rem;
  font-size: 0.8rem;
  color: rgba(225, 225, 245, 0.9);
}

.gameAdHook {
  margin: 0.1rem 0;
  font-style: italic;
}

.gameLinks {
  margin-top: 0.35rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.gameLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 196, 67, 0.7);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  color: #f9e3b0;
  background: radial-gradient(circle at top left, rgba(245, 196, 67, 0.12), transparent 55%);
  transition: background 0.16s ease-out, color 0.16s ease-out, box-shadow 0.16s ease-out,
    transform 0.16s ease-out;
}

.gameLink:hover {
  background: radial-gradient(circle at top left, rgba(245, 196, 67, 0.2), transparent 55%);
  color: #fff7e6;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transform: translateY(-1px);
}

/* TMP STUFF */
.tmp-santa-1 {
  position: absolute;
  bottom: -10px;
  right: 0;
  z-index: 10;
  pointer-events: none;
}
.tmp-santa-1 img {
  width: 200px;
  height: auto;
  pointer-events: none;
}
.tmp-santa-1 .btn-claim {
  position: absolute;
  display: block;
  z-index: 1;
  top: 100px;
  left: 90px;
  width: 110px;
  height: 120px;
  /* background-color: red; */
  background-color: transparent;
  cursor: pointer;
  pointer-events: auto;
}

/* RESPONSIVE */

@media (max-width: 1000px) {
  .tmp-santa-1 img {
    width: 100px;
  }
  .tmp-santa-1 .btn-claim {
    top: 10px;
    left: 10px;
  }
}
@media (min-width: 768px) { 
  .heroInner {
    padding: 3.25rem 3rem 3rem;
  }

  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}