/* css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --primary: #06B6D4;
  --secondary: #7C3AED;
  --accent: #2563EB;
  --cyan: #00C6FF;
  --gradient: linear-gradient(135deg, #00C6FF 0%, #06B6D4 30%, #2563EB 65%, #7C3AED 100%);
  --bg: rgb(248, 250, 252);
  /* Default fallback */
  --card: #FFFFFF;
  --success: #22C55E;
  --danger: #EF4444;
  --text-dark: #1E1B4B;
  --text-gray: #6B7280;
  --shadow: 0 4px 20px rgba(6, 182, 212, 0.15);
  --radius: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, rgba(0, 198, 255, 0.06) 0%, rgba(6, 182, 212, 0.06) 35%, rgba(37, 99, 235, 0.06) 70%, rgba(124, 58, 237, 0.06) 100%);
  background-attachment: fixed;
  color: var(--text-dark);
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  box-sizing: border-box;
  padding-bottom: calc(75px + env(safe-area-inset-bottom, 0px));
}

h1,
h2,
h3 {
  font-weight: 700;
}

/* GPU Acceleration & Instant Click/Tap Response */
a, button, .grid-item, .nav-item, .order-card-new, .action-btn, .btn-finish-auth, .btn-add-cash-pill {
  touch-action: manipulation;
  transition: transform 0.1s cubic-bezier(0, 0, 0.2, 1), opacity 0.1s ease;
}

button:active, .action-btn:active, .btn-finish-auth:active, .hdr-circle-btn:active {
  transform: scale(0.97) translateZ(0);
  opacity: 0.92;
}

.moving-chart-wave, .moving-mini-wave-svg, .bell-ringing-anim, .float-anim {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.main-header {
  background: var(--gradient);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  position: sticky;
  top: 0;
  z-index: 2000;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
}

.main-header .logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-header .logo-area i {
  font-size: 24px;
}

.main-header .app-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
}

.main-header .header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.main-header .header-right i {
  font-size: 20px;
  cursor: pointer;
}

/* Auth Pages */
.auth-container {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: white;
}

.auth-header {
  text-align: center;
  margin-bottom: 40px;
}

.auth-header h1 {
  font-size: 32px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.auth-card {
  width: 100%;
  background: white;
  padding: 24px;
  border-radius: var(--radius);
}

.auth-card h2 {
  font-size: 24px;
  margin-bottom: 24px;
  text-align: center;
}

.input-group {
  margin-bottom: 20px;
  position: relative;
}

.input-group i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-gray);
  font-size: 20px;
}

.input-group .toggle-password {
  position: absolute;
  left: auto;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-gray);
  cursor: pointer;
  font-size: 20px;
}

/* Purchase Page Redesign (Match Screenshot) */
.order-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: #F8FAFC;
}

.order-card-new {
  background: white;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #F1F5F9;
}

.order-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.order-amount-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.currency-circle {
  width: 44px;
  height: 44px;
  background: #F5F3FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
}

.amount-text-main {
  font-size: 18px;
  font-weight: 700;
  color: #1E1B4B;
}

.bank-tag {
  background: #EEF2FF;
  color: var(--primary);
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 4px;
  display: inline-block;
}

.order-buy-btn {
  background: rgb(139, 92, 246);
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.order-card-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 8px;
}

.info-col-label {
  font-size: 11px;
  color: var(--text-gray);
  margin-bottom: 4px;
}

.info-col-value {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
  color: #1E1B4B;
}

.info-col-sub {
  font-size: 11px;
  color: #6B7280;
  font-weight: 500;
}

.coin-icon-small {
  width: 14px;
  height: 14px;
  color: #FBBF24;
}

/* Order Cards */
.order-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  padding: 16px;
}

.order-card {
  background: white;
  border-radius: 24px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #F1F5F9;
  position: relative;
  transition: transform 0.2s;
}

.order-card:active {
  transform: scale(0.95);
}

.order-card .amount {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.order-card .reward {
  font-size: 13px;
  color: var(--success);
  font-weight: 600;
  margin-bottom: 4px;
}

.order-card .bonus-text {
  font-size: 11px;
  color: var(--text-gray);
  margin-bottom: 12px;
}

.order-card .diamond {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.order-card .qty-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #F3F4F6;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  color: var(--text-gray);
  font-weight: 600;
}

/* UPI Popup */
/* Redesigned UPI Selection Popup Modal */
.upi-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  justify-content: center;
  align-items: flex-end;
  z-index: 4000;
  animation: fadeInModal 0.25s ease-out;
}

@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}

.upi-popup {
  background: #FFFFFF;
  width: 100%;
  max-width: 440px;
  border-radius: 32px 32px 0 0;
  padding: 24px 22px 28px;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
  animation: slideUpModal 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
}

@keyframes slideUpModal {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.upi-popup-handle {
  width: 44px;
  height: 5px;
  background: #CBD5E1;
  border-radius: 100px;
  margin: -6px auto 16px;
}

.upi-popup-title {
  font-size: 20px;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 6px 0;
  letter-spacing: -0.3px;
}

.upi-popup-sub {
  font-size: 13px;
  color: #64748B;
  margin: 0 0 18px 0;
  font-weight: 500;
  line-height: 1.4;
}

.upi-selection-scroll {
  max-height: 280px;
  overflow-y: auto;
  padding: 2px;
  margin-bottom: 12px;
}

.upi-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 18px;
  background: #F8FAFC;
  margin-bottom: 10px;
  cursor: pointer;
  border: 2px solid #E2E8F0;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.upi-item:hover {
  background: #F1F5F9;
  border-color: #CBD5E1;
}

.upi-item.selected {
  border-color: #06B6D4;
  background: #F0FDFA;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.12);
}

.upi-item-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.upi-app-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: contain;
  background: white;
  padding: 4px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.upi-id-info {
  display: flex;
  flex-direction: column;
}

.upi-app-name {
  font-size: 14px;
  font-weight: 700;
  color: #0F172A;
}

.upi-id-label {
  font-size: 12px;
  color: #64748B;
  font-weight: 500;
  margin-top: 2px;
}

.radio-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #CBD5E1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.upi-item.selected .radio-circle {
  border-color: #06B6D4;
  background: #06B6D4;
}

.upi-item.selected .radio-circle::after {
  content: '✓';
  color: white;
  font-size: 12px;
  font-weight: 900;
}

/* Empty UPI State in Modal */
.empty-upi-modal {
  text-align: center;
  padding: 24px 16px;
  background: #F8FAFC;
  border-radius: 20px;
  border: 1.5px dashed #CBD5E1;
  margin-bottom: 15px;
}

.empty-upi-icon-sq {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(37, 99, 235, 0.15));
  color: #0284C7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 12px;
}

.empty-upi-title {
  font-size: 15px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 4px;
}

.empty-upi-sub {
  font-size: 12px;
  color: #64748B;
  margin-bottom: 16px;
  line-height: 1.4;
}

.empty-upi-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #00C6FF 0%, #06B6D4 30%, #2563EB 70%, #7C3AED 100%);
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 100px;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
  transition: transform 0.2s ease;
}

.empty-upi-btn:hover {
  transform: translateY(-2px);
}

.upi-popup-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.btn-popup-cancel {
  flex: 1;
  height: 50px;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  color: #64748B;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-popup-cancel:hover {
  background: #E2E8F0;
}

.btn-popup-confirm {
  flex: 1.2;
  height: 50px;
  background: linear-gradient(135deg, #00C6FF 0%, #06B6D4 30%, #2563EB 70%, #7C3AED 100%);
  border: none;
  border-radius: 14px;
  color: white;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-popup-confirm:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.45);
}

.input-field {
  width: 100%;
  border: 1.5px solid #E5E7EB;
  border-radius: 12px;
  padding: 14px 16px 14px 48px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: all 0.3s;
}

.input-field:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.input-container .input-field,
.input-container .input-field:focus {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  background: transparent !important;
}

.btn-gradient {
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: transform 0.2s, opacity 0.2s;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-gradient:active {
  transform: scale(0.98);
}

.auth-footer {
  margin-top: 24px;
  text-align: center;
  color: var(--text-gray);
  font-size: 14px;
}

.auth-footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

/* Bottom Nav */
/* Bottom Nav - Responsive Docked Bottom */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  height: 65px;
  background: #FFFFFF !important;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 6px;
  padding-bottom: max(env(safe-area-inset-bottom, 0px), 6px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
  border-top: 1px solid #E2E8F0;
  z-index: 9999;
  overflow: visible;
  box-sizing: border-box;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  cursor: pointer;
  color: #94A3B8;
  text-decoration: none;
  flex: 1;
  min-width: 0;
  position: relative;
  transition: color 0.2s ease;
  padding: 6px 0;
}

.nav-item i {
  font-size: 20px;
  transition: color 0.2s ease;
}

.nav-item span {
  font-size: 11px;
  font-weight: 600;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-item.active {
  color: var(--primary);
}

.nav-item.active i {
  color: var(--primary);
  font-size: 20px;
  transform: none;
  text-shadow: none;
}

.nav-item.active span {
  color: var(--primary);
  font-weight: 700;
}

/* Profile Page Styles */
.profile-header-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  margin: 15px 16px 20px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  width: auto;
  max-width: 100%;
  min-height: 100px;
  box-sizing: border-box;
}

.avatar-img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 3px solid #E2E8F0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  object-fit: cover;
  flex-shrink: 0;
}

.balance-card-premium {
  background: linear-gradient(135deg, #00C6FF 0%, #06B6D4 35%, #2563EB 70%, #7C3AED 100%);
  margin: 15px 16px 20px;
  padding: 18px 16px;
  border-radius: 20px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(6, 182, 212, 0.35);
  width: auto;
  max-width: 100%;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.detail-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 600;
  backdrop-filter: blur(5px);
  white-space: nowrap;
}

.today-earnings {
  background: rgba(255, 255, 255, 0.15);
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  backdrop-filter: blur(10px);
}

.withdraw-section {
  background: linear-gradient(135deg, #00C6FF 0%, #06B6D4 35%, #2563EB 70%, #7C3AED 100%);
  margin: 0 16px 15px;
  padding: 16px;
  border-radius: 24px;
  box-shadow: 0 10px 25px rgba(6, 182, 212, 0.35);
  width: auto;
  max-width: 100%;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  position: relative;
  box-sizing: border-box;
}

.withdraw-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.withdraw-label-pill {
  background: rgba(255, 255, 255, 0.15);
  padding: 4px 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.withdraw-section #pendingWithdraw {
  color: white !important;
}

.withdraw-section .stat-lab {
  color: rgba(255, 255, 255, 0.9) !important;
}

.withdraw-section .stat-val {
  color: white !important;
}

.withdraw-section .withdraw-stats {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.manage-btn {
  background: #F5F3FF;
  color: rgb(139, 92, 246);
  border: 1px solid #DDD6FE;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
}

.withdraw-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: #F8FAFC;
  padding: 10px 12px;
  border-radius: 15px;
}

.stat-box {
  text-align: center;
}

.stat-lab {
  font-size: 12px;
  color: #64748B;
  margin-bottom: 4px;
}

.stat-val {
  font-size: 16px;
  font-weight: 700;
  color: #1E293B;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 0 20px;
  margin-bottom: 30px;
}

.grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #1E293B;
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle img {
  width: 32px;
  height: 32px;
}

.grid-item span {
  font-size: 13px;
  font-weight: 600;
}

.other-functions {
  background: white;
  margin: 0 16px 100px;
  padding: 24px 16px;
  border-radius: 24px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
  border: 1px solid #F1F5F9;
}

.func-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 8px;
  align-items: start;
}

.func-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
}

.func-item svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.func-item img {
  width: 28px;
  height: 28px;
}

.func-item i {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.func-item span {
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  text-align: center;
  line-height: 1.25;
}

/* Team Page Styles */
.team-stats-card {
  background: white;
  margin: 20px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 20px;
  overflow: hidden;
}

.header-stats {
  background: #EEF2FF;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 20px;
}

.team-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: center;
}

.big-val {
  font-size: 14px;
  color: #64748B;
  margin-bottom: 5px;
}

.big-num {
  font-size: 22px;
  font-weight: 800;
  color: #1E293B;
}

.invite-box {
  background: white;
  margin: 0 20px 20px;
  padding: 20px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.copy-input {
  background: #F1F5F9;
  border-radius: 30px;
  padding: 5px 5px 5px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.team-detail-card {
  background: white;
  margin: 0 20px 100px;
  padding: 24px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.social-grid {
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  margin-bottom: 30px;
}

.social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #64748B;
}

.social-item i {
  font-size: 36px;
}

.tool-fab-container {
  position: relative;
  top: -20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tool-fab {
  width: 48px;
  height: 48px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4), 0 0 12px rgba(16, 185, 129, 0.3);
  margin-bottom: 4px;
  text-decoration: none;
  filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.2));
}

/* Layout Parts */
.app-container {
  padding-bottom: 100px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
}

.section-header h2 {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.section-header .see-all {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

/* Home Components */
.banner-slider {
  padding: 0 16px;
  margin-bottom: 20px;
}

.banner-card {
  width: 100%;
  height: 140px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.banner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.selling-status {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  margin: 0 16px 16px;
  padding: 12px 16px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked+.slider {
  background-color: var(--success);
}

input:checked+.slider:before {
  transform: translateX(24px);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 16px 20px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  padding: 12px 14px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  position: relative;
  background: transparent !important;
}

.stat-icon::before {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  filter: blur(8px);
  z-index: 0;
}

.stat-icon img,
.stat-icon i {
  position: relative;
  z-index: 1;
}

.purchase-card {
  background: white !important;
  color: var(--text-dark) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.purchase-card .label {
  color: var(--text-gray) !important;
}

.sell-card {
  background: white !important;
  color: var(--text-dark) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.sell-card .label {
  color: var(--text-gray) !important;
}

.stat-info .value {
  font-weight: 700;
  font-size: 14px;
}

.stat-info .label {
  font-size: 10px;
  color: var(--text-gray);
}

.reward-card {
  background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
  color: white;
  margin: 0 16px 20px;
  padding: 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 15px rgba(14, 165, 233, 0.2), 0 0 10px rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.price-card {
  background: linear-gradient(135deg, #c9c494 0%, #aa8c05 100%);
  margin: 0 16px 20px;
  padding: 16px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Tabs */
.tab-bar {
  display: flex;
  background: white;
  position: sticky;
  top: 0;
  z-index: 100;
}

.tab {
  flex: 1;
  padding: 16px;
  text-align: center;
  font-weight: 600;
  color: var(--text-gray);
  cursor: pointer;
  border-bottom: 3px solid transparent;
}

.tab.active {
  color: var(--text-dark);
  border-bottom-color: var(--primary);
}

/* Floating Support - Responsive Anchor */
#supportBtn {
  position: fixed;
  bottom: calc(75px + env(safe-area-inset-bottom, 0px) + 16px);
  right: max(16px, calc((100vw - 480px) / 2 + 16px));
  width: 48px;
  height: 48px;
  background: transparent;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9998;
  cursor: grab;
  transition: transform 0.2s;
  touch-action: none;
}

#supportBtn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Utils */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-primary {
  color: var(--primary);
}

.text-success {
  color: var(--success);
}

.text-danger {
  color: var(--danger);
}

.mt-2 {
  margin-top: 8px;
}

.mb-2 {
  margin-bottom: 8px;
}

/* Loader */
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(108, 62, 244, 0.15);
  border-top: 4px solid #6C3EF4;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  box-shadow: 0 0 15px rgba(108, 62, 244, 0.1);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Custom Popup */
.custom-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 24px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  width: min(320px, calc(100vw - 28px));
  max-width: 90%;
  box-sizing: border-box;
  text-align: center;
  display: none;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.custom-popup p {
  margin-bottom: 20px;
  font-weight: 500;
  color: var(--text-dark);
}

.custom-popup button {
  background: var(--gradient);
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

/* Global Warning Ticker */
.warning-ticker {
  background: white;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 4000;
  position: relative;
  overflow: hidden;
}

.welcome-marquee {
  color: #EF4444;
  /* Red text */
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
  display: inline-block;
  padding-left: 100%;
  animation: marquee-scroll 10s linear infinite;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.fixed-top-section {
  position: relative;
  width: 100%;
  z-index: 100;
  background: white;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.scrollable-content {
  padding-bottom: 100px;
  overflow-y: auto;
}

.main-header-new {
  top: 0 !important;
  /* Override previous sticky behavior */
  animation: none !important;
  /* User wants it stable now */
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Splash Screen Loader */
.splash-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #09090b 0%, #17171e 100%);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.splash-logo-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.splash-text {
  font-size: 40px;
  font-weight: 900;
  color: white;
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.8), 0 0 40px rgba(16, 185, 129, 0.4);
  animation: textGlow 1.5s ease-in-out infinite alternate;
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.splash-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid #6C3EF4;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
}

@keyframes textGlow {
  from {
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.5), 0 0 20px rgba(16, 185, 129, 0.3);
  }

  to {
    text-shadow: 0 0 25px rgba(16, 185, 129, 1), 0 0 50px rgba(16, 185, 129, 0.8), 0 0 70px rgba(16, 185, 129, 0.6);
  }
}

.splash-hidden {
  opacity: 0;
  visibility: hidden;
}

/* --- NEW HOME DASHBOARD STYLES --- */
.main-header-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: white;
  position: sticky;
  top: -60px;
  /* Hidden initially for animation */
  z-index: 2000;
  animation: slideHeaderDown 0.6s ease forwards;
}

@keyframes slideHeaderDown {
  from {
    top: -60px;
  }

  to {
    top: 0;
  }
}

.user-greeting h1 {
  font-size: 20px;
  font-weight: 800;
  color: #1E293B;
}

.header-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.header-actions i {
  font-size: 18px;
  color: #1E293B;
  cursor: pointer;
}

.top-dashboard {
  background: white;
  padding: 10px 20px 20px;
  margin-bottom: 20px;
}

.balance-label {
  font-size: 13px;
  color: #94A3B8;
  font-weight: 500;
  margin-bottom: 5px;
}

.balance-main {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
}

.balance-main .coin-icon {
  width: 32px;
  height: 32px;
}

.balance-value {
  font-size: 36px;
  font-weight: 800;
  color: #1E293B;
}

.bill-details-btn {
  margin-left: auto;
  border: 1px solid rgb(139, 92, 246);
  color: rgb(139, 92, 246);
  background: white;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat-box-new {
  background: #F0FDF4;
  padding: 12px 15px;
  border-radius: 12px;
}

.stat-box-new .stat-label {
  font-size: 11px;
  color: #64748B;
  font-weight: 500;
  margin-bottom: 8px;
}

.stat-box-new .est {
  color: #94A3B8;
}

.stat-value-container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #1E293B;
}

.stat-value-container i {
  font-size: 14px;
  color: #1E293B;
}

.stat-value-container .currency {
  font-size: 14px;
  margin-right: 2px;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0 20px;
  margin-bottom: 25px;
}

.action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.action-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(139, 92, 246);
  color: white;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}

.action-item span {
  font-size: 12px;
  font-weight: 500;
  color: #64748B;
}

.home-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  margin-bottom: 12px;
}

.home-section-header h2 {
  font-size: 15px;
  font-weight: 800;
  color: #1E293B;
}

.home-section-header .learn-how {
  font-size: 11px;
  color: rgb(139, 92, 246);
  text-decoration: underline;
}

.home-section-header .go-link {
  font-size: 11px;
  font-weight: 700;
  color: rgb(139, 92, 246);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.profit-info-card {
  background: white;
  margin: 0 20px 20px;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  text-align: center;
}

.profit-percentage {
  font-size: 32px;
  font-weight: 900;
  color: rgb(139, 92, 246);
  font-style: italic;
  margin-bottom: 10px;
  display: block;
}

.profit-text {
  font-size: 14px;
  font-weight: 700;
  color: #1E293B;
}

.price-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #F1F5F9;
}

.price-box {
  text-align: center;
}

.price-box:first-child {
  border-right: 1px solid #F1F5F9;
}

.price-label {
  font-size: 10px;
  color: #94A3B8;
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
}

.price-val {
  font-size: 20px;
  font-weight: 900;
  color: #1E293B;
}

.more-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  padding: 0 20px;
  margin-top: 15px;
}

.more-card {
  background: white;
  padding: 15px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.more-card i {
  font-size: 28px;
  color: rgb(139, 92, 246);
}

/* Animations */
.nav-item i {
  transition: transform 0.3s;
}

.nav-item:active i {
  transform: translateY(-5px);
}

.splash-title-premium {
  animation: fadeInDown 0.8s ease backwards;
}

/* Premium Ticker Styles */
.warning-ticker {
  background: white;
  padding: 10px 18px;
  display: none;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  border-bottom: 1px solid #f1f5f9;
  z-index: 10;
}

.ticker-content {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.ticker-icon {
  font-size: 16px;
  flex-shrink: 0;
  color: #EF4444;
  animation: pulseTicker 1.5s infinite;
}

@keyframes pulseTicker {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

.welcome-marquee {
  font-size: 13px;
  font-weight: 600;
  color: #64748B;
}

.ticker-text {
  font-size: 13px;
  font-weight: 800;
  color: #EF4444;
  animation: tickerScroll 20s linear infinite;
  padding-left: 100%;
  display: inline-block;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@keyframes pulse-red {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

/* Premium Animated Bharat Pay Loader Overlay (Matching Image Reference) */
/* Premium Animated Bharat Pay Loader Overlay (Matching Image Reference) */
.loader-overlay.splash-screen {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 50%, #F0F9FF 100%) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    position: fixed;
    inset: 0;
    font-family: 'Poppins', 'Outfit', sans-serif;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.splash-animation-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

/* Outer Orbit Circle */
.splash-orbit-outer {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px dashed rgba(139, 92, 246, 0.4);
    border-radius: 50%;
    animation: rotateOuter 12s linear infinite;
}

/* Inner Tilted Orbit Ring */
.splash-orbit-inner {
    position: absolute;
    width: 170px;
    height: 170px;
    border: 1.5px dashed rgba(14, 165, 233, 0.5);
    border-radius: 50%;
    transform: rotateX(65deg) rotateY(-20deg);
    animation: rotateInner 8s linear infinite reverse;
}

/* Floating Sparkle Stars */
.sparkle {
    position: absolute;
    color: #0284C7;
    font-size: 15px;
    animation: sparkleGlow 1.5s ease-in-out infinite alternate;
}
.sparkle-1 { top: 10px; right: 35px; color: #8B5CF6; }
.sparkle-2 { bottom: 20px; left: 25px; color: #00C6FF; font-size: 16px; }
.sparkle-3 { top: 15px; left: 25px; color: #6366F1; font-size: 13px; }

@keyframes sparkleGlow {
    0% { transform: scale(0.8); opacity: 0.6; }
    100% { transform: scale(1.3); opacity: 1; text-shadow: 0 0 12px rgba(2, 132, 199, 0.8); }
}

@keyframes rotateOuter {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes rotateInner {
    0% { transform: rotateX(65deg) rotateY(-20deg) rotate(0deg); }
    100% { transform: rotateX(65deg) rotateY(-20deg) rotate(360deg); }
}

/* Center Squircle Logo Card */
.splash-logo-card {
    width: 96px;
    height: 96px;
    border-radius: 26px;
    background: #FFFFFF;
    box-shadow: 0 16px 40px rgba(2, 132, 199, 0.16), 0 0 25px rgba(139, 92, 246, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
    padding: 10px;
    overflow: hidden;
    animation: logoFloat 3s infinite ease-in-out;
}

.splash-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 18px;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-6px) scale(1.03); }
}

/* Title & Subtitle */
.splash-brand-title {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #00C6FF 0%, #0284C7 40%, #4F46E5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    margin: 0 0 6px 0;
    text-align: center;
}

.splash-subtitle {
    font-size: 11.5px;
    font-weight: 800;
    color: #64748B;
    letter-spacing: 3.5px;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
}

/* Progress Bar Container */
.splash-progress-container {
    width: 80%;
    max-width: 240px;
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.splash-progress-bar {
    width: 100%;
    height: 6px;
    background: #E2E8F0;
    border-radius: 100px;
    overflow: hidden;
    position: relative;
}

.splash-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #00C6FF 0%, #0284C7 50%, #2563EB 100%);
    box-shadow: 0 0 10px rgba(2, 132, 199, 0.5);
    border-radius: 100px;
    animation: splashFillProgress 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes splashFillProgress {
    0% { width: 0%; margin-left: 0; }
    50% { width: 70%; margin-left: 15%; }
    100% { width: 100%; margin-left: 0; }
}

.splash-loading-text {
    font-size: 10.5px;
    font-weight: 800;
    color: #94A3B8;
    letter-spacing: 2px;
    margin-top: 14px;
    text-transform: uppercase;
    animation: textPulse 1.5s infinite alternate ease-in-out;
}

/* Image 2 Exact UI Redesign Styles */
.top-ticker-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 8px 16px;
  border-radius: 50px;
  margin: 10px 16px 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
  border: 1px solid #F1F5F9;
}

.speaker-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F5F3FF;
  border: 1px solid #DDD6FE;
  color: #4F46E5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}

.user-greeting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  margin-bottom: 16px;
}

.user-greeting-txt {
  font-size: 22px;
  font-weight: 800;
  color: #1E1B4B;
  margin: 0;
}

.user-greeting-txt span {
  color: #4F46E5;
}

.hdr-badges-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hdr-btn-badge {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  border: 1px solid #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  font-size: 18px;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  transition: transform 0.2s;
}

.hdr-btn-badge:active {
  transform: scale(0.95);
}

.hdr-btn-badge .red-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8B5CF6;
  border: 1.5px solid white;
}

/* xCoin Balance Card */
.xcoin-card {
  background: white;
  border-radius: 24px;
  padding: 20px 22px;
  margin: 0 16px 16px;
  box-shadow: 0 6px 25px rgba(79, 70, 229, 0.05);
  border: 1px solid #F1F5F9;
}

.xcoin-lbl {
  font-size: 13px;
  font-weight: 600;
  color: #64748B;
  margin-bottom: 8px;
}

.xcoin-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.xcoin-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.xcoin-val {
  font-size: 32px;
  font-weight: 800;
  color: #1E1B4B;
}

/* Coin Icon Soft Natural Tint matching mix theme */
img[src*="coin-43"], .coin-yellow-icon, .xcoin-left img {
  filter: drop-shadow(0 2px 8px rgba(6, 182, 212, 0.25)) brightness(1.05) !important;
}

.bill-details-pill {
  background: linear-gradient(135deg, #00C6FF 0%, #06B6D4 35%, #2563EB 70%, #7C3AED 100%);
  color: white;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

/* Stats 2 Cards */
.stats-cards-row {
  display: flex;
  gap: 12px;
  padding: 0 16px;
  margin-bottom: 16px;
}

.stat-card-item {
  flex: 1;
  background: white;
  border-radius: 20px;
  padding: 12px 14px 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  border: 1px solid #F1F5F9;
  position: relative;
  overflow: hidden;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.stat-card-hdr {
  font-size: 12px;
  font-weight: 600;
  color: #64748B;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.stat-card-body {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.stat-icon-sq {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #F3F0FF;
  color: #6366F1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.stat-num-val {
  font-size: 20px;
  font-weight: 800;
  color: #1E1B4B;
}

.mini-wavy-curve {
  width: 100%;
  height: 20px;
  display: block;
}

/* 4 Big Circular Gradient Buttons */
.four-actions-card {
  background: white;
  border-radius: 24px;
  padding: 20px 16px;
  margin: 0 16px 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  border: 1px solid #F1F5F9;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.big-act-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #1E1B4B;
}

.big-act-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00C6FF 0%, #06B6D4 35%, #2563EB 70%, #7C3AED 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.35);
  transition: transform 0.2s;
}

.big-act-btn:active .big-act-circle {
  transform: scale(0.95);
}

.big-act-btn span {
  font-size: 13px;
  font-weight: 700;
}

/* Reward Card */
.reward-card-new {
  background: white;
  border-radius: 24px;
  padding: 18px 20px;
  margin: 0 16px 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  border: 1px solid #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reward-card-left {
  flex: 1;
}

.reward-card-txt {
  font-size: 15px;
  font-weight: 600;
  color: #475569;
  line-height: 1.4;
}

.reward-card-txt .highlight-perc {
  font-size: 32px;
  font-weight: 900;
  color: #4F46E5;
  margin-right: 4px;
}

.pagin-dots {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}

.dot-item {
  width: 14px;
  height: 4px;
  border-radius: 4px;
  background: #E2E8F0;
}

.dot-item.active {
  background: #4F46E5;
}

.gift-sq-badge {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: #F5F3FF;
  color: #7C3AED;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  flex-shrink: 0;
}

/* Price Comparison Card with MOVING LIVE GRAPH */
.price-comp-card {
  background: white;
  border-radius: 24px;
  padding: 20px;
  margin: 0 16px 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  border: 1px solid #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-item-col {
  flex: 1;
}

.price-item-lbl {
  font-size: 11px;
  font-weight: 600;
  color: #64748B;
  margin-bottom: 4px;
}

.price-item-val {
  font-size: 22px;
  font-weight: 800;
  color: #1E1B4B;
  margin-bottom: 6px;
}

.purple-bar-line {
  height: 3.5px;
  width: 40px;
  border-radius: 4px;
  background: #4F46E5;
}

/* MOVING LIVE GRAPH BADGE (100% Seamless Continuous Infinite Wave) */
.live-moving-graph-box {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.12);
}

.live-graph-track {
  width: 400px;
  height: 38px;
  position: absolute;
  left: 0;
  top: 6px;
  display: flex;
  align-items: center;
}

.moving-chart-wave {
  width: 400px;
  height: 38px;
  animation: endlessWaveScroll 7s linear infinite;
}

@keyframes endlessWaveScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-200px); }
}

/* Buy Rupee Card */
.rupee-buy-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  margin-bottom: 10px;
}

.rupee-buy-hdr h2 {
  font-size: 15px;
  font-weight: 800;
  color: #1E1B4B;
  margin: 0;
}

.rupee-card-body {
  background: white;
  border-radius: 24px;
  padding: 20px;
  margin: 0 16px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  border: 1px solid #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.rupee-perc-large {
  font-size: 32px;
  font-weight: 900;
  color: #4F46E5;
}

/* Header Action Badges Unique Colors & Animations */
.badge-download {
  background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 100%) !important;
  color: #0284C7 !important;
  border: 1px solid #7DD3FC !important;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.15);
}

.badge-bell {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%) !important;
  color: #D97706 !important;
  border: 1px solid #FCD34D !important;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.15);
}

.badge-edit {
  background: linear-gradient(135deg, #F3F0FF 0%, #DDD6FE 100%) !important;
  color: #7C3AED !important;
  border: 1px solid #C4B5FD !important;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.15);
}

/* Bell Ringing / Swinging Animation ("ghanti hilti rahe") */
@keyframes ringBellAnim {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(18deg); }
  20% { transform: rotate(-16deg); }
  30% { transform: rotate(12deg); }
  40% { transform: rotate(-8deg); }
  50% { transform: rotate(4deg); }
  60% { transform: rotate(0deg); }
}

.bell-ringing-anim {
  display: inline-block;
  transform-origin: top center;
  animation: ringBellAnim 1.8s ease-in-out infinite;
}

/* Floating / Bouncing Icon Animations ("dono icons hilte rahe") */
@keyframes floatIconAnim {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.08); }
  100% { transform: translateY(0) scale(1); }
}

.float-anim {
  animation: floatIconAnim 2.2s ease-in-out infinite;
}

.float-anim-alt {
  animation: floatIconAnim 2.2s ease-in-out infinite 0.6s;
}

@keyframes lightApkBounce {
  0%, 100% { transform: translateY(0); box-shadow: 0 4px 15px rgba(6, 182, 212, 0.2); }
  50% { transform: translateY(-4px); box-shadow: 0 8px 22px rgba(6, 182, 212, 0.4); }
}

.pulse-anim {
  animation: lightApkBounce 2.6s ease-in-out infinite;
}

/* Stats Cards Colorful Icon Badges */
.icon-green-badge {
  background: linear-gradient(135deg, #DCFCE7 0%, #BBF7D0 100%) !important;
  color: #10B981 !important;
  border: 1px solid #86EFAC;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.2);
}

.icon-red-badge {
  background: linear-gradient(135deg, #FFE4E6 0%, #FECDD3 100%) !important;
  color: #F43F5E !important;
  border: 1px solid #FDA4AF;
  box-shadow: 0 4px 14px rgba(244, 63, 94, 0.2);
}

/* Mini Wavy Line 100% Seamless Endless Motion & Green-Red Gradient */
.mini-wavy-container {
  width: 100%;
  height: 24px;
  overflow: hidden;
  position: relative;
  margin-top: 4px;
}

.mini-wavy-track {
  width: 500px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
}

.moving-mini-wave-svg {
  width: 500px;
  height: 24px;
  animation: endlessMiniWave 7s linear infinite;
}

@keyframes endlessMiniWave {
  0% { transform: translateX(0); }
  100% { transform: translateX(-200px); }
}

/* Home Page Tutorials & FAQ Accordion Section */
.tutorials-home-section {
  padding: 0 16px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.tutorials-sec-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.tutorials-sec-title {
  font-size: 16px;
  font-weight: 800;
  color: #1E293B;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tutorials-sec-title i {
  color: #06B6D4;
}

.faq-accordion-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-acc-item {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #F1F5F9;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-acc-item.active {
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: 0 4px 18px rgba(6, 182, 212, 0.1);
}

.faq-acc-header {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  background: #FFFFFF;
  transition: background 0.2s ease;
  gap: 10px;
}

.faq-acc-header:hover {
  background: #F8FAFC;
}

.faq-acc-q-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.faq-q-num {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(37, 99, 235, 0.15));
  color: #0284C7;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-q-text {
  font-size: 13.5px;
  font-weight: 700;
  color: #1E293B;
  line-height: 1.4;
}

.faq-acc-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #F1F5F9;
  color: #64748B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.faq-acc-item.active .faq-acc-icon {
  transform: rotate(180deg);
  background: #06B6D4;
  color: white;
}

.faq-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  background: #F8FAFC;
  padding: 0 16px;
}

.faq-acc-item.active .faq-acc-body {
  max-height: 380px;
  padding: 12px 16px 16px;
  border-top: 1px dashed #E2E8F0;
}

.faq-ans-text {
  font-size: 12.5px;
  color: #475569;
  line-height: 1.6;
  font-weight: 500;
}

.faq-ans-steps {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.faq-step-pill {
  font-size: 11.5px;
  color: #0F172A;
  background: white;
  padding: 5px 10px;
  border-radius: 8px;
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.faq-step-pill i {
  color: #10B981;
  font-size: 10px;
}

@keyframes textPulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; color: #64748B; }
}

/* ========================================================
   HOME PAGE MODERN V2 TOP UI (EXACT MATCH TO USER REFERENCE)
   ======================================================== */

/* 1. Top Notice Capsule Bar */
.top-notice-capsule {
  background: #EEF2FF;
  border: 1.5px solid #E0E7FF;
  border-radius: 100px;
  padding: 6px 12px 6px 6px;
  margin: 0 16px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.04);
  box-sizing: border-box;
}

.notice-capsule-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #E0E7FF;
  color: #6366F1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

/* 2. User Greeting Row V2 */
.user-greeting-row-v2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  margin-bottom: 14px;
  gap: 10px;
  box-sizing: border-box;
}

.greeting-user-title {
  font-size: clamp(14px, 4.2vw, 16.5px);
  font-weight: 800;
  color: #0F172A;
  margin: 0;
  letter-spacing: -0.2px;
  line-height: 1.25;
  word-break: break-word;
}

.greeting-sub-text {
  font-size: clamp(11.5px, 3.2vw, 13px);
  color: #64748B;
  font-weight: 600;
  margin: 2px 0 0 0;
}

.hdr-action-circles {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.hdr-circle-btn {
  width: clamp(38px, 10.5vw, 44px);
  height: clamp(38px, 10.5vw, 44px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(15px, 4vw, 18px);
  text-decoration: none;
  position: relative;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.hdr-circle-btn:active {
  transform: scale(0.92);
}

.btn-apk-dl {
  background: #E0F2FE;
  color: #0284C7;
  border: 1.5px solid #BAE6FD;
}

.btn-bell-notify {
  background: #FEF3C7;
  color: #D97706;
  border: 1.5px solid #FDE68A;
  cursor: pointer;
}

.red-dot-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 9px;
  height: 9px;
  background: #EF4444;
  border: 2px solid white;
  border-radius: 50%;
}

/* 3. Main Balance Card V2 (Purple & Light Purple RGB Gradient) */
.main-balance-card-v2 {
  background: linear-gradient(135deg, rgb(109, 40, 217) 0%, rgb(147, 51, 234) 55%, rgb(192, 132, 252) 100%);
  border-radius: 22px;
  padding: 14px 14px;
  margin: 0 16px 14px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.35);
  box-sizing: border-box;
}

.balance-card-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  gap: 8px;
  width: 100%;
}

.wallet-3d-visual {
  width: clamp(38px, 10.5vw, 46px);
  height: clamp(36px, 9.5vw, 42px);
  flex-shrink: 0;
}

.wallet-svg-graphic {
  width: 100%;
  height: 100%;
  display: block;
}

.balance-info-left {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.balance-label-txt {
  font-size: 11.5px;
  font-weight: 600;
  opacity: 0.92;
  display: block;
  margin-bottom: 2px;
}

.balance-amount-display {
  font-size: clamp(16.5px, 5.2vw, 21px);
  font-weight: 900;
  letter-spacing: -0.3px;
  line-height: 1.15;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.balance-amount-display .currency-symbol {
  font-size: 17px;
  margin-right: 1px;
}

.balance-avail-txt {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.85;
  display: block;
  margin-top: 2px;
}

.btn-add-cash-pill {
  background: white;
  color: #7C3AED;
  font-weight: 800;
  font-size: clamp(10.5px, 3vw, 12px);
  padding: 7px 11px;
  border-radius: 100px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  flex-shrink: 0;
  white-space: nowrap;
  transition: transform 0.2s;
}

.btn-add-cash-pill:active {
  transform: scale(0.95);
}

/* 4. Stats Row V2 */
.stats-row-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 16px 14px;
}

.stat-box-v2 {
  border-radius: 18px;
  padding: 8px 10px 4px;
  min-height: 88px;
  height: auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
  border: 1.5px solid #F1F5F9;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.stat-orders-box {
  background: #FFFFFF;
  border: 1.5px solid #F1F5F9;
}

.stat-income-box {
  background: #FFFFFF;
  border: 1.5px solid #F1F5F9;
}

.stat-box-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}

.stat-box-hdr span {
  font-size: clamp(10.5px, 3vw, 11.5px);
  font-weight: 700;
  color: #1E293B;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stat-arrow-circle {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  flex-shrink: 0;
}

.green-arrow {
  background: #DCFCE7;
  color: #16A34A;
}

.red-arrow {
  background: #FFE4E6;
  color: #E11D48;
}

.stat-box-mid {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.stat-icon-sq-v2 {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.green-icon {
  background: #DCFCE7;
  color: #16A34A;
}

.red-icon {
  background: #FFE4E6;
  color: #E11D48;
}

.stat-val-v2 {
  font-size: clamp(15px, 4.8vw, 18px);
  font-weight: 900;
  color: #0F172A;
  letter-spacing: -0.5px;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stat-wave-wrap {
  width: 100%;
  height: 12px;
  margin-top: auto;
}

.stat-wave-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* 5. Four Action Buttons V2 */
.four-actions-card-v2 {
  background: white;
  border: 1.5px solid #F1F5F9;
  border-radius: 20px;
  padding: 10px 6px;
  margin: 0 16px 12px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  box-sizing: border-box;
}

.action-item-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: #1E1B4B;
  flex: 1;
  min-width: 0;
}

.action-circle-v2 {
  width: clamp(38px, 11vw, 44px);
  height: clamp(38px, 11vw, 44px);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(14px, 4vw, 17px);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.action-item-v2:active .action-circle-v2 {
  transform: scale(0.92);
}

.circle-buy {
  background: linear-gradient(135deg, #7C3AED 0%, #6366F1 100%);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.35);
}

.circle-sell {
  background: linear-gradient(135deg, #0284C7 0%, #06B6D4 100%);
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.35);
}

.circle-earn {
  background: linear-gradient(135deg, #0D9488 0%, #14B8A6 100%);
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.35);
}

.circle-support {
  background: linear-gradient(135deg, #F59E0B 0%, #EA580C 100%);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.35);
}

.action-item-v2 span {
  font-size: clamp(9.5px, 2.8vw, 11.5px);
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

/* 6. Campaign Banner V2 */
.campaign-card-v2 {
  background: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 100%);
  border: 1.5px solid #DDD6FE;
  border-radius: 20px;
  padding: 12px 14px;
  margin: 0 16px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.05);
  box-sizing: border-box;
  gap: 8px;
}

.campaign-tag {
  font-size: 11.5px;
  font-weight: 700;
  color: #6D28D9;
  display: block;
  margin-bottom: 2px;
}

.campaign-rate-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.campaign-rate-val {
  font-size: clamp(18px, 5.5vw, 24px);
  font-weight: 900;
  color: #4F46E5;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.campaign-sub-txt {
  font-size: clamp(10px, 2.8vw, 11px);
  font-weight: 600;
  color: #6B7280;
  line-height: 1.25;
}

.campaign-progress-bar {
  width: 75px;
  height: 4px;
  background: #E0E7FF;
  border-radius: 100px;
  margin-top: 6px;
  overflow: hidden;
}

.campaign-progress-fill {
  width: 45%;
  height: 100%;
  background: #6366F1;
  border-radius: 100px;
}

.campaign-gift-wrap {
  position: relative;
  width: clamp(42px, 12vw, 52px);
  height: clamp(42px, 12vw, 52px);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gift-box-3d-svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 6px 12px rgba(109, 40, 217, 0.22));
}

.gift-sparkle {
  position: absolute;
  color: #C4B5FD;
  font-size: 10px;
  user-select: none;
}

.sp-1 { top: -2px; right: 6px; }
.sp-2 { top: 12px; right: -4px; font-size: 8px; }
.sp-3 { bottom: 8px; left: -5px; }

/* 7. Price Comparison V2 */
.price-comp-card-v2 {
  background: white;
  border: 1.5px solid #F1F5F9;
  border-radius: 20px;
  padding: 12px 14px;
  margin: 0 16px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  box-sizing: border-box;
}

.price-col-v2 {
  flex: 1;
  min-width: 0;
}

.price-col-v2.align-right {
  text-align: right;
}

.price-col-label {
  font-size: 11px;
  font-weight: 700;
  color: #6366F1;
  display: block;
}

.price-col-value {
  font-size: clamp(15px, 4.8vw, 18px);
  font-weight: 900;
  color: #0F172A;
  margin: 2px 0 4px;
  letter-spacing: -0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.price-trend-tag {
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 100px;
  display: inline-block;
}

.tag-green {
  background: #DCFCE7;
  color: #16A34A;
}

.tag-red {
  background: #FEE2E2;
  color: #EF4444;
}

.center-money-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #F0FDF4;
  border: 1.5px solid #BBF7D0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #16A34A;
  box-shadow: 0 3px 10px rgba(22, 163, 74, 0.12);
  flex-shrink: 0;
  margin: 0 8px;
}

/* ========================================================
   TUTORIALS V2 SECTION (EXACT TO REFERENCE SCREENSHOT)
   ======================================================== */
.tutorials-home-section-v2 {
  padding: 0 16px 20px;
  margin-top: 10px;
}

.tutorials-header-v2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.tutorials-hdr-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 800;
  color: #0F172A;
}

.tutorials-learn-more {
  color: #6366F1;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
}

.tutorial-card-v2 {
  background: white;
  border: 1px solid #F1F5F9;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  cursor: pointer;
  transition: all 0.2s ease;
}

.tutorial-card-v2:hover {
  border-color: #CBD5E1;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.tutorial-card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.tutorial-card-left {
  flex: 1;
}

.tutorial-date-tag {
  font-size: 12px;
  color: #64748B;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.tutorial-title-txt {
  font-size: 14.5px;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.35;
}

.tutorial-view-btn {
  border: 1.5px solid #6366F1;
  color: #6366F1;
  background: white;
  padding: 6px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s;
}

.tutorial-card-v2.active .tutorial-view-btn {
  background: #6366F1;
  color: white;
}

.tutorial-answer-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), margin-top 0.3s ease;
}

.tutorial-card-v2.active .tutorial-answer-dropdown {
  max-height: 400px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed #E2E8F0;
}

.tutorial-ans-inner {
  font-size: 12.5px;
  color: #475569;
  line-height: 1.6;
  font-weight: 500;
}

/* ── Splash Screen (Loader Overlay) ────────────────────────── */
.splash-screen {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.splash-animation-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.splash-logo-card {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  background: white;
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1.5px solid #F1F5F9;
  z-index: 2;
}

.splash-logo-img {
  width: 68px !important;
  height: 68px !important;
  border-radius: 16px;
  object-fit: contain;
  display: block;
}

.splash-brand-title {
  font-size: 24px;
  font-weight: 900;
  color: #0F172A;
  letter-spacing: 0.5px;
  margin: 0 0 4px;
}

.splash-subtitle {
  font-size: 11.5px;
  font-weight: 700;
  color: #64748B;
  letter-spacing: 1.5px;
  margin: 0 0 24px;
}

.splash-progress-container {
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.splash-progress-bar {
  width: 100%;
  height: 4px;
  background: #E2E8F0;
  border-radius: 100px;
  overflow: hidden;
}

.splash-progress-fill {
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, #00C6FF, #2563EB);
  border-radius: 100px;
  animation: splashFill 1.5s infinite ease-in-out;
}

@keyframes splashFill {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(250%); }
}

.splash-loading-text {
  font-size: 10.5px;
  font-weight: 700;
  color: #94A3B8;
  letter-spacing: 0.5px;
}

