/* =============================================
   Aaja Yaar App — main.css
   Custom styles: fonts, variables, gradients,
   animations (anything not doable in Tailwind)
   ============================================= */

/* Fonts imported in head.php (DM Sans, Plus Jakarta Sans, Rubik) */

/* ── CSS Variables ── */
:root {
  --font-body:    'DM Sans', sans-serif;
  --font-title:   'Plus Jakarta Sans', sans-serif;
  --font-number:  'Rubik', monospace;
  --c-primary:    #8b5cf6;
  --c-secondary:  #06b6d4;
  --c-accent:     #f59e0b;
  --c-pink:       #ec4899;
  --c-green:      #10b981;
  --c-orange:     #f97316;
  --nav-h:        84px;
  --header-h:     54px;
  --safe-b:       env(safe-area-inset-bottom, 0px);
}

/* ── Base ── */
*, *::before, *::after {
  font-family: var(--font-body);
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, .heading, .title, .font-title {
  font-family: var(--font-title);
}

.font-number, .stat-num, [data-number] {
  font-family: var(--font-number);
}

html { scroll-behavior: smooth; }

/* ── App gradient background ── */
.app-bg {
  background: linear-gradient(150deg,
    #f5f3ff 0%,
    #faf5ff 25%,
    #f0fdf4 60%,
    #eff6ff 100%);
  background-attachment: fixed;
}

body {
  overflow-x: hidden;
  padding-bottom: calc(var(--nav-h) + var(--safe-b));
}

/* ── Board Gradient Backgrounds ── */
.bg-rooms-board {
  background: linear-gradient(160deg,#1a0533 0%,#3b0764 35%,#4a1d96 65%,#6d28d9 85%,#7c3aed 100%);
}
.bg-diamonds-board {
  background: linear-gradient(160deg,#022c22 0%,#065f46 45%,#059669 75%,#10b981 100%);
}
.bg-coins-board {
  background: linear-gradient(160deg,#431407 0%,#7c2d12 40%,#9a3412 65%,#ea580c 90%,#f97316 100%);
}
.bg-intimacy-board {
  background: linear-gradient(160deg,#4a044e 0%,#831843 45%,#9d174d 70%,#db2777 90%,#ec4899 100%);
}
.bg-badge-board {
  background: linear-gradient(160deg,#1e1b4b 0%,#1e3a8a 45%,#1d4ed8 75%,#3b82f6 100%);
}

/* ── Glass Cards ── */
.glass {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.5);
}
.glass-dark {
  background: rgba(15,15,26,0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
}

/* ── Text Gradients ── */
.text-grad-gold {
  background: linear-gradient(90deg,#f59e0b,#fcd34d,#fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-grad-purple {
  background: linear-gradient(90deg,#8b5cf6,#c084fc,#8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: text-shimmer 3s linear infinite;
}
.text-grad-cyan {
  background: linear-gradient(90deg,#06b6d4,#67e8f9,#06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-grad-pink {
  background: linear-gradient(90deg,#ec4899,#f9a8d4,#ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-grad-orange {
  background: linear-gradient(90deg,#f97316,#fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes text-shimmer {
  0%   { background-position:   0% center; }
  100% { background-position: 200% center; }
}

/* ── Glow Shadows ── */
.glow-purple { box-shadow: 0 0 24px rgba(139,92,246,0.55), 0 0 48px rgba(139,92,246,0.15); }
.glow-gold   { box-shadow: 0 0 24px rgba(245,158,11,0.65), 0 0 48px rgba(245,158,11,0.2); }
.glow-teal   { box-shadow: 0 0 24px rgba(20,184,166,0.55), 0 0 48px rgba(20,184,166,0.15); }
.glow-pink   { box-shadow: 0 0 24px rgba(236,72,153,0.55), 0 0 48px rgba(236,72,153,0.15); }

/* ── Avatar Frames ── */
.frame-gold {
  outline: 3px solid transparent;
  outline-offset: 2px;
  background: conic-gradient(#f59e0b 0%, #fde68a 25%, #f59e0b 50%, #d97706 75%, #f59e0b 100%) border-box;
  box-shadow: 0 0 20px rgba(245,158,11,0.6), 0 0 40px rgba(245,158,11,0.2);
}
.avatar-ring-gold {
  border: 3px solid #f59e0b;
  box-shadow: 0 0 18px rgba(245,158,11,0.7);
}
.avatar-ring-silver {
  border: 3px solid #9ca3af;
  box-shadow: 0 0 14px rgba(156,163,175,0.5);
}
.avatar-ring-bronze {
  border: 3px solid #b45309;
  box-shadow: 0 0 14px rgba(180,83,9,0.4);
}
.avatar-ring-purple {
  border: 2.5px solid #8b5cf6;
  box-shadow: 0 0 10px rgba(139,92,246,0.35);
}

/* ── Noble Banner ── */
.noble-banner {
  background: linear-gradient(100deg, #0f0815 0%, #2d1b69 40%, #7c2d12 80%, #0f0815 100%);
  border: 1px solid rgba(245,158,11,0.35);
  position: relative;
  overflow: hidden;
}
.noble-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(245,158,11,0.12) 50%,
    transparent 100%);
  animation: shimmer-sweep 2.8s linear infinite;
}

/* ── Bottom Navigation ── */
.bottom-nav {
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(139, 92, 246, 0.08);
  box-shadow: 0 -10px 30px rgba(139, 92, 246, 0.04), 0 -1px 0 rgba(0, 0, 0, 0.02);
}
.nav-item {
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.nav-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.nav-item-active .nav-icon-wrap {
  background: linear-gradient(135deg, #a78bfa, #7c3aed) !important;
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.35);
  border-radius: 12px;
}
.nav-item:hover .nav-icon-wrap {
  transform: scale(1.06);
}
/* Center Plus/Create Button Redesign (Floating Over Footer) */
.nav-item-create {
  max-width: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 60;
  transform: translateY(-20px);
  animation: create-float-slow 3s ease-in-out infinite;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.nav-item-create .nav-icon-wrap {
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #c084fc, #7c3aed) !important;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.45) !important;
  border: 3.5px solid #ffffff !important;
  color: #ffffff !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.nav-item-create .nav-icon-wrap i,
.nav-item-create .nav-icon-wrap svg {
  color: #ffffff !important;
  stroke: #ffffff !important;
  width: 26px !important;
  height: 26px !important;
  stroke-width: 3px !important;
}
.nav-item-create:hover {
  animation-play-state: paused;
}
.nav-item-create:hover .nav-icon-wrap {
  transform: scale(1.12) rotate(90deg) !important;
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.55) !important;
}
.nav-item-create:active .nav-icon-wrap {
  transform: scale(0.88) rotate(-90deg) !important;
  box-shadow: 0 4px 10px rgba(124, 58, 237, 0.3) !important;
}
.nav-item-create::after {
  display: none !important; /* No active indicator dot for create button */
}
@keyframes create-float-slow {
  0%, 100% { transform: translateY(-18px); }
  50% { transform: translateY(-23px); }
}

/* ── Room Cards ── */
.room-card {
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.room-card:active { transform: scale(0.95); }
.room-overlay {
  background: linear-gradient(to top,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.65) 60%,
    rgba(0,0,0,0.2) 100%);
}

/* ── Post Card ── */
.post-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 16px rgba(139,92,246,0.07), 0 0 0 1px rgba(139,92,246,0.05);
  transition: transform 0.2s ease;
}
.post-card:active { transform: scale(0.99); }

/* ── Game Card ── */
.game-card {
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.game-card:active { transform: scale(0.92); }

/* ── Skeleton Loader ── */
@keyframes skel-sweep {
  0%   { background-position: -500px 0; }
  100% { background-position: calc(500px + 100%) 0; }
}
.skeleton {
  background: linear-gradient(90deg,#ede9fe 25%,#f5f3ff 50%,#ede9fe 75%);
  background-size: 1000px 100%;
  animation: skel-sweep 1.6s ease-in-out infinite;
  border-radius: 10px;
}
.skeleton-dark {
  background: linear-gradient(90deg,rgba(255,255,255,0.06) 25%,rgba(255,255,255,0.14) 50%,rgba(255,255,255,0.06) 75%);
  background-size: 1000px 100%;
  animation: skel-sweep 1.6s ease-in-out infinite;
  border-radius: 10px;
}

/* ── Animations ── */
@keyframes slideUp {
  from { opacity:0; transform:translateY(22px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes slideDown {
  from { opacity:0; transform:translateY(-16px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes scaleIn {
  from { opacity:0; transform:scale(0.9); }
  to   { opacity:1; transform:scale(1); }
}
@keyframes fadeIn {
  from { opacity:0; }
  to   { opacity:1; }
}
@keyframes float {
  0%,100% { transform:translateY(0); }
  50%     { transform:translateY(-7px); }
}
@keyframes podium-glow {
  0%,100% { box-shadow:0 0 16px rgba(245,158,11,0.4); }
  50%     { box-shadow:0 0 36px rgba(245,158,11,0.9),0 0 60px rgba(245,158,11,0.25); }
}
@keyframes live-pulse {
  0%,100% { opacity:1; }
  50%     { opacity:0.35; }
}
@keyframes shimmer-sweep {
  from { transform:translateX(-100%); }
  to   { transform:translateX(100%); }
}
@keyframes crown-glow {
  0%,100% { filter:drop-shadow(0 0 8px rgba(245,158,11,0.8)); }
  50%     { filter:drop-shadow(0 0 20px rgba(245,158,11,1.0)); }
}
@keyframes pulse-ring {
  0%   { transform:scale(1); opacity:0.75; }
  100% { transform:scale(1.55); opacity:0; }
}
@keyframes bounce-in {
  0%   { transform:scale(0.3); opacity:0; }
  55%  { transform:scale(1.12); }
  75%  { transform:scale(0.94); }
  100% { transform:scale(1); opacity:1; }
}
@keyframes spin-slow {
  to { transform:rotate(360deg); }
}
@keyframes wiggle {
  0%,100% { transform:rotate(-4deg); }
  50%     { transform:rotate(4deg); }
}

.animate-slide-up    { animation:slideUp 0.4s cubic-bezier(.22,.68,0,1.2) both; }
.animate-slide-down  { animation:slideDown 0.35s ease both; }
.animate-scale-in    { animation:scaleIn 0.35s cubic-bezier(.22,.68,0,1.2) both; }
.animate-fade-in     { animation:fadeIn 0.3s ease both; }
.animate-float       { animation:float 3.2s ease-in-out infinite; }
.animate-podium-glow { animation:podium-glow 2s ease-in-out infinite; }
.animate-live        { animation:live-pulse 1s ease-in-out infinite; }
.animate-crown       { animation:crown-glow 1.5s ease-in-out infinite; }
.animate-bounce-in   { animation:bounce-in 0.5s cubic-bezier(.22,.68,0,1.2) both; }
.animate-spin-slow   { animation:spin-slow 8s linear infinite; }
.animate-wiggle      { animation:wiggle 0.7s ease-in-out infinite; }

.stagger-1 { animation-delay:.05s; }
.stagger-2 { animation-delay:.10s; }
.stagger-3 { animation-delay:.15s; }
.stagger-4 { animation-delay:.20s; }
.stagger-5 { animation-delay:.25s; }
.stagger-6 { animation-delay:.30s; }
.stagger-7 { animation-delay:.36s; }
.stagger-8 { animation-delay:.42s; }

/* ── Tabs ── */
.tab-bar-scroll { overflow-x:auto; scrollbar-width:none; }
.tab-bar-scroll::-webkit-scrollbar { display:none; }

.tab-btn {
  white-space:nowrap;
  position:relative;
  transition:color 0.2s ease;
  padding-bottom: 10px;
}
.tab-btn.active { color:#7c3aed; font-weight:700; }
.tab-btn.active::after {
  content:'';
  position:absolute;
  bottom:0; left:50%;
  transform:translateX(-50%);
  width:60%; height:3px;
  background:linear-gradient(90deg,#8b5cf6,#c084fc);
  border-radius:2px 2px 0 0;
}
.tab-btn-light { color:#9ca3af; font-weight:500; }
.tab-btn-dark.active { color:#fff; }
.tab-btn-dark.active::after { background:linear-gradient(90deg,#fff,rgba(255,255,255,0.5)); }

/* Header Specific Tab Buttons to sit exactly on bottom border */
.header-tab-btn {
  padding-bottom: 0 !important;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.header-tab-btn.active::after {
  bottom: -1px !important;
}

/* Period tabs on board */
.period-tab {
  transition:all 0.2s ease;
  color:rgba(255,255,255,0.5);
  font-weight:600;
}
.period-tab.active {
  background:rgba(255,255,255,0.22);
  color:#fff;
  font-weight:800;
  box-shadow:0 2px 12px rgba(0,0,0,0.2);
}

/* ── Badge styles ── */
.badge-level {
  display:inline-flex;
  align-items:center;
  background:linear-gradient(90deg,#4c1d95,#6d28d9);
  color:#fff;
  font-size:9px;
  font-weight:700;
  padding:2px 7px;
  border-radius:20px;
  letter-spacing:0.3px;
}
.badge-vip {
  display:inline-flex;
  align-items:center;
  background:linear-gradient(90deg,#18181b,#27272a);
  color:#f59e0b;
  font-size:9px;
  font-weight:700;
  padding:2px 7px;
  border-radius:20px;
  border:1px solid rgba(245,158,11,0.35);
}
.badge-crown {
  display:inline-flex;
  align-items:center;
  gap:2px;
  background:linear-gradient(90deg,#b91c1c,#ea580c);
  color:#fff;
  font-size:9px;
  font-weight:700;
  padding:2px 7px;
  border-radius:20px;
}
.badge-green {
  display:inline-flex;
  align-items:center;
  background:linear-gradient(90deg,#065f46,#059669);
  color:#fff;
  font-size:9px;
  font-weight:700;
  padding:2px 7px;
  border-radius:20px;
}

/* ── Notification badge (floating, overflow visible) ── */
.notif-badge {
  position:absolute;
  top:-5px;
  right:-5px;
  background:linear-gradient(135deg,#ef4444,#dc2626);
  color:#fff;
  font-size:9px;
  font-weight:800;
  min-width:17px;
  height:17px;
  border-radius:9px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 4px;
  border:2px solid #fff;
  line-height:1;
  z-index:10;
  animation:bounce-in 0.4s ease;
  white-space:nowrap;
}
/* Ensure parent containers don't clip the badge */
.badge-host {
  position:relative;
  overflow:visible !important;
}

/* Live indicator */
.live-tag {
  background:linear-gradient(90deg,#ef4444,#dc2626);
  color:#fff;
  font-size:9px;
  font-weight:800;
  padding:1px 6px;
  border-radius:5px;
  letter-spacing:1px;
  animation:live-pulse 1s ease-in-out infinite;
  text-transform:uppercase;
}

/* ── Type badge on room cards ── */
.room-type-badge {
  font-size:10px;
  font-weight:700;
  color:#fff;
  padding:2px 8px;
  border-radius:999px;
  letter-spacing:0.2px;
}

/* ── Input ── */
.input-styled {
  background:rgba(139,92,246,0.06);
  border:1.5px solid rgba(139,92,246,0.15);
  border-radius:16px;
  padding:10px 16px;
  font-size:14px;
  color:#1f2937;
  transition:border-color 0.2s ease, box-shadow 0.2s ease;
  outline:none;
  width:100%;
}
.input-styled:focus {
  border-color:#8b5cf6;
  box-shadow:0 0 0 3px rgba(139,92,246,0.12);
}
.input-styled::placeholder { color:#9ca3af; }

/* ── FAB ── */
.fab {
  width:52px; height:52px;
  background:linear-gradient(135deg,#8b5cf6,#7c3aed);
  border-radius:50%;
  box-shadow:0 8px 24px rgba(139,92,246,0.5);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}
.fab:active {
  transform:scale(0.88);
  box-shadow:0 4px 12px rgba(139,92,246,0.35);
}

/* ── Profile ── */
.profile-header {
  background:linear-gradient(160deg,#1a0533 0%,#4c1d95 50%,#6d28d9 80%,#7c3aed 100%);
  position:relative;
  overflow:hidden;
}
.profile-header::before {
  content:'';
  position:absolute;
  top:-50%;
  right:-20%;
  width:280px; height:280px;
  background:radial-gradient(circle,rgba(255,255,255,0.08) 0%,transparent 70%);
  pointer-events:none;
}
.profile-header::after {
  content:'';
  position:absolute;
  bottom:20%;
  left:-10%;
  width:200px; height:200px;
  background:radial-gradient(circle,rgba(139,92,246,0.25) 0%,transparent 70%);
  pointer-events:none;
}

.stat-box {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:3px;
}
.stat-num {
  font-family:var(--font-number);
  font-weight:700;
  font-size:1.35rem;
  color:#1f2937;
  line-height:1.1;
}
.stat-label {
  font-size:10.5px;
  color:#9ca3af;
  font-weight:500;
}

/* ── Custom scrollbar ── */
::-webkit-scrollbar { width:3px; height:3px; }
::-webkit-scrollbar-track { background:transparent; }
::-webkit-scrollbar-thumb { background:rgba(139,92,246,0.3); border-radius:4px; }

/* ── Page wrappers ── */
.page-content {
  padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
}
.page-content-bare {
  padding-top: 0;
}

/* ── Modal ── */
.modal-overlay {
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(5px);
  -webkit-backdrop-filter:blur(5px);
}
.modal-sheet {
  border-radius:24px 24px 0 0;
  background:#fff;
  animation:slideUp 0.35s cubic-bezier(.22,.68,0,1.2);
}

/* ── Particle dots ── */
.particle-dots {
  background-image:radial-gradient(circle,rgba(255,255,255,0.07) 1px,transparent 1px);
  background-size:28px 28px;
}

/* ── Chat bubbles ── */
.bubble-in  { background:linear-gradient(135deg,#8b5cf6,#7c3aed); color:#fff; border-radius:18px 18px 18px 4px; }
.bubble-out { background:linear-gradient(135deg,#f3f4f6,#e5e7eb); color:#1f2937; border-radius:18px 18px 4px 18px; }

/* ── Quick stat pill on home ── */
.stat-pill {
  display:flex;
  align-items:center;
  gap:6px;
  padding:10px 16px;
  border-radius:999px;
  flex-shrink:0;
  font-weight:700;
  font-size:13px;
  color:#fff;
  white-space:nowrap;
  transition:transform 0.15s ease;
}
.stat-pill:active { transform:scale(0.94); }

/* ── Audio Room Custom Styles ── */
.audio-room-bg {
  background: linear-gradient(to bottom, rgba(15, 10, 25, 0.8) 0%, rgba(20, 15, 35, 0.5) 50%, rgba(10, 5, 20, 0.95) 100%), 
              url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?q=80&w=800&auto=format&fit=crop') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}
.seat-avatar-container {
  position: relative;
  width: 58px;
  height: 58px;
}
.seat-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.speaking-pulse {
  animation: speak-glow 1.5s ease-in-out infinite;
}
@keyframes speak-glow {
  0%, 100% { box-shadow: 0 0 0 0px rgba(139,92,246,0.5), 0 0 0 4px rgba(139,92,246,0.3); }
  50% { box-shadow: 0 0 0 3px rgba(139,92,246,0.7), 0 0 10px rgba(139,92,246,0.5); }
}
/* Frames */
.avatar-frame-gold {
  border: 2.5px solid #f59e0b;
  box-shadow: 0 0 12px rgba(245,158,11,0.65);
}
.avatar-frame-silver {
  border: 2.5px solid #9ca3af;
  box-shadow: 0 0 10px rgba(156,163,175,0.5);
}
.avatar-frame-bronze {
  border: 2.5px solid #b45309;
  box-shadow: 0 0 10px rgba(180,83,9,0.45);
}
.avatar-frame-fire {
  border: 2.5px solid #ef4444;
  box-shadow: 0 0 14px #f97316;
  animation: fire-pulse 1.2s ease-in-out infinite alternate;
}
@keyframes fire-pulse {
  0% { transform: scale(1); filter: drop-shadow(0 0 2px #ef4444); }
  100% { transform: scale(1.03); filter: drop-shadow(0 0 8px #f97316); }
}

/* Chat area inside audio room */
.room-chat-box {
  background: linear-gradient(to top, rgba(10, 5, 20, 0.8) 0%, rgba(10, 5, 20, 0.4) 60%, rgba(10, 5, 20, 0) 100%);
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  border-radius: 0 !important;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 25%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 25%);
}
.room-chat-msg {
  animation: slideUp 0.3s ease both;
}

/* Gifting dialog sheet */
.gift-modal-sheet {
  background: rgba(25, 20, 40, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(139,92,246,0.25);
}
.gift-card-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.2s ease;
}
.gift-card-btn.active {
  background: rgba(139,92,246,0.22);
  border-color: #8b5cf6;
  box-shadow: 0 0 15px rgba(139,92,246,0.4);
}
.rocket-progress-box {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 6px 12px;
}

