/* ═══════════════════════════════════════════════
   BEASTSHOP — main.css  (full updated file)
════════════════════════════════════════════════ */

:root {
  --bg-dark: #07070a;
  --card-dark: #111118;
  --purple: #7c3aed;
  --purple-light: #a855f7;
  --pink: #ec4899;
  --text-light: #f5f3ff;
  --muted: #b9a8cf;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(124, 58, 237, 0.35), transparent 35%),
    radial-gradient(circle at top right, rgba(236, 72, 153, 0.25), transparent 30%),
    linear-gradient(135deg, #07070a 0%, #111118 45%, #190326 100%);
  color: var(--text-light);
  overflow-x: hidden;
}

/* ── Global text fix — bootstrap "text-muted" is too faint on dark bg ── */
.text-muted {
  color: var(--muted) !important;
}

.brand-font {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
}

/* ─────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────── */
.navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(7, 7, 10, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(168, 85, 247, 0.22);
  transition: all 0.3s ease;
}

.navbar-brand {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  color: #fff !important;
  text-shadow: 0 0 18px rgba(168, 85, 247, 0.9);
}

.nav-link {
  color: var(--muted) !important;
  font-weight: 500;
}

.nav-link:hover {
  color: #fff !important;
}

.navbar-toggler {
  border: 1px solid rgba(192, 132, 252, 0.45) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  padding: 8px 10px;
  border-radius: 12px;
  box-shadow: none !important;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(168, 85, 247, 0.3) !important;
}

.navbar-toggler-icon {
  filter: invert(1);
}

.beast-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 12px;
  filter: drop-shadow(0 0 12px rgba(168, 85, 247, 0.65));
  transition: all 0.3s ease;
}

.navbar-brand:hover .beast-logo {
  transform: scale(1.08) rotate(-4deg);
  filter: drop-shadow(0 0 18px rgba(236, 72, 153, 0.85));
}

.brand-text {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 1px;
  color: #fff;
  text-shadow: 0 0 18px rgba(168, 85, 247, 0.9);
}

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn-beast {
  border: none;
  color: white;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.55);
  transition: all 0.25s ease;
}

.btn-beast:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 38px rgba(236, 72, 153, 0.75);
  color: white;
}

.btn-outline-beast {
  color: white;
  border: 1px solid rgba(192, 132, 252, 0.65);
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline-beast:hover {
  background: rgba(168, 85, 247, 0.18);
  color: white;
  border-color: var(--purple-light);
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  top: -220px;
  right: -200px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.28), transparent 70%);
  filter: blur(30px);
  z-index: -1;
  animation: pulseGlow 6s ease-in-out infinite;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/bg.jpg") center center / cover no-repeat;
  transform: scale(1.05);
  z-index: -3;
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 7, 10, 0.92), rgba(25, 3, 38, 0.78));
  z-index: -2;
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.12);
  }
}

@keyframes pulseGlow {
  0% {
    opacity: 0.55;
    transform: scale(1);
  }

  100% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  color: #f5d0fe;
  border: 1px solid rgba(168, 85, 247, 0.35);
  background: rgba(124, 58, 237, 0.14);
  box-shadow: inset 0 0 22px rgba(168, 85, 247, 0.12);
  font-weight: 600;
  margin-bottom: 22px;
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(3rem, 8vw, 6.8rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  color: #f5f3ff;
  text-shadow:
    0 0 18px rgba(168, 85, 247, 0.85),
    0 0 52px rgba(236, 72, 153, 0.35);
}

.hero-title span {
  background: linear-gradient(135deg, #fff, #c084fc, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: var(--muted);
  max-width: 640px;
  font-size: 1.1rem;
  margin-top: 22px;
}

/* ─────────────────────────────────────────────
   BEAST ORB
───────────────────────────────────────────── */
.beast-orb {
  position: relative;
  min-height: 430px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 30%, rgba(236, 72, 153, 0.65), transparent 20%),
    radial-gradient(circle at 55% 55%, rgba(124, 58, 237, 0.85), transparent 35%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(192, 132, 252, 0.22);
  box-shadow:
    0 0 80px rgba(124, 58, 237, 0.38),
    inset 0 0 45px rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.beast-orb::before {
  content: 'B';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 15rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  text-shadow: 0 0 48px rgba(255, 255, 255, 0.12);
}

.beast-orb::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  left: 50%;
  bottom: -80px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(236, 72, 153, 0.7), transparent 65%);
  filter: blur(12px);
}

.floating-card {
  position: absolute;
  z-index: 2;
  padding: 18px;
  border-radius: 22px;
  background: rgba(17, 17, 24, 0.72);
  border: 1px solid rgba(192, 132, 252, 0.24);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.35);
}

.floating-card.top {
  top: 34px;
  left: 28px;
}

.floating-card.bottom {
  bottom: 38px;
  right: 24px;
}

/* ─────────────────────────────────────────────
   SECTIONS
───────────────────────────────────────────── */
.section-padding {
  padding: 90px 0;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: #f5f3ff;
}

.section-subtitle {
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 42px;
}

/* ─────────────────────────────────────────────
   CARDS (games grid)
───────────────────────────────────────────── */
.glass-card {
  height: 100%;
  border-radius: 28px;
  background: rgba(17, 17, 24, 0.72);
  border: 1px solid rgba(192, 132, 252, 0.17);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  transition: all 0.25s ease;
  overflow: hidden;
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(236, 72, 153, 0.55);
  box-shadow: 0 0 42px rgba(168, 85, 247, 0.25);
}

.game-img {
  height: 150px;
  display: grid;
  place-items: center;
  font-size: 3rem;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.52), rgba(236, 72, 153, 0.28));
}

.price-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.15);
  color: #86efac;
  font-size: 0.82rem;
  font-weight: 700;
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  box-shadow: 0 0 26px rgba(168, 85, 247, 0.45);
  margin-bottom: 18px;
}

/* ─────────────────────────────────────────────
   FORMS (shared)
───────────────────────────────────────────── */
.form-control,
.form-select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(192, 132, 252, 0.22);
  color: #f5f3ff;
  border-radius: 14px;
  padding: 13px 16px;
  transition: border-color 0.2s;
}

.form-control:focus,
.form-select:focus {
  background: rgba(255, 255, 255, 0.09);
  color: #f5f3ff;
  border-color: var(--purple-light);
  box-shadow: 0 0 0 0.25rem rgba(168, 85, 247, 0.18);
}

.form-control::placeholder {
  color: #9180a8;
}

.form-select option {
  background: #111118;
  color: #f5f3ff;
}

.field-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #b9a8cf;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.req-star {
  color: #ec4899;
}

/* ─────────────────────────────────────────────
   TOP-UP LAYOUT  (sidebar + panels)
───────────────────────────────────────────── */
.topup-layout {
  display: grid;
  grid-template-columns: 210px 1fr;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(192, 132, 252, 0.22);
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.18), rgba(17, 17, 24, 0.88));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  min-height: 520px;
}

/* ── Sidebar ── */
.topup-sidebar {
  background: rgba(7, 7, 10, 0.65);
  border-right: 1px solid rgba(192, 132, 252, 0.14);
  padding: 28px 18px;
  display: flex;
  flex-direction: column;
}

.sidebar-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(168, 85, 247, 0.75);
  margin-bottom: 14px;
  padding-left: 4px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  cursor: default;
}

.step-item.active {
  background: rgba(124, 58, 237, 0.2);
  border-color: rgba(168, 85, 247, 0.32);
}

.step-item.done {
  cursor: pointer;
}

.step-item.done:hover {
  background: rgba(255, 255, 255, 0.04);
}

.step-item.locked {
  opacity: 0.35;
}

.step-connector {
  width: 1.5px;
  height: 16px;
  background: rgba(192, 132, 252, 0.18);
  margin: 0 0 0 23px;
  flex-shrink: 0;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  border: 1.5px solid rgba(192, 132, 252, 0.28);
  color: #b9a8cf;
  transition: all 0.2s ease;
}

.step-item.active .step-num {
  background: linear-gradient(135deg, #7c3aed, #ec4899);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 14px rgba(168, 85, 247, 0.5);
}

.step-item.done .step-num {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.4);
  color: #86efac;
  font-size: 0;
  /* hide number, show check */
}

.step-item.done .step-num::after {
  content: '✓';
  font-size: 13px;
}

.step-name {
  font-size: 13px;
  font-weight: 600;
  color: #b9a8cf;
  line-height: 1.3;
}

.step-item.active .step-name {
  color: #f5f3ff;
}

.step-item.done .step-name {
  color: #d8c8f0;
}

.step-sub {
  font-size: 11px;
  color: #6b5e80;
  margin-top: 1px;
}

.step-item.active .step-sub {
  color: #9d84c0;
}

/* ── Content area ── */
.topup-content {
  padding: 30px 28px;
  min-width: 0;
}

.topup-panel {
  animation: fadeInPanel 0.22s ease;
}

@keyframes fadeInPanel {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.panel-title {
  font-size: 15px;
  font-weight: 700;
  color: #f5f3ff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.panel-title i {
  color: #a855f7;
  font-size: 17px;
}

.back-btn {
  font-size: 12px;
  font-weight: 600;
  color: #9d84c0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(192, 132, 252, 0.2);
  border-radius: 999px;
  padding: 5px 14px;
  cursor: pointer;
  transition: all 0.18s;
  text-decoration: none;
}

.back-btn:hover {
  color: #f5f3ff;
  background: rgba(124, 58, 237, 0.18);
  border-color: rgba(168, 85, 247, 0.4);
}

/* ─────────────────────────────────────────────
   SEARCH BAR  (panels 2 & 3)
───────────────────────────────────────────── */
.search-bar-wrap {
  position: relative;
  margin-bottom: 14px;
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b5e80;
  font-size: 14px;
  pointer-events: none;
  z-index: 1;
}

.search-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(192, 132, 252, 0.22);
  color: #f5f3ff;
  border-radius: 14px;
  padding: 11px 40px 11px 38px;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
}

.search-input:focus {
  border-color: var(--purple-light);
  box-shadow: 0 0 0 0.2rem rgba(168, 85, 247, 0.18);
  background: rgba(255, 255, 255, 0.09);
}

.search-input::placeholder {
  color: #6b5e80;
}

.search-clear {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #6b5e80;
  cursor: pointer;
  padding: 4px 7px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1;
  transition: color 0.15s, background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-clear:hover {
  color: #f5f3ff;
  background: rgba(255, 255, 255, 0.08);
}

.search-no-results {
  padding: 28px 0;
  text-align: center;
  color: #6b5e80;
  font-size: 13px;
  grid-column: 1 / -1;
  /* span full width inside any grid */
}

/* ─────────────────────────────────────────────
   CATEGORY CARDS  (panel 1)
───────────────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
}

.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 12px;
  border-radius: 18px;
  border: 1px solid rgba(192, 132, 252, 0.18);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.cat-card:hover {
  background: rgba(124, 58, 237, 0.16);
  border-color: rgba(168, 85, 247, 0.45);
  transform: translateY(-3px);
}

.cat-card.active {
  background: rgba(124, 58, 237, 0.22);
  border-color: rgba(236, 72, 153, 0.55);
  box-shadow: 0 0 22px rgba(168, 85, 247, 0.22);
}

.cat-icon {
  font-size: 2rem;
  line-height: 1;
}

.cat-name {
  font-size: 12px;
  font-weight: 600;
  color: #d8c8f0;
  line-height: 1.3;
}

.cat-card.active .cat-name {
  color: #f5f3ff;
}

/* ─────────────────────────────────────────────
   GAME SELECT CARDS  (panel 2)
───────────────────────────────────────────── */
.game-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 360px;
  overflow-y: auto;
  padding-right: 4px;
}

.game-cards-grid::-webkit-scrollbar {
  width: 4px;
}

.game-cards-grid::-webkit-scrollbar-track {
  background: transparent;
}

.game-cards-grid::-webkit-scrollbar-thumb {
  background: rgba(168, 85, 247, 0.35);
  border-radius: 4px;
}

.game-select-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border-radius: 16px;
  border: 1px solid rgba(192, 132, 252, 0.16);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: all 0.18s ease;
}

.game-select-card:hover {
  background: rgba(124, 58, 237, 0.16);
  border-color: rgba(168, 85, 247, 0.42);
  transform: translateX(3px);
}

.gsc-emoji {
  font-size: 1.6rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.2);
  flex-shrink: 0;
}

.gsc-name {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  color: #e0d4f7;
}

.gsc-arrow {
  color: #6b5e80;
  font-size: 14px;
  flex-shrink: 0;
}

.game-select-card:hover .gsc-arrow {
  color: #a855f7;
}

/* Selected game banner (panel 3) */
.selected-game-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.2);
  margin-bottom: 12px;
  font-size: 14px;
  color: #d8c8f0;
}

/* ─────────────────────────────────────────────
   VARIATION / PACKAGE CARDS  (panel 3)
───────────────────────────────────────────── */
.variations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.deal-card {
  padding: 16px 12px;
  border-radius: 18px;
  border: 1px solid rgba(192, 132, 252, 0.18);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: all 0.2s ease;
}

.deal-card:hover,
.deal-card.active {
  background: rgba(168, 85, 247, 0.18);
  border-color: rgba(236, 72, 153, 0.55);
  box-shadow: 0 0 22px rgba(168, 85, 247, 0.2);
}

.var-name {
  font-size: 12px;
  font-weight: 700;
  color: #e0d4f7;
  line-height: 1.3;
  margin-bottom: 6px;
}

.var-old {
  font-size: 11px;
  color: #6b5e80;
  text-decoration: line-through;
  margin-bottom: 3px;
}

.var-price {
  font-size: 14px;
  font-weight: 700;
  color: #a855f7;
}

/* ─────────────────────────────────────────────
   PRELOADER
───────────────────────────────────────────── */
.topup-loader {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  margin-top: 14px;
  border-radius: 14px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  color: #b9a8cf;
  font-size: 13px;
}

.topup-loader.visible {
  display: flex;
}

.loader-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(168, 85, 247, 0.2);
  border-top-color: #a855f7;
  border-radius: 50%;
  flex-shrink: 0;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ─────────────────────────────────────────────
   ORDER SUMMARY BOX  (panel 5)
───────────────────────────────────────────── */
.order-summary-box {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(168, 85, 247, 0.22);
  background: rgba(124, 58, 237, 0.1);
}

.summary-label {
  font-size: 13px;
  color: #9180a8;
}

.summary-value {
  font-size: 13px;
  font-weight: 600;
  color: #f5f3ff;
}

.summary-divider {
  border-top: 1px solid rgba(192, 132, 252, 0.15);
  margin: 10px 0;
}

.summary-price {
  font-size: 22px;
  font-weight: 700;
  color: #a855f7;
}

/* ─────────────────────────────────────────────
   SECURE LINE
───────────────────────────────────────────── */
.secure-line {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.1);
  color: #86efac;
  font-weight: 600;
  text-align: center;
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.footer {
  border-top: 1px solid rgba(192, 132, 252, 0.15);
  background: rgba(7, 7, 10, 0.75);
  padding: 35px 0;
  color: var(--muted);
}

/* ─────────────────────────────────────────────
   PAYMENT PAGE EXTRAS
───────────────────────────────────────────── */
.payment-hero {
  padding: 20px 0 70px;
  position: relative;
  overflow: hidden;
}

.payment-hero-box {
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(236, 72, 153, 0.22), transparent 35%),
    linear-gradient(145deg, rgba(124, 58, 237, 0.22), rgba(17, 17, 24, 0.92));
  border: 1px solid rgba(192, 132, 252, 0.25);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.payment-card {
  min-height: 115px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(192, 132, 252, 0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: #f5f3ff;
  transition: all 0.25s ease;
}

.payment-card i {
  font-size: 2rem;
  color: #c084fc;
  text-shadow: 0 0 22px rgba(168, 85, 247, 0.9);
}

.payment-card span {
  font-weight: 700;
}

.payment-card:hover {
  transform: translateY(-6px);
  border-color: rgba(236, 72, 153, 0.65);
  box-shadow: 0 0 34px rgba(168, 85, 247, 0.25);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */

/* ── Tablet & Desktop mobile-menu ── */
@media (max-width: 991px) {
  .navbar {
    padding: 12px 0;
    background: rgba(7, 7, 10, 0.96);
    backdrop-filter: blur(18px);
  }

  .navbar-collapse {
    margin-top: 14px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(17, 17, 24, 0.96);
    border: 1px solid rgba(168, 85, 247, 0.28);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
  }

  .navbar-nav {
    gap: 10px;
  }

  .nav-link {
    padding: 12px 14px !important;
    border-radius: 14px;
  }

  .nav-link:hover {
    background: rgba(168, 85, 247, 0.14);
  }

  .navbar .btn-beast {
    width: 100%;
    margin-top: 8px;
    text-align: center;
  }

  body {
    padding-top: 72px;
  }

  .hero {
    padding-top: 55px;
  }

  .beast-logo {
    width: 36px;
    height: 36px;
  }

  .brand-text {
    font-size: 1rem;
  }

  .hero {
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 70px;
  }

  .hero-bg {
    background-position: center center !important;
    background-size: cover !important;
    transform: scale(1) !important;
    animation: none !important;
    opacity: 0.55;
  }

  .hero-overlay {
    background: linear-gradient(to bottom, rgba(7, 7, 10, 0.88), rgba(25, 3, 38, 0.92));
  }

  .hero::after {
    width: 320px;
    height: 320px;
    top: -80px;
    right: -120px;
    opacity: 0.7;
  }

  .beast-orb {
    margin-top: 25px;
    width: 100%;
    max-width: 92vw;
    min-height: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .floating-card {
    max-width: 78%;
    padding: 14px;
  }

  .floating-card.top {
    left: 14px;
  }

  .floating-card.bottom {
    right: 14px;
  }

  .payment-hero {
    padding: 10px 0 55px;
  }

  .payment-hero-box {
    padding: 24px 16px;
    text-align: center;
  }

  .payment-card {
    min-height: 100px;
  }

  .secure-line {
    border-radius: 18px;
    font-size: .9rem;
  }

  .hero-title {
    font-size: clamp(2.25rem, 13vw, 4rem);
    word-break: break-word;
  }

  .hero-subtitle {
    width: 100%;
    max-width: 92%;
  }

  .section-padding {
    padding-left: 0;
    padding-right: 0;
  }

  .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* ── Topup layout: stack on mobile ── */
@media (max-width: 767px) {
  .topup-layout {
    grid-template-columns: 1fr;
  }

  .topup-sidebar {
    flex-direction: row;
    overflow-x: auto;
    gap: 4px;
    padding: 14px 16px;
    border-right: none;
    border-bottom: 1px solid rgba(192, 132, 252, 0.14);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .topup-sidebar::-webkit-scrollbar {
    display: none;
  }

  .sidebar-label {
    display: none;
  }

  .step-connector {
    display: none;
  }

  .step-info {
    display: none;
  }

  .step-item {
    flex-direction: column;
    gap: 0;
    padding: 8px 10px;
    min-width: 42px;
    justify-content: center;
  }

  .topup-content {
    padding: 20px 16px;
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .variations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Very small screens ── */
@media (max-width: 480px) {
  .hero-bg {
    background-position: 55% center !important;
    opacity: 0.48;
  }

  .hero {
    padding-top: 30px;
    padding-bottom: 60px;
  }

  .hero::after {
    width: 220px;
    height: 220px;
    top: -40px;
    right: -90px;
  }

  .variations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Overflow hard fix ── */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

main {
  width: 100%;
  overflow-x: hidden;
}

.container,
.container-fluid {
  max-width: 100%;
}


.deal-card.active .var-usd {
  color: #c084fc;
}

/* ── PHP converted price on variation cards ── */
.var-php {
  font-size: 11px;
  color: #86efac;
  margin-top: 5px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.deal-card.active .var-php {
  color: #4ade80;
}