/* 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 {
  --red-1: #EF2956;
  --red-2: #F54863;
  --red-3: #FF6A6A;

  --gradient-red: linear-gradient(
    90deg,
    #EF2956 0%,
    #F54863 50%,
    #FF6A6A 100%
  );

  --gradient-banner: linear-gradient(
    135deg,
    #F02252 0%,
    #F84C68 45%,
    #FF7B72 100%
  );

  --primary-purple: #EF2956;
  --deep-blue: #F54863;
  --neon-purple: #FF6A6A;
  --text-dark: #111827;
  --text-gray: #6B7280;
  --card-white: rgba(255, 255, 255, 0.96);
  --border-purple: rgba(255, 30, 60, 0.18);
  --shadow-card: inset 0 0 12px rgba(255, 30, 60, 0.05), 0 4px 16px rgba(0, 0, 0, 0.03);
  --shadow-card-hover: inset 0 0 14px rgba(255, 30, 60, 0.08), 0 8px 24px rgba(0, 0, 0, 0.06);
  --radius-card: 22px;
  --radius-large: 28px;
  --gap-card: 14px;
  --page-px: 16px;
}

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

.app-container, .scrollable-content {
  background: #FFFFFF !important;
  background-color: #FFFFFF !important;
  background-image: none !important;
}

/* ===================================================
   DECORATIVE BACKGROUND BLOBS (DISABLED FOR PURE WHITE BG)
   =================================================== */
.bg-blob {
  display: none !important;
}

.bg-blob-mid {
  width: 300px;
  height: 200px;
  background: rgba(255, 230, 234, 0.15);
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
}

/* ===================================================
   STICKY TOP HEADER
   =================================================== */
.sticky-top-header {
  position: sticky;
  top: 0;
  z-index: 2000;
  background: transparent;
}

/* ===================================================
   ANNOUNCEMENT BAR
   =================================================== */
.announcement-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px var(--page-px) 0;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  padding: 10px 14px;
  border: 1.5px solid var(--border-purple);
  box-shadow: 0 2px 12px rgba(255, 26, 64, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.announcement-icon-box {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: #ffffff !important;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E2E8F0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.announcement-icon-box i {
  color: #FF1A40 !important;
  font-size: 13px;
}

.announcement-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: #FF1A40;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255, 26, 64, 0.2);
  animation: announceDotPulse 2s ease-in-out infinite;
}

@keyframes announceDotPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255, 26, 64, 0.2); }
  50% { box-shadow: 0 0 0 6px rgba(255, 26, 64, 0.08); }
}

/* ===================================================
   GREETING CARD (Image 1 Red Gradient Pill)
   =================================================== */
.greeting-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px var(--page-px) 0;
  background: var(--gradient-red) !important;
  border-radius: 20px !important;
  padding: 10px 14px !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
}

.greeting-text {
  font-size: clamp(15px, 4.5vw, 18px);
  font-weight: 700;
  color: #FFFFFF !important;
  margin: 0;
  letter-spacing: -0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 65%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.greeting-text .sound-badge-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF1A40;
  font-size: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.greeting-number {
  color: #FFFFFF !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  font-weight: 700;
}

.greeting-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.icon-action-btn {
  width: 36px;
  height: 36px;
  background: #FFFFFF !important;
  border: none !important;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  position: relative;
  color: #FF1A40 !important;
  font-size: 14px;
}

.icon-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

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

.notif-dot {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 8px;
  height: 8px;
  background: #FF1A40;
  border-radius: 50%;
  border: 1.5px solid white;
  animation: notifDotPulse 1.8s ease-in-out infinite;
}

@keyframes notifDotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 26, 64, 0.5); }
  50% { box-shadow: 0 0 0 4px rgba(255, 26, 64, 0); }
}

/* ===================================================
   BALANCE CARD
   =================================================== */
.balance-card-home {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px var(--page-px) 0;
  background: #FFF5F7 !important;
  border-radius: var(--radius-large);
  padding: 18px 20px;
  border: 1.5px solid rgba(255, 30, 60, 0.22) !important;
  box-shadow: inset 0 0 14px rgba(255, 30, 60, 0.06), 0 4px 16px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(10px);
}

.balance-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.balance-label {
  font-size: 12px;
  color: var(--text-gray);
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.3px;
}

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

.balance-coin-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
}

.balance-amount {
  font-size: clamp(26px, 7vw, 34px);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -1px;
  line-height: 1;
}

.bill-details-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #FF3B5C 0%, #FF1A40 100%);
  color: white !important;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(255, 26, 64, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  flex-shrink: 0;
}

.bill-details-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 26, 64, 0.45);
}

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

/* ===================================================
   STATS ROW
   =================================================== */
/* Combined Single Card for Today Orders & Today Reward (Image Reference) */
.stats-single-card-combined {
  background: #FFFFFF !important;
  border-radius: 24px;
  padding: 16px 20px;
  margin: 10px var(--page-px) 0;
  border: 1.5px solid rgba(255, 30, 60, 0.12) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-combined-col {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-combined-info {
  display: flex;
  flex-direction: column;
}

.stat-combined-divider {
  width: 1px;
  height: 48px;
  background: #E2E8F0;
  margin: 0 14px;
  flex-shrink: 0;
}

.stat-mini-card {
  flex: 1;
  background: #FFF5F7 !important;
  border-radius: var(--radius-card);
  padding: 14px 14px 8px;
  border: 1.5px solid rgba(255, 30, 60, 0.22) !important;
  box-shadow: inset 0 0 14px rgba(255, 30, 60, 0.06), 0 4px 16px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease;
}

.stat-mini-card:hover {
  transform: translateY(-2px);
}

.stat-mini-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.stat-mini-title {
  font-size: 11px;
  color: var(--text-gray);
  font-weight: 600;
  line-height: 1.3;
}

.stat-mini-sub {
  font-size: 9px;
  font-weight: 500;
  color: #9CA3AF;
}

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

.stat-mini-body {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.stat-mini-icon {
  width: 34px;
  height: 34px;
  background: #FFE6EA;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF1A40;
  font-size: 14px;
  flex-shrink: 0;
}

.stat-mini-rs {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}

.stat-mini-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.stat-mini-wave {
  height: 24px;
  margin: 0 -14px -8px;
}

.stat-mini-wave svg {
  width: 100%;
  height: 100%;
}

/* ===================================================
   ACTION CARDS ROW (Buy xCoin & Sell xCoin - Image 1)
   =================================================== */
.action-cards-row {
  display: flex;
  gap: var(--gap-card);
  padding: 10px var(--page-px) 0;
}

.action-card-item {
  flex: 1;
  background: #FFF5F7 !important;
  border-radius: var(--radius-card);
  padding: 14px;
  border: 1.5px solid rgba(255, 30, 60, 0.22) !important;
  box-shadow: inset 0 0 14px rgba(255, 30, 60, 0.06), 0 4px 16px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: transform 0.18s ease;
  text-decoration: none;
}

.action-card-item:hover {
  transform: translateY(-2px);
}

.action-icon-circle-pink {
  width: 42px;
  height: 42px;
  background: #FFE6EA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF1A40;
  font-size: 18px;
  flex-shrink: 0;
}

.action-text-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-left: 8px;
  flex: 1;
}

.action-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-dark);
}

.action-sub {
  font-size: 10px;
  color: var(--text-gray);
  font-weight: 500;
}

.action-arrow-circle {
  width: 24px;
  height: 24px;
  background: #FF1A40;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 10px;
  flex-shrink: 0;
}

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

/* ===================================================
   REWARD BANNER CARD (Image 1 Red Gradient Banner)
   =================================================== */
.reward-banner-card.red-banner-bg {
  background: var(--gradient-banner) !important;
  border-radius: var(--radius-large);
  padding: 20px 18px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  margin: 14px 0;
  position: relative;
  overflow: hidden;
}

.view-offers-btn {
  background: #FFFFFF;
  color: #FF1A40 !important;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  white-space: nowrap;
}

.reward-banner-pct-red {
  font-size: clamp(36px, 10vw, 46px);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: -2px;
}

.reward-banner-text-white {
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  max-width: 120px;
  line-height: 1.3;
}

/* ===================================================
   PRIORITY NOTICE CARD (Image 1)
   =================================================== */
.priority-notice-card {
  background: #FFF5F7 !important;
  border-radius: var(--radius-card);
  padding: 14px 16px;
  border: 1.5px solid rgba(255, 30, 60, 0.22) !important;
  box-shadow: inset 0 0 14px rgba(255, 30, 60, 0.06), 0 4px 16px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 14px 0;
}

.priority-icon-circle {
  width: 42px;
  height: 42px;
  background: #FFE6EA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF1A40;
  font-size: 20px;
  flex-shrink: 0;
}

.priority-text-col {
  flex: 1;
  margin: 0 10px;
}

.priority-title {
  font-size: 11px;
  font-weight: 800;
  color: #FF1A40;
  text-transform: uppercase;
  margin: 0 0 2px;
  letter-spacing: 0.3px;
}

.priority-sub {
  font-size: 11px;
  color: var(--text-gray);
  font-weight: 500;
  margin: 0;
  line-height: 1.3;
}

.learn-more-btn {
  background: #FFF5F7;
  color: #FF1A40 !important;
  border: 1px solid rgba(255, 26, 64, 0.3);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none !important;
  white-space: nowrap;
}

/* ===================================================
   PRICE CARD (Image 1)
   =================================================== */
.price-card-new {
  background: #FFFFFF !important;
  border-radius: var(--radius-card);
  padding: 18px 20px;
  border: 1.5px solid rgba(255, 30, 60, 0.14) !important;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--gap-card);
}

.price-col {
  flex: 1;
}

.price-col-right {
  text-align: right;
}

.price-col-label {
  font-size: 11px;
  color: var(--text-gray);
  font-weight: 600;
  margin: 0 0 6px;
  letter-spacing: 0.1px;
}

.price-col-val {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 6px;
  letter-spacing: -0.5px;
}

.price-col-underline {
  height: 3px;
  width: 36px;
  background: linear-gradient(90deg, #FF3B5C, #FF1A40);
  border-radius: 2px;
}

.price-col-right .price-col-underline {
  margin-left: auto;
}

.price-col-center {
  flex-shrink: 0;
  margin: 0 12px;
}

.price-trend-circle {
  width: 46px;
  height: 46px;
  background: #FFE6EA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF1A40;
  font-size: 18px;
  border: 1.5px solid rgba(255, 26, 64, 0.15);
}

/* ===================================================
   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: #FF1A40 !important;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 3px;
}

/* ===================================================
   PROFIT INFO CARD (existing, enhanced)
   =================================================== */
.profit-info-card {
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius-card);
  padding: 20px;
  border: 1.5px solid var(--border-purple);
  box-shadow: var(--shadow-card);
  margin-bottom: var(--gap-card);
  text-align: center;
}

.profit-percentage {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, #4F46E5, #A855F7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -1px;
}

.profit-text {
  font-size: 13px;
  color: var(--text-gray);
  font-weight: 600;
}

.price-comparison {
  display: flex;
  justify-content: space-around;
  margin-top: 12px;
  gap: 10px;
}

.price-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.price-label {
  font-size: 11px;
  color: var(--text-gray);
  font-weight: 600;
  text-align: center;
}

.price-val {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
}

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

.more-card {
  background: #F1F5F9 !important;
  border-radius: 20px;
  padding: 18px 16px;
  border: 1.5px solid #E2E8F0 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  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: var(--shadow-card-hover);
}

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

.more-card-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, rgba(108,59,255,0.12), rgba(155,92,255,0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-purple);
  font-size: 22px;
  border: 1.5px solid rgba(108, 59, 255, 0.15);
  flex-shrink: 0;
}

/* ===================================================
   RECENT TRANSACTIONS CARD
   =================================================== */
.recent-tx-card {
  background: #F1F5F9 !important;
  border-radius: var(--radius-large);
  padding: 18px 18px;
  border: 1.5px solid #E2E8F0 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.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: var(--primary-purple);
  text-decoration: none;
  background: rgba(108, 59, 255, 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(108, 59, 255, 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: rgba(255, 255, 255, 0.97);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 8px;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  border-top: 1.5px solid rgba(108, 59, 255, 0.1);
  box-shadow: 0 -4px 24px rgba(108, 59, 255, 0.1);
  z-index: 1000;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  cursor: pointer;
  color: var(--text-gray);
  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: 600;
  position: relative;
  z-index: 1;
}

.nav-item.active {
  color: var(--primary-purple);
}

.nav-item.active i {
  color: var(--primary-purple);
  transform: translateY(-1px);
}

.nav-active-pill {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 44px;
  background: rgba(108, 59, 255, 0.1);
  border-radius: 14px;
  z-index: 0;
}

.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(108, 59, 255, 0.45); }
  50% { box-shadow: 0 8px 35px rgba(108, 59, 255, 0.7), 0 0 0 8px rgba(108, 59, 255, 0.1); }
}

/* ===================================================
   CARD FADE-UP ANIMATION
   =================================================== */
.card-fadein {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

/* ===================================================
   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%;
}

/* Floating Red Customer Support Circle Button (Image Reference) */
.floating-support-btn {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #FF3B5C 0%, #FF1A40 100%);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  position: fixed;
  bottom: 82px;
  right: 20px;
  z-index: 2500;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

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