/* ===========================================================================
 * gamador-promosyonlar.css — Arwen overrides for the Promosyonlar page.
 * ---------------------------------------------------------------------------
 * Base promo styles live in gamador-home.css (kicker + CTA are already
 * amethyst). This file repaints leftover gladiator accents to Arwen AND
 * replaces the old dealer.png + rotated/overlapping deal cards with a clean,
 * centered 3-card bonus grid. Scoped to body.gm-arwen-page.
 * Loaded AFTER gamador-arwen.css.
 * ======================================================================== */

/* CTA glow — gold → amethyst */
.gm-arwen-page .promotions-cta { box-shadow: 0 12px 30px rgba(140, 69, 255, 0.4); }
.gm-arwen-page .promotions-cta:hover { box-shadow: 0 14px 36px rgba(140, 69, 255, 0.55); }

/* ── Bonus plan cards — clean Arwen grid (no dealer image, no rotation) ── */
.gm-arwen-page .arwen-deal-zone {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: min(1100px, 96%);
  margin: 0 auto 36px;
  min-height: 0;
}
.gm-arwen-page .arwen-deal-zone .deal-plan-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: auto;
  min-height: 244px;
  transform: none;
  border: 1px solid rgba(180, 120, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.01) 24%),
    linear-gradient(145deg, #1a0833, #0a0118);
  box-shadow:
    0 18px 30px rgba(2, 1, 3, 0.5),
    inset 0 0 0 1px rgba(180, 120, 255, 0.12);
}
/* kill the old rotate/translate stacking */
.gm-arwen-page .arwen-deal-zone .deal-plan-1,
.gm-arwen-page .arwen-deal-zone .deal-plan-2,
.gm-arwen-page .arwen-deal-zone .deal-plan-3 { transform: none; z-index: 1; }
.gm-arwen-page .arwen-deal-zone .deal-plan-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 40px rgba(2, 1, 3, 0.6),
    0 0 26px rgba(140, 69, 255, 0.35);
}
.gm-arwen-page .arwen-deal-zone .deal-plan-card h3 { color: #f8f0ff; }
.gm-arwen-page .arwen-deal-zone .deal-plan-card strong { color: #cf9bff; margin-top: 4px; }

/* chip — gold → amethyst */
.gm-arwen-page .arwen-deal-zone .plan-chip {
  background: linear-gradient(135deg, #b45dff, #8c45ff);
  color: #fff;
}

/* per-card action button */
.gm-arwen-page .arwen-deal-zone .apl-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 11px;
  border: 1px solid rgba(180, 120, 255, 0.4);
  background: linear-gradient(135deg, #8c45ff, #7d35ff);
  color: #fff;
  font: 700 13px/1 'Inter', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(140, 69, 255, 0.3);
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.gm-arwen-page .arwen-deal-zone .apl-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 12px 26px rgba(140, 69, 255, 0.45);
}

@media (max-width: 820px) {
  .gm-arwen-page .arwen-deal-zone { grid-template-columns: 1fr; max-width: 460px; }
}
