/* Game server subpages */
.game-page {
  padding-top: 6.5rem;
}

.game-page__head {
  padding: 2rem 0 1rem;
  text-align: center;
}

.game-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.game-breadcrumb a {
  color: var(--cyan);
}

.game-page__h1 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}

.game-page__intro {
  max-width: 42rem;
  margin: 0 auto;
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
}

.game-page__plans {
  padding-top: 1rem;
}

.game-soon {
  max-width: 32rem;
  margin: 2rem auto 4rem;
  padding: 2.5rem 2rem;
  text-align: center;
  border-radius: 1rem;
}

.game-soon__icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 1.25rem;
}

.game-soon h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.game-soon p {
  color: #94a3b8;
  margin-bottom: 1.5rem;
  line-height: 1.55;
}

/* Nav game icons */
.nav-game-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 4px;
}

.nav-dropdown__item--logo,
.nav-mobile-link--logo {
  gap: 0.5rem;
}

.nav-mobile-link--logo .nav-game-icon {
  width: 20px;
  height: 20px;
}

/* Cloud VPS carousel cards */
.section--cloud-vps {
  --mu-rgb: 0, 204, 255;
  --mu-accent: #00ccff;
  --mu-light: #67e8f9;
  --mu-btn-a: #00ccff;
  --mu-btn-b: #7c3aed;
}

.vps-pricing .vps-plan-card {
  flex: 0 0 min(100%, 300px);
  width: min(100%, 300px);
}

@media (min-width: 768px) {
  .vps-pricing .vps-plan-card {
    flex: 0 0 280px;
    width: 280px;
  }
}

.vps-plan-card__tag {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #7c3aed, #00ccff);
}

.vps-plan-card__period {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #94a3b8;
  margin-top: 0.25rem;
}

.vps-plan-card__specs li::before {
  content: '◆';
  color: var(--mu-light, #67e8f9);
}

.vps-pricing .mu-carousel__btn {
  border: 1px solid rgba(0, 204, 255, 0.4);
  background: rgba(8, 8, 16, 0.92);
}

.vps-pricing .mu-carousel__btn:hover {
  border-color: rgba(0, 204, 255, 0.75);
  background: rgba(0, 204, 255, 0.18);
}

.vps-plan-card.is-featured {
  border-color: rgba(124, 58, 237, 0.55);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.2);
}

/* ——— GTA SA / Open.MP (toque San Andreas, base NexarHost) ——— */
.game-page--gtasa .game-page__h1 {
  background: linear-gradient(100deg, #fdba74 0%, #fb923c 40%, #f97316 70%, #eab308 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.game-page--gtasa .game-page__intro {
  color: #cbd5e1;
}

.game-page--gtasa .section-head .badge {
  background: rgba(249, 115, 22, 0.16);
  border: 1px solid rgba(251, 146, 60, 0.35);
  color: #fdba74;
}

.gtasa-pricing .gtasa-plan-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background:
    linear-gradient(165deg, rgba(18, 16, 14, 0.96) 0%, rgba(10, 12, 18, 0.98) 55%, rgba(8, 10, 14, 1) 100%);
  border: 1px solid rgba(var(--gtasa-faction-rgb, 249, 115, 22), 0.32);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.gtasa-pricing .gtasa-plan-card:hover {
  border-color: rgba(var(--gtasa-faction-rgb, 249, 115, 22), 0.55);
  transform: translateY(-2px);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(var(--gtasa-faction-rgb, 249, 115, 22), 0.12);
}

.gtasa-plan-card__strip {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(var(--gtasa-faction-rgb, 249, 115, 22), 0.95) 35%,
    rgba(251, 146, 60, 0.7) 70%,
    transparent 100%
  );
}

.gtasa-plan-card__badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.gtasa-plan-card__mark,
.gtasa-plan-card__logo {
  width: 72px;
  height: 72px;
  border-radius: 0.85rem;
  flex-shrink: 0;
  object-fit: cover;
}

.gtasa-plan-card__logo {
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.4);
}

.gtasa-plan-card__mark {
  display: grid;
  place-items: center;
  font-family: var(--font-display), Orbitron, sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: #fff7ed;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.18), transparent 55%),
    linear-gradient(145deg, rgba(var(--gtasa-faction-rgb, 249, 115, 22), 0.55), rgba(15, 17, 22, 0.95));
  border: 1px solid rgba(var(--gtasa-faction-rgb, 249, 115, 22), 0.45);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.gtasa-plan-card__logo {
  border: 1px solid rgba(var(--gtasa-faction-rgb, 249, 115, 22), 0.4);
  background: rgba(0, 0, 0, 0.35);
}

.gtasa-plan-card__faction {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgb(var(--gtasa-faction-rgb, 249, 115, 22));
}

.gtasa-pricing .gtasa-plan-card .mu-plan-card__name {
  letter-spacing: 0.02em;
}

.gtasa-pricing .gtasa-plan-card .vps-plan-card__specs li::before {
  content: '▸';
  color: rgb(var(--gtasa-faction-rgb, 249, 115, 22));
}

.gtasa-plan-card__tag {
  background: linear-gradient(135deg, #ea580c, #c026d3) !important;
}

.gtasa-pricing .mu-carousel__btn {
  border: 1px solid rgba(249, 115, 22, 0.4);
  background: rgba(12, 10, 8, 0.92);
}

.gtasa-pricing .mu-carousel__btn:hover {
  border-color: rgba(251, 146, 60, 0.75);
  background: rgba(249, 115, 22, 0.16);
}

.gtasa-plan-card--aztecas {
  --gtasa-faction-rgb: 45, 212, 191;
}

.gtasa-plan-card--vagos {
  --gtasa-faction-rgb: 250, 204, 21;
}

.gtasa-plan-card--ballas {
  --gtasa-faction-rgb: 192, 132, 252;
}

.gtasa-plan-card--grove {
  --gtasa-faction-rgb: 74, 222, 128;
}

.gtasa-plan-card--triads {
  --gtasa-faction-rgb: 248, 113, 113;
}

.gtasa-plan-card__logo {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 0.85rem;
  border: 1px solid rgba(var(--gtasa-faction-rgb, 249, 115, 22), 0.4);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.4);
  background: rgba(0, 0, 0, 0.35);
}

.gtasa-pricing .gtasa-plan-card.is-featured {
  border-color: rgba(var(--gtasa-faction-rgb, 249, 115, 22), 0.55);
  box-shadow: 0 20px 50px rgba(var(--gtasa-faction-rgb, 249, 115, 22), 0.18);
}
