.game-card.studio {
  --card-accent: #42d8ff;
  grid-column: 1 / -1;
  min-height: 310px;
  background:
    radial-gradient(circle at 86% 18%, rgba(66, 216, 255, .2), transparent 34%),
    radial-gradient(circle at 66% 90%, rgba(147, 97, 255, .2), transparent 35%),
    linear-gradient(145deg, #171a2c, #0b0d16);
}

.game-card.studio .card-glow {
  background: radial-gradient(circle, #42d8ff, transparent 67%);
}

.game-card.studio .game-icon {
  background: linear-gradient(145deg, rgba(66, 216, 255, .2), rgba(147, 97, 255, .22));
}

.hero-actions-xg {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-actions-xg .primary-cta {
  margin: 0;
}

.studio-cta-xg {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.24) !important;
}

.studio-free-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: #8eeaff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.game-card.hit-arena-evolved {
  --card-accent: #ffc928;
  border-color: rgba(255, 201, 40, .34);
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 201, 40, .18), transparent 34%),
    radial-gradient(circle at 10% 90%, rgba(239, 51, 78, .15), transparent 32%),
    linear-gradient(145deg, #171823, #0a0c12);
  box-shadow: inset 0 1px rgba(255,255,255,.06), 0 20px 60px rgba(0,0,0,.25);
}

.game-card.hit-arena-evolved .game-status {
  color: #171108;
  background: linear-gradient(135deg, #ffe86b, #ffac22);
  box-shadow: 0 0 20px rgba(255, 201, 40, .28);
}

.hit-evolution-xg {
  width: min(1180px, calc(100% - 40px));
  margin: 34px auto 82px;
  padding: clamp(24px, 4vw, 54px);
  border: 1px solid rgba(255, 201, 40, .18);
  border-radius: 30px;
  color: #f8f9fd;
  background:
    radial-gradient(circle at 84% 4%, rgba(255, 201, 40, .14), transparent 34%),
    radial-gradient(circle at 7% 92%, rgba(239, 51, 78, .12), transparent 28%),
    linear-gradient(145deg, rgba(20, 24, 35, .97), rgba(7, 9, 15, .98));
  box-shadow: 0 34px 90px rgba(0,0,0,.28), inset 0 1px rgba(255,255,255,.05);
}

.hit-evolution-heading {
  max-width: 790px;
}

.hit-evolution-heading > span {
  color: #ffc928;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .2em;
}

.hit-evolution-heading h2 {
  margin: 10px 0 14px;
  font-size: clamp(34px, 5.6vw, 68px);
  font-weight: 1000;
  line-height: .98;
  letter-spacing: -.055em;
}

.hit-evolution-heading h2 em {
  color: #ffc928;
  font-style: italic;
}

.hit-evolution-heading p {
  max-width: 720px;
  margin: 0;
  color: #aeb7c6;
  font-size: clamp(12px, 1.4vw, 15px);
  line-height: 1.72;
}

.hit-stage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 20px;
}

.hit-stage-grid article {
  position: relative;
  min-height: 190px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px;
  background: rgba(255,255,255,.035);
}

.hit-stage-grid article::after {
  position: absolute;
  right: -28px;
  bottom: -45px;
  width: 130px;
  height: 130px;
  content: "";
  border: 18px solid rgba(255,255,255,.025);
  border-radius: 50%;
}

.hit-stage-grid article.is-featured {
  border-color: rgba(255, 201, 40, .42);
  background: linear-gradient(145deg, rgba(255,201,40,.12), rgba(239,51,78,.07));
  box-shadow: inset 0 0 0 1px rgba(255,201,40,.08), 0 14px 34px rgba(0,0,0,.18);
}

.hit-stage-grid small,
.hit-stage-grid b,
.hit-stage-grid p,
.hit-stage-grid span { display: block; }
.hit-stage-grid small { color: #ffc928; font-size: 9px; font-weight: 950; letter-spacing: .18em; }
.hit-stage-grid b { margin-top: 8px; font-size: clamp(19px, 2.2vw, 29px); font-style: italic; font-weight: 1000; letter-spacing: -.04em; }
.hit-stage-grid p { margin: 10px 0 25px; color: #9fa9b9; font-size: 11px; line-height: 1.6; }
.hit-stage-grid span { position: absolute; left: 22px; bottom: 18px; color: #707b8c; font-size: 8px; font-weight: 950; letter-spacing: .16em; }
.hit-stage-grid article.is-featured span { color: #ffc928; }

.hit-evolution-cta {
  display: inline-flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 13px 20px;
  border-radius: 14px;
  color: #171108;
  text-decoration: none;
  background: linear-gradient(135deg, #ffe769, #ffab20);
  box-shadow: 0 14px 36px rgba(255, 173, 32, .2);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .05em;
}

.hit-evolution-cta:hover { transform: translateY(-2px); filter: brightness(1.06); }

@media (max-width: 680px) {
  .game-card.studio {
    grid-column: auto;
  }

  .hero-actions-xg {
    flex-direction: column;
  }

  .hero-actions-xg .primary-cta {
    width: 100%;
    justify-content: space-between;
  }

  .hit-evolution-xg {
    width: calc(100% - 22px);
    margin: 18px auto 45px;
    padding: 20px 14px;
    border-radius: 22px;
  }

  .hit-stage-grid { grid-template-columns: 1fr; gap: 8px; margin-top: 21px; }
  .hit-stage-grid article { min-height: 154px; padding: 17px; }
  .hit-stage-grid span { left: 17px; bottom: 14px; }
  .hit-evolution-cta { width: 100%; }
}
