/* css/home.css — Premium Fintech Home Page Styles */
/* ===================================================
   IMPORTS & VARIABLES
   =================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --primary-purple: #F59E0B;
  --deep-blue: #EAB308;
  --neon-purple: #FACC15;
  --text-dark: #111827;
  --text-gray: #4B5563;
  --card-white: rgba(255, 255, 255, 0.95);
  --border-purple: rgba(234, 179, 8, 0.15);
  --shadow-card: 0 4px 18px rgba(234, 179, 8, 0.05), 0 1px 3px rgba(0,0,0,0.02);
  --shadow-card-hover: 0 8px 24px rgba(234, 179, 8, 0.1), 0 2px 6px rgba(0,0,0,0.03);
  --radius-card: 20px;
  --radius-large: 24px;
  --gap-card: 14px;
  --page-px: 16px;
}

/* ===================================================
   GLOBAL BODY OVERRIDE FOR HOME
   =================================================== */
body {
  font-family: 'Inter', 'Poppins', sans-serif !important;
  background: #FEF9C3 !important;
  color: var(--text-dark) !important;
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* ===================================================
   TOP FLUID GRADIENT BACKGROUND
   =================================================== */
.top-fluid-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 380px;
  background: linear-gradient(180deg, #FDE047 0%, #F59E0B 45%, rgba(253, 251, 247, 0) 100%);
  z-index: 0;
  pointer-events: none;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

/* ===================================================
   SOUND BUTTON & WELCOME ROW
   =================================================== */
.header-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px var(--page-px) 8px;
  position: relative;
  z-index: 1;
}

.sound-toggle-btn.announcement-icon-box {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: #ffffff !important;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  color: #4F46E5 !important;
  cursor: pointer;
  transition: transform 0.2s;
}

.sound-toggle-btn.announcement-icon-box i {
  color: #4F46E5 !important;
  font-size: 18px;
}

.sound-toggle-btn:active {
  transform: scale(0.9);
}

.welcome-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #111827;
}

.online-dot {
  width: 10px;
  height: 10px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.3);
  animation: onlineDotPulse 2s ease-in-out infinite;
}

@keyframes onlineDotPulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.3); }
  50% { box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.08); }
}

/* ===================================================
   PROFILE HEADER CARD
   =================================================== */
.profile-header-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 6px var(--page-px) 12px;
  background: #FEF08A;
  border-radius: 20px;
  padding: 14px 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.03);
  border: 1px solid rgba(245, 158, 11, 0.2);
  position: relative;
  z-index: 1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.profile-greeting {
  font-size: clamp(20px, 6vw, 24px);
  font-weight: 800;
  color: #111827;
  margin: 0;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.5px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.greeting-number {
  color: #111827;
  font-weight: 800;
}

.profile-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.action-btn {
  width: 40px;
  height: 40px;
  background: #FEF08A;
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  color: #1F2937;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease;
  position: relative;
}

.action-btn:hover {
  background-color: #F9FAFB;
  transform: translateY(-1px);
}

.action-btn:active {
  transform: scale(0.92);
}

.notif-dot {
  position: absolute;
  top: 7px;
  right: 8px;
  width: 7px;
  height: 7px;
  background: #EF4444;
  border-radius: 50%;
  border: 1.5px solid white;
}

/* ===================================================
   TOTAL BALANCE CARD
   =================================================== */
.balance-card-home {
  margin: 0 var(--page-px) 14px;
  background: linear-gradient(135deg, #FDE047 0%, #EAB308 100%);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(234, 179, 8, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.balance-left-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.balance-label {
  font-size: 13px;
  font-weight: 700;
  color: #4A2E00;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.balance-main-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.balance-wallet-img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  mix-blend-mode: multiply;
  animation: walletFloat 3s ease-in-out infinite;
}

@keyframes walletFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-4px) rotate(2deg); }
}

.balance-amount-box {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.balance-amount {
  font-size: clamp(26px, 7vw, 34px);
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.5px;
  line-height: 1;
}

.xcoin-badge {
  font-size: 11px;
  font-weight: 700;
  color: #EF4444;
  background: white;
  padding: 2px 8px;
  border-radius: 20px;
  align-self: flex-start;
  box-shadow: 0 2px 6px rgba(239, 68, 68, 0.12);
  margin-top: 2px;
}

.bill-details-btn {
  background: #3F2305;
  color: white !important;
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(63, 35, 5, 0.3);
  transition: transform 0.2s, background-color 0.2s;
  flex-shrink: 0;
}

.bill-details-btn:hover {
  background-color: #2F1902;
  transform: translateY(-1px);
}

.bill-details-btn:active {
  transform: scale(0.95);
}

/* ===================================================
   STATS ROW
   =================================================== */
.stats-row {
  display: flex;
  gap: 12px;
  padding: 0 var(--page-px) 14px;
  position: relative;
  z-index: 1;
}

.stat-mini-card {
  flex: 1;
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE047 100%);
  border-radius: 20px;
  padding: 14px 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.02);
  border: 1px solid rgba(234, 179, 8, 0.15);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.stat-mini-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(234, 179, 8, 0.06);
}

.stat-mini-card:active {
  transform: scale(0.96);
}

.stat-mini-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.stat-icon-wrapper {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.orders-icon {
  background: white;
  color: #EAB308;
}

.profit-icon {
  background: white;
  color: #3B82F6;
}

.stat-mini-title {
  font-size: 11px;
  font-weight: 700;
  color: #4B5563;
  flex: 1;
  margin-left: 8px;
}

.stat-mini-arrow {
  font-size: 10px;
  color: #D1D5DB;
}

.stat-value-box {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-mini-value {
  font-size: 26px;
  font-weight: 800;
  color: #111827;
}

.stat-rs-label {
  font-size: 13px;
  font-weight: 700;
  color: #4B5563;
  margin-right: 2px;
}

.stat-wave-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: linear-gradient(180deg, rgba(254, 240, 138, 0) 0%, rgba(254, 240, 138, 0.18) 100%);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

/* ===================================================
   BUY & SELL CARD BUTTONS
   =================================================== */
.buy-sell-grid {
  display: flex;
  gap: 12px;
  padding: 0 var(--page-px) 14px;
  position: relative;
  z-index: 1;
}

.buy-card-btn, .sell-card-btn {
  flex: 1;
  border-radius: 22px;
  padding: 16px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white !important;
  position: relative;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.18s ease;
}

.buy-card-btn {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  box-shadow: 0 6px 16px rgba(217, 119, 6, 0.2);
}

.sell-card-btn {
  background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
  box-shadow: 0 6px 16px rgba(236, 72, 153, 0.2);
}

.buy-card-btn:hover, .sell-card-btn:hover {
  transform: translateY(-2px);
}

.buy-card-btn:active, .sell-card-btn:active {
  transform: scale(0.95);
}

.btn-icon-circle {
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.buy-card-btn .btn-icon-circle i {
  color: #D97706;
}

.sell-card-btn .btn-icon-circle i {
  color: #8B5CF6;
}

.btn-text-content {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
}

.btn-main-title {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.btn-sub-title {
  font-size: 10px;
  font-weight: 600;
  opacity: 0.9;
}

.btn-arrow {
  font-size: 12px;
  opacity: 0.8;
}

/* ===================================================
   SCROLLABLE CONTENT AREA
   =================================================== */
.scrollable-content {
  padding-left: var(--page-px);
  padding-right: var(--page-px);
  position: relative;
  z-index: 1;
}

/* ===================================================
   REWARD BANNER CARD
   =================================================== */
.reward-banner-card {
  margin: 0 0 14px;
  background: linear-gradient(135deg, #FDE047 0%, #F59E0B 100%);
  border-radius: 24px;
  padding: 16px 20px;
  box-shadow: 0 6px 18px rgba(234, 179, 8, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.reward-banner-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0) 40%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 60%);
  background-size: 200% 100%;
  background-position: 200% 0;
  animation: shineEffect 3.5s ease-in-out infinite;
  pointer-events: none;
  border-radius: inherit;
}

@keyframes shineEffect {
  0% { background-position: 200% 0; }
  50% { background-position: -50% 0; }
  100% { background-position: 200% 0; }
}

.reward-banner-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.reward-banner-label {
  font-size: 12px;
  font-weight: 700;
  color: #4A2E00;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.reward-banner-pct-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.reward-banner-pct {
  font-size: clamp(34px, 9vw, 44px);
  font-weight: 900;
  color: #111827;
  line-height: 1;
  letter-spacing: -1px;
}

.reward-banner-text {
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  line-height: 1.3;
}

.reward-banner-right {
  flex-shrink: 0;
}

.reward-gift-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  mix-blend-mode: multiply;
  animation: giftFloat 3s ease-in-out infinite;
}

@keyframes giftFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.reward-banner-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
}

.dot {
  width: 5px;
  height: 5px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 50%;
}

.dot-active {
  width: 14px;
  border-radius: 3px;
  background: #111827;
}

/* ===================================================
   PRICES COMPARISON CARD
   =================================================== */
.prices-comparison-card {
  margin: 0 0 14px;
  background: #FEF08A;
  border-radius: 20px;
  padding: 16px 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.02);
  border: 1px solid rgba(234, 179, 8, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.price-side-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-right-col {
  align-items: flex-end;
  text-align: right;
}

.price-col-title {
  font-size: 11px;
  font-weight: 700;
  color: #6B7280;
}

.price-value-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.price-right-col .price-value-row {
  flex-direction: row-reverse;
}

.price-val-num {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
}

.price-change-percent {
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 2px;
}

.green-text {
  color: #10B981;
}

.sparkline-svg {
  opacity: 0.85;
  margin-top: 2px;
}

.price-center-divider {
  flex-shrink: 0;
  padding: 0 10px;
}

.divider-circle {
  width: 38px;
  height: 38px;
  background: #FEF3C7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D97706;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.1);
}

/* ===================================================
   INR RECHARGE CARD
   =================================================== */
.inr-recharge-card {
  margin: 0 0 14px;
  background: #FEF3C7;
  border-radius: 20px;
  padding: 14px 16px;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.06);
  border: 1px solid rgba(217, 119, 6, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: transform 0.2s;
}

.inr-recharge-card:active {
  transform: scale(0.98);
}

.inr-left-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.inr-badge-icon {
  width: 38px;
  height: 38px;
  background: #F59E0B;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 3px 8px rgba(245, 158, 11, 0.25);
}

.inr-info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.inr-title {
  font-size: 14px;
  font-weight: 800;
  color: #1E293B;
}

.inr-sub-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.inr-reward-pct {
  font-size: 18px;
  font-weight: 900;
  color: #D97706;
}

.inr-sub-label {
  font-size: 11px;
  font-weight: 600;
  color: #6B7280;
}

.inr-right-block {
  display: flex;
  align-items: center;
  gap: 10px;
}

.support-circle-btn {
  width: 44px;
  height: 44px;
  background: #F59E0B;
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
  transition: transform 0.2s;
}

.support-circle-btn:active {
  transform: scale(0.9);
}

.inr-arrow {
  font-size: 14px;
  color: #D97706;
}

/* ===================================================
   HOME SECTION HEADERS
   =================================================== */
.home-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 0;
}

.home-section-header h2 {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0;
}

.go-link {
  color: #D97706;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 3px;
}

/* ===================================================
   MORE GRID
   =================================================== */
.more-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.more-card {
  background: white;
  border-radius: 20px;
  padding: 18px 16px;
  border: 1px solid rgba(234, 179, 8, 0.12);
  box-shadow: 0 4px 14px rgba(0,0,0,0.02);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.more-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(234, 179, 8, 0.05);
}

.more-card:active {
  transform: scale(0.97);
}

.more-card-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, rgba(245,158,11,0.12), rgba(251,191,36,0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D97706;
  font-size: 22px;
  border: 1px solid rgba(245, 158, 11, 0.15);
  flex-shrink: 0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-purple);
  font-size: 22px;
  border: 1px solid rgba(245, 158, 11, 0.15);
  flex-shrink: 0;
}

/* ===================================================
   RECENT TRANSACTIONS CARD
   =================================================== */
.recent-tx-card {
  background: white;
  border-radius: var(--radius-large);
  padding: 18px 18px;
  border: 1px solid rgba(234, 179, 8, 0.12);
  box-shadow: 0 4px 14px rgba(0,0,0,0.02);
}

.recent-tx-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.recent-tx-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0;
}

.recent-tx-viewall {
  font-size: 12px;
  font-weight: 700;
  color: #D97706;
  text-decoration: none;
  background: rgba(245, 158, 11, 0.08);
  padding: 5px 10px;
  border-radius: 8px;
}

.tx-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(245, 158, 11, 0.07);
}

.tx-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.tx-icon-circle {
  width: 40px;
  height: 40px;
  background: rgba(34, 197, 94, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22C55E;
  font-size: 16px;
  flex-shrink: 0;
}

.tx-info {
  flex: 1;
  min-width: 0;
}

.tx-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tx-sub {
  font-size: 11px;
  color: var(--text-gray);
  font-weight: 500;
  margin: 2px 0 0;
}

.tx-right {
  text-align: right;
  flex-shrink: 0;
}

.tx-amount {
  font-size: 14px;
  font-weight: 800;
  color: #22C55E;
  margin: 0;
}

.tx-status {
  font-size: 10px;
  font-weight: 700;
  color: #22C55E;
  background: rgba(34, 197, 94, 0.12);
  padding: 2px 8px;
  border-radius: 6px;
  display: inline-block;
  margin-top: 3px;
}

/* ===================================================
   BOTTOM NAVIGATION (PREMIUM)
   =================================================== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  height: 72px;
  background: #FBBF24;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 8px;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
  z-index: 5000;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  cursor: pointer;
  color: #1E293B;
  text-decoration: none;
  flex: 1;
  position: relative;
  padding: 8px 0;
  border-radius: 14px;
  transition: color 0.2s ease;
}

.nav-item i {
  font-size: 20px;
  transition: color 0.2s ease, transform 0.2s ease;
  position: relative;
  z-index: 1;
}

.nav-item span {
  font-size: 10px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.nav-item.active {
  color: #FFFFFF;
}

.nav-item.active i {
  color: #FFFFFF;
  transform: translateY(-1px);
}

.nav-active-pill {
  display: none !important;
}

.nav-item:not(.active) .nav-active-pill {
  display: none;
}

/* ===================================================
   FLOATING SUPPORT BUTTON PULSE
   =================================================== */
#floatingSupport {
  animation: supportPulseGlow 2.5s ease-in-out infinite;
}

@keyframes supportPulseGlow {
  0%, 100% { box-shadow: 0 8px 25px rgba(245, 158, 11, 0.45); }
  50% { box-shadow: 0 8px 35px rgba(245, 158, 11, 0.7), 0 0 0 8px rgba(245, 158, 11, 0.1); }
}

/* ===================================================
   CARD FADE-UP ANIMATION
   =================================================== */
.card-fadein {
  animation: cardFadeUp 0.55s ease-out both;
}

@keyframes cardFadeUp {
  0% { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Stagger delays for cards */
.reward-banner-card { animation-delay: 0.05s; }
.price-card-new { animation-delay: 0.1s; }
.more-grid { animation-delay: 0.15s; }
.recent-tx-card { animation-delay: 0.2s; }

/* ===================================================
   RESPONSIVE OVERRIDES
   =================================================== */
@media (max-width: 360px) {
  :root {
    --page-px: 12px;
    --gap-card: 11px;
  }
  .balance-amount { font-size: 24px; }
  .action-icon-circle { width: 56px; height: 56px; }
  .action-icon-circle i { font-size: 20px; }
  .action-item span { font-size: 10px; }
  .greeting-text { font-size: 15px; }
}

@media (min-width: 430px) {
  .action-icon-circle { width: 68px; height: 68px; }
}

/* ===================================================
   UTILITY: NO HORIZONTAL SCROLL GUARD
   =================================================== */
* {
  max-width: 100%;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}
