
/* ================= GENERAL RESET ================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Strict Integration of Your Colors */
:root {
  --bg-main: #050706;         /* Pure black canvas */
  --text-main: #111827;       /* Crisp white headings */
  --text-muted: #6b7280;      /* Soft gray for details/labels */
  --accent-cyan: #059669;     /* Premium electric cyan */
  --accent-glow: rgba(5, 150, 105, 0.15);
  --border-subtle: #e5e7eb;   /* Input base borders */
  
  /* New Invest Card Variables */
  --bg:#050706;
  --card-grad-1:#0E1411;
  --card-grad-2:#060907;
  --surface:rgba(255,255,255,0.025);
  --hairline:rgba(255,255,255,0.08);
  --hairline-strong:rgba(255,255,255,0.14);
  --white:#F4F7F5;
  --muted:#80948A;
  --green:#00FF88;
  --green-dim:#0ECB71;
  --green-soft:rgba(0,255,136,0.14);
  --green-border:rgba(0,255,136,0.28);
}

/* Global Setup */
* { 
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Base Visibility Logic */
/* ================= PROFESSIONAL RESPONSIVE AUTHENTICATION CONTAINER ================= */
.honda-auth-container {
  display: none !important;
  width: 100%;
  max-width: 440px; /* Perfect width for desktop/tablet cards */
  padding: 24px 16px;
  box-sizing: border-box;
  margin: 0 auto;
}

.honda-auth-container.active {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Premium Card Wrapper with Soft Shadows and Clean Border */
.fieldmark-card {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 48px 36px;
  box-shadow: 0 10px 30px -5px rgba(5, 150, 105, 0.04), 
              0 20px 40px -10px rgba(5, 150, 105, 0.04), 
              0 1px 3px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  transition: all 0.3s ease;
}

/* Form Title & Logo Layout */
.fieldmark-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 36px;
}

.fieldmark-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.fieldmark-logo-shape {
  width: 28px;
  height: 34px;
  background-color: #059669; /* Green Accent Logo */
  clip-path: polygon(0% 25%, 100% 0%, 100% 75%, 50% 100%, 50% 50%, 0% 50%);
  opacity: 0.95;
}

.fieldmark-logo-text {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: green; /* Dark Slate Header Text */
  font-family: 'Inter', sans-serif;
}

.fieldmark-title {
  font-size: 16px;
  font-weight: 500;
  color: #6b7280; /* Soft gray subtitle */
  margin: 0;
  letter-spacing: -0.01em;
}

/* Form Inputs Grid and Spacing */
.fieldmark-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fieldmark-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fieldmark-input-group label {
  font-size: 14px;
  font-weight: 600;
  color: #374151; /* Dark Grey Labels */
}

/* Premium Rounded Input Fields */
.fieldmark-field-box {
  background-color: #f9fafb; /* Light backdrop fill */
  border: 1.5px solid #e5e7eb;   /* Soft border line */
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
}

.fieldmark-field-box:focus-within {
  border-color: #10b981;
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.fieldmark-field-box input {
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  color: #111827;
  font-size: 15px;
  font-family: inherit;
}

.fieldmark-field-box input::placeholder {
  color: #9ca3af;
}

/* Eye Toggle for Password Fields */
.eye-toggle {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0 4px;
  color: #9ca3af;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.eye-toggle:hover {
  color: #059669;
}

.eye-toggle.active {
  color: #059669;
}

/* Action Button styling - Gradient, hover shadow, micro-animations */
.fieldmark-btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.15);
  box-sizing: border-box;
}

.fieldmark-btn-submit:hover {
  filter: brightness(1.05);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.25);
  transform: translateY(-1px);
}

.fieldmark-btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.15);
}

/* Form Footer Navigation */
.fieldmark-switch-action {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
  font-size: 14px;
  color: #6b7280;
}

.fieldmark-link-btn {
  background: transparent;
  border: none;
  color: #059669; /* Branding Green Link */
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s ease;
  padding: 2px 4px;
}

.fieldmark-link-btn:hover {
  color: #047857;
  text-decoration: underline;
}

/* Responsive adjustments for mobile screens */
@media (max-width: 480px) {
  .fieldmark-card {
    padding: 32px 24px;
    border-radius: 20px;
    border: none;
    box-shadow: none;
    background: transparent; /* Seamless on small phones */
  }
  .honda-auth-container {
    padding: 12px;
  }
}

/* Dashboard container */
.dashboard {
  width: 100%;
  max-width: 400px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  margin: 0;
  box-sizing: border-box;
  
  /* UPDATED: Deep Electric Purple Radial Gradient */
  background: #f2f2f2;
  background-attachment: fixed; 
  
  color: #111827;
}


/* ================= DASHBOARD HEADER (ELECTRIC THEME) ================= */
.dashboard-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  height: 70px; /* Adjusted to fit the square buttons comfortably */
  background: #f2f2f2; /* Matches the deep navy from your image */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  z-index: 10000;
  box-sizing: border-box;
  border-bottom: 1px solid #e5e7eb; /* Subtle bottom glow line */
}

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

/* Square-ish Avatar Styling */
.header-avatar {
  width: 50px;
  height: 50px;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.header-avatar img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

/* Electric Vision Text */
.welcome-text {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 700;
}

.text-white { color: #111827; }
.text-cyan { 
  color: var(--accent-cyan); 
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.6); 
}

/* Right Side Action Buttons */
.header-actions {
  display: flex;
  gap: 10px;
}

.action-btn {
  width: 45px;
  height: 45px;
  background: transparent;
  border: 1px solid #e5e7eb;
  border-radius: 12px; /* Rounded square look from image */
  color: var(--accent-cyan);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.action-btn:hover {
  border-color: var(--accent-cyan);
  box-shadow: inset 0 0 10px var(--accent-glow), 0 0 10px var(--accent-glow);
}

/* Ensure FontAwesome icons glow */
.action-btn i {
  filter: drop-shadow(0 0 3px var(--accent-cyan));
}

.user-phone {
  margin: 2px 0 0 0;
  font-size: 15px;
  color: #94a3b8; /* Muted grey for the phone number */
  font-weight: 400;
  letter-spacing: 0.5px;
}
/* Push main content down */
body {
  padding-top: 65px;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

:root {
  --bg-main: #f9fafb;         /* Pure dark canvas */
  --bg-card: #f2f2f2;         /* Deep charcoal container */
  --text-muted: #6b7280;      /* Soft grey */
  --accent-cyan: #059669;     /* Electric cyan */
  --accent-glow: rgba(5, 150, 105, 0.15);
  --border-subtle: #e5e7eb;   /* Flat layout border lines */
}

/* Base structural wrapper sitting natively on your purple/black background */
.main-container {
  width: 100%;
  max-width: 400px; /* Locked to standard compact mobile flow width */
  margin: 0 auto;
  padding: 16px;
  box-sizing: border-box;
  background: transparent; /* No heavy external background container boxes */
}

/* FORCE SINGLE LINE GRID ROW AS SHOWN IN SCREENSHOT */
.action-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Exactly 4 slots in a single clean horizontal line */
  gap: 10px; /* Seamless spacing, not too big */
  width: 100%;
}

/* THE PREMIUM STRUCTURAL FLAT BUTTON CARDS */
.action-card {
  background-color: #fff; /* Perfectly flat, sits raw on the canvas */
  border: 1px solid var(--border-subtle); /* Perfectly clean frame lines precisely like the sample */
  border-radius: 22px; /* Smooth rounded corners as seen in screenshot */
  box-shadow: 0 20px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  gap: 14px;
  aspect-ratio: 1 / 1.35; /* Ensures perfect tall rectangle proportions naturally */
  padding: 12px 6px;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Clean UI Hover and Interactive States */
.action-card:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px var(--accent-glow);
  transform: translateY(-2px);
}

.action-card div{
  /* border: 1px solid red; */
  border-radius: 16px;
  font-size: 22px;
  height: 56px;
  width:56px ;
  align-items: center;
  justify-content: center;
  display: flex;
  margin: 0 auto 12px;
  background-color:  #e8f8f1;
}

.action-card i{
  color: #16b67a;
}

.action-card span {
  color: black;
}

.action-card:active {
  transform: scale(0.95);
}

/* COMPACT VECTOR ICONS (Not too big, exactly matches sample layout) */
.action-icon {
  width: 26px;
  height: 26px;
  transition: transform 0.2s ease;
}

.action-card:hover .action-icon {
  transform: scale(1.08);
}

/* Precise Color Layouts from Screenshot Mapped to Dark Canvas */
.icon-cyan   { color: #10b981; } /* Royal Blue theme precisely from picture */
.icon-green  { color: #10b981; } /* Clean Emerald Green */
.icon-orange { color: #f59e0b; } /* Vivid Tech Gold */
.icon-purple { color: #a855f7; } /* Electric Purple */

/* CRISP BALANCED TYPOGRAPHY (No giant text weights) */
.action-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  letter-spacing: -0.01em;
}

.text-cyan   { color: #10b981; }
.text-green  { color: #34d399; }
.text-orange { color: #fbbf24; }
.text-purple { color: #c084fc; }

/* Desktop scaling optimization without widening the small grid row */
@media (min-width: 576px) {
  .main-container {
    padding: 24px 16px;
  }
  .action-grid {
    gap: 12px;
  }
  .action-text {
    font-size: 14px;
  }
}

/* HEADER INFO (Icon + Title) */
.card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.card-header i {
  font-size: 22px;
}

/* Dynamic Text/Icon Coloring matching the top gradients */
.card-recharge .card-header { color: #ff944d; }
.card-withdraw .card-header { color: #4ade80; }
.card-team .card-header { color: #79a6ff; }
.card-checkin .card-header { color: #c084fc; }

.card-header span {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-align: center;
}

/* THE FUTURISTIC ANGLED BUTTONS */
.tech-btn-wrapper {
  width: 100%;
  padding: 0 4px;
  box-sizing: border-box;
}

.tech-btn {
  width: 100%;
  border: none;
  padding: 8px 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #ffffff;
  cursor: pointer;
  
  /* Creates the signature cyber-cut tech corners */
  clip-path: polygon(10px 0%, calc(100% - 10px) 0%, 100% 30%, 100% 70%, calc(100% - 10px) 100%, 10px 100%, 0% 70%, 0% 30%);
  
  transition: filter 0.2s ease;
}

/* Button Gradients matched to look outstanding against the cards */
.card-recharge .tech-btn {
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
}
.card-withdraw .tech-btn {
  background: linear-gradient(90deg, #00b4db, #0083b0);
}
.card-team .tech-btn {
  background: linear-gradient(90deg, #7f00ff, #e100ff);
}
.card-checkin .tech-btn {
  background: linear-gradient(90deg, #11998e, #38ef7d);
}

.tech-btn:hover {
  filter: brightness(1.2);
}

/* CONTAINER & HEADER */
.features-section {
  padding: 20px;
  background: transparent;
  font-family: sans-serif;
}

.features-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.features-header h2 {
  font-size: 20px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
}

.view-all-link {
  color: #059669; /* Matching Syncox Blue */
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}

/* HORIZONTAL SCROLLING WRAPPER */
.features-scroll-container {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
  /* Hide scrollbar for Chrome/Safari */
  scrollbar-width: none; 
}

.features-scroll-container::-webkit-scrollbar {
  display: none;
}

/* THE CARDS - Optimized for Mobile */
.feature-card {
  flex: 1 1 calc(33.33% - 10px); /* Adjusts to fit 3 cards per row */
  max-width: calc(33.33% - 10px); 
  background: #ffffff;
  border-radius: 15px; /* Slightly smaller radius for mobile */
  padding: 15px 5px;   /* Reduced padding to save space */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  border: 1px solid #f0f0f0;
  box-sizing: border-box;
  margin: 5px; /* Adds breathing room between cards */
}

.feature-title {
  font-size: 18px; /* Scaled down from 22px for mobile */
  font-weight: 800;
  color: #1a1a1a; 
  margin-bottom: 2px;
  text-align: center;
}

/* The 100% Blue Highlight */
.highlight-text {
  color: #059669 !important;
}

.feature-subtitle {
  font-size: 11px; /* Scaled down from 14px */
  font-weight: 600;
  color: #99a1b7; 
  text-align: center;
  white-space: nowrap; /* Prevents text from wrapping ugly */
}

/* ===== LIVE PAYOUT NOTIFICATION ===== */
.live-payout-container {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 12px 16px;
  margin: 16px 16px 8px 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: #e6f4ea; /* Soft green */
  color: #137333; /* Dark green */
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  border: 1px solid rgba(19, 115, 51, 0.15);
  flex-shrink: 0;
}

.live-dot {
  width: 6px;
  height: 6px;
  background-color: #10b981;
  border-radius: 50%;
  animation: live-pulse 1.6s infinite ease-in-out;
}

.payout-ticker {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

#payoutText {
  display: inline-block;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  transform: translateY(0);
}

#payoutText.fade {
  opacity: 0;
  transform: translateY(-8px);
}

@keyframes live-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.25); }
}

/* ===== FLYER CONTAINER ===== */
.flyer-container {
  width: 100%;
  background: transparent;
  margin-top: 16px;
  padding: 0 16px;
  box-sizing: border-box;
}

/* ===== STRUCTURE CARD (The "Fieldmark" Look) ===== */
.balance-flyer {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
  border-radius: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  aspect-ratio: 9 / 10;
  background-color: #111827;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.balance-flyer::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome/Safari */
}

.flyer-slider {
  display: flex;
  width: 100%;
  height: 100%;
}

.flyer-card {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  scroll-snap-align: start;
  flex-shrink: 0;
}

/* Products Header */
.products-header {
  margin-bottom: 12px;
  text-align: left; /* align text to left */
}

.products-header h2 {
  display: inline-block;        
  padding: 6px 16px;            
  font-size: 18px;
  font-weight: bold;
  color: #D4AF37;               /* white text */
  background: #d01e1e;          /* sky blue background */
  border-radius: 50px;          
  font-family: 'Arial Black', 'Helvetica', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;    
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); /* subtle black shadow */
}





.welcome-card {
  background-color: #064e3b; /* SONY-style blue */
  color: #ffffff;
  border-radius: 12px;       
  padding: 30px;             
  margin: 0;                 /* remove side margins */
  width: 100%;               /* full width of container/screen */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}


.welcome-content {
  display: flex;
  flex-direction: column;   /* stack vertically */
  align-items: flex-start;  /* all left aligned */
}

.welcome-text {
  font-size: 16px;           
  font-weight: 300;          
  margin: 0;                 
}

.user-number {
  font-size: 20px;           
  font-weight: 700;          
  margin: 4px 0 0 0;         /* small space below header */
  letter-spacing: 1px;
}


.record-id {
  font-weight: 700;           /* Makes it bold */
  font-family: 'Courier New', Courier, monospace; /* Monospace for numbers */
  color: #000000;                /* Slightly darker for readability */
  background: #f0f0f0;        /* Light grey background badge */
  padding: 2px 6px;           /* Space inside the badge */
  border-radius: 4px;         /* Rounded corners */
  display: inline-block;      /* Keeps the background tight to the text */
  margin-top: 4px;            /* Space from the time above */
  font-size: 11px;            /* Keeps it small but clear */
  letter-spacing: 0.5px;      /* Spacing between numbers */
  user-select: all;           /* Allows user to select full ID with one tap */
}

/* ================= PREMIUM ELECTRIC THEME GROUNDED NAV ================= */
.bottom-nav {
  position: fixed;
  bottom: 0; /* Tied directly to base of viewport with zero floating gaps */
  left: 0;
  width: 100%;
  background: #e8e8e8; /* Dark white background */
  border-top: 1px solid #d0d0d0; /* Subtle light border */
  z-index: 9999;
  box-sizing: border-box;
  padding-bottom: env(safe-area-inset-bottom, 0px); /* Clean layout padding for modern screen tracks */
}

.nav-pill-container {
  width: 100%;
  max-width: 480px; /* Perfect containment profile for high-density rendering screens */
  margin: 0 auto;
  height: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Balanced structural columns allocation */
  align-items: center;
  justify-items: center;
  box-sizing: border-box;
  background: #e8e8e8; /* Dark white - matches nav background */
}

/* ================= NAV ITEMS GRID INTERFACES ================= */
.nav-item {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 4px;
  color: #64748b; /* Clean inactive silver slate tone */
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

/* Vector Framework Wrap Scaling */
.nav-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 28px;
  border-radius: 14px; /* Matches layout pill profile from screen track references */
  transition: none;
}

.nav-icon-wrapper svg {
  width: 22px;
  height: 22px;
}

/* Component Navigation Text Labels */
.nav-label-text {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 0.15s ease;
}

/* ================= THE ELECTRIC CYAN ACTIVE MATRIX ================= */
.nav-item.active {
  /* color: var(--accent-cyan); Glowing Electric Cyan focal reference */
}

.nav-item.active .nav-icon-wrapper {
  /* background: var(--accent-glow); Soft electric neon aura behind active component */
  /* color: var(--accent-cyan); */
}

.nav-item.active .nav-label-text {
  /* color: var(--accent-cyan); Active label text matches indicator color */
  font-weight: 700;
}

/* Clean UI Haptic Pressure Indicator — Removed */


/* ================= THE FIX: AUTOMATIC SCROLL SPACING OFFSET ================= */
/* This rule safely injects extra breathing room at the bottom of your scroll container.
  It dynamically calculates the 64px height of your nav bar, the mobile safe zone, plus extra layout padding.
*/
.profile-scroll-container {
  padding-bottom: calc(90px + env(safe-area-inset-bottom, 0px)) !important;
}

/* Global fall-back: If you have other pages using this navigation track, 
  this class can be added to their main containers to keep items from getting blocked.
*/
.nav-spacer-fix {
  padding-bottom: calc(90px + env(safe-area-inset-bottom, 0px)) !important;
}


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg-main: #f9fafb;         /* Pure absolute black profile canvas background */
  --bg-top-block: #ffffff;    /* Distinct charcoal accent block for upper dashboard section */
  --bg-card: #ffffff;         /* Floating cards background color mapping */
  --text-main: #111827;       /* Solid white header fonts */
  --text-muted: #6b7280;      /* Soft grey list title subtext typography */
  --accent-cyan: #059669;     /* High contrast electric cyan branding accents */
  --border-line: #e5e7eb;     /* Clean border separators */
}

body {
  background-color: var(--bg-main);
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
}

.profile-page {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  box-sizing: border-box;
  background-color: var(--bg-main);
}

/* ===== DISTINCT UPPER DASHBOARD SECTION BLOCK ===== */
.dashboard-top-section {
  background-color: var(--bg-main); /* Premium dark white canvas */
  padding: 28px 16px 32px 16px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ── Keyframes ── */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
@keyframes popIn {
  0%   { opacity: 0; transform: scale(0.7); }
  70%  { transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes borderGlow {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}
@keyframes slideRight {
  from { width: 0; }
  to   { width: 60px; }
}

/* Profile header row containing logo and status */
.profile-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 24px;
}

/* Fieldmark Asset Branding Row */
.profile-brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-geometric-shape {
  width: 18px;
  height: 22px;
  background-color: var(--accent-cyan);
  clip-path: polygon(0% 25%, 100% 0%, 100% 75%, 50% 100%, 50% 50%, 0% 50%);
}

.logo-text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-main);
}

/* Verified Account Status Badge */
.profile-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #e6f4ea; /* Soft light green background */
  color: #137333; /* Readable dark green text */
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(19, 115, 51, 0.15);
}

.status-dot {
  width: 6px;
  height: 6px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
}

/* Circular Avatar Frame Placeholder */
.profile-avatar-container {
  position: relative;
  margin-bottom: 16px;
}

.profile-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background-color: #e5e7eb; /* Dark white placeholder background */
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #eefaf2; /* Soft light green frame ring */
  box-shadow: 0 0 0 1.5px var(--accent-cyan);
}

.profile-avatar i {
  font-size: 32px;
  color: #111827; /* Dark black icon */
}

.profile-verified-badge {
  position: absolute;
  bottom: 2px;
  right: 2px;
  background-color: var(--accent-cyan);
  color: #ffffff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #ffffff;
  font-size: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* User identity meta */
.honda-user-meta h2 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 4px 0;
  letter-spacing: -0.01em;
}

.honda-user-meta p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 24px 0;
}

/* ===== FLOATING SLIM BALANCE CARD ===== */
.honda-main-card {
  background: #111827; /* Solid charcoal/black background */
  border: 1px solid rgba(5, 150, 105, 0.2); /* Light green subtle border */
  border-radius: 20px;
  padding: 24px 20px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.honda-main-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(5, 150, 105, 0.35);
}

.balance-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.honda-label {
  font-size: 12px;
  color: #9ca3af; /* Dark white text */
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.currency-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-cyan);
  background-color: rgba(5, 150, 105, 0.15);
  padding: 2px 8px;
  border-radius: 8px;
}

.honda-amount-row {
  font-size: 32px;
  font-weight: 800;
  color: #10b981; /* Vibrant light green */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-shadow: 0 2px 10px rgba(16, 185, 129, 0.12);
}

/* ===== STREAM TIMELINE CONTAINER ===== */
.profile-scroll-container {
  padding: 20px 16px 40px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-sizing: border-box;
}

/* ===== RE-ENGINEERED BUTTON INTERFACE ===== */
.honda-action-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  margin-top: -8px;
}

.honda-btn-primary, .honda-btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 14px;
  border-radius: 12px; /* Smooth rounded shape base matching original imagery */
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
  border: none;
  color: #ffffff;
}

.honda-btn-primary {
  background-color: #16b67a; /* Royal blue layout profile standard */
}

.honda-btn-outline {
  background-color: #4285f4; //* Premium success variant green text */
}

.honda-btn-primary:active, .honda-btn-outline:active {
  transform: scale(0.97);
}

.btn-icon {
  width: 16px;
  height: 16px;
}

/* ===== HIGH DENSITY LIST SECTIONS ===== */
.settings-group-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #f2f2f2;
  border: 0.5px solid #c0ddc9;
  border-radius: 18px;
  padding: 8px;
  overflow: hidden;
  position: relative;
}

.settings-group-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: #2d5a0e;
  border-radius: 18px 18px 0 0;
}

.settings-group-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  padding-left: 2px;
}

.settings-list-box {
  background-color: var(--bg-card);
  border: 1px solid var(--border-line);
  border-radius: 14px;
  overflow: hidden;
}

.settings-item-link {
  text-decoration: none;
  color: inherit;
}

.settings-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-line);
  cursor: pointer;
  transition: background-color 0.1s ease;
}

.settings-item-row:last-child {
  border-bottom: none;
}

.settings-item-row:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

.item-left-side {
  display: flex;
  align-items: center;
  gap: 12px;
}

.item-left-side i {
  font-size: 15px;
  width: 20px;
  text-align: center;
}

.icon-cyan { color: var(--accent-cyan); }
.icon-red  { color: #ff4d4d; }
.text-red  { color: #ff4d4d !important; }

.item-left-side span {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.chevron-indicator {
  font-size: 11px;
  color: #3b475c;
}

.indicator-red {
  color: rgba(255, 77, 77, 0.3) !important;
}

/* Responsiveness Rules for Wider Desktop Displays */
@media (min-width: 576px) {
  .dashboard-top-section {
    padding: 32px 24px 40px 24px;
  }
  .profile-scroll-container {
    padding: 24px 24px 40px 24px;
    gap: 28px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Strict Integration of Your Brand Theme Colors */
:root {
  --bg-canvas: #f9fafb;       /* Pure black page backdrop */
  --bg-card: #ffffff;         /* Deep premium charcoal black */
  --text-main: #111827;       /* Crisp white for readable headers */
  --text-muted: #6b7280;      /* Soft subtle silver for labels */
  --accent-cyan: #059669;     /* Premium electric cyan highlight */
  --accent-glow: rgba(5, 150, 105, 0.12);
  --border-subtle: #e5e7eb;   /* Flat layout border lines */
}

/* Global Styling Setup Overrides */
.bank-page {
  background-color: var(--bg-canvas);
  min-height: 100vh;
  width: 100%;
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  box-sizing: border-box;
}

/* ==========================================================================
   HEADER ARTIFACTS
   ========================================================================== */
.bank-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  background-color: var(--bg-canvas); /* Flat seamless top sweep */
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
}

.bank-back-btn {
  background: transparent;
  border: none;
  font-size: 18px;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: background 0.2s ease;
  z-index: 2;
}

.bank-back-btn:active {
  background: var(--border-subtle);
}

.bank-header h2 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: -0.01em;
  z-index: 1;
}

/* ==========================================================================
   CONTAINER AND INTERACTION FORM LAYOUTS
   ========================================================================== */
.honda-bank-container {
  width: 100%;
  max-width: 400px; /* Locked to clean compact desktop/mobile container limits */
  margin: 0 auto;
  padding: 80px 16px 40px 16px; /* 80px top shifts down content clean from fixed top header bar */
  box-sizing: border-box;
}

.honda-bank-form {
  width: 100%;
  background-color: var(--bg-card); /* Charcoal card base exactly from picture */
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px; /* Elegant tight spacing layouts */
  box-sizing: border-box;
}

.honda-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.honda-input-label {
  color: var(--text-main);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Form inputs & selection controls styled cleanly to match your brand style */
.honda-bank-form input,
.honda-bank-form select {
  background-color: var(--bg-canvas); /* Inner input area drops to dark backdrop */
  border: 1.5px solid var(--border-subtle);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text-main);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.2s ease;
  -webkit-appearance: none; /* Disables default old mobile styles */
  appearance: none;
}

.honda-bank-form input:focus,
.honda-bank-form select:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-glow);
}

/* Specific styling overrides for read-only dynamic verification lookups */
.honda-bank-form input[readonly] {
  background-color: rgba(33, 38, 45, 0.3);
  color: var(--text-muted);
  border-style: dashed; /* Visual hint for automated API fields */
  cursor: not-allowed;
}

/* Placeholders mapped precisely to screenshot tone */
.honda-bank-form input::placeholder {
  color: #9ca3af;
}

/* Custom dropdown chevron arrow geometry */
.honda-select-wrapper {
  position: relative;
  width: 100%;
}

.honda-select-wrapper::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

/* Centered verification notice style directly above submit action */
.honda-verification-notice {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin: 4px 0;
  font-weight: 400;
}

/* ==========================================================================
   PRIMARY ACTION SUBMIT CONTROLS
   ========================================================================== */
.honda-submit-btn {
  width: 100%;
  background-color: var(--accent-cyan);
  color: #ffffff;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.honda-submit-btn:hover {
  background-color: #00d2ff;
  transform: translateY(-1px);
}

.honda-submit-btn:active {
  transform: translateY(0);
}

/* ==========================================================================
   IMPORTANT PRIVACY/SECURITY INFO CARD AT BOTTOM
   ========================================================================== */
.honda-notice-card {
  background-color: rgba(22, 27, 34, 0.4);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 14px;
  margin-top: 10px;
  box-sizing: border-box;
}

.notice-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.notice-circle {
  width: 15px;
  height: 15px;
  border: 1.5px solid var(--text-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}

.notice-content {
  color: #6b7280;
  font-size: 11px;
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   RESPONSIVENESS DESKTOP OPTIMIZATIONS
   ========================================================================== */
@media (min-width: 576px) {
  .honda-bank-container {
    padding-top: 100px;
  }
  .honda-bank-form {
    padding: 32px 24px;
  }
}



.recharge-header-fixed {
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 15px;
}

.recharge-header-fixed h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: #111827;
}

.recharge-page-container {
  padding: 0 16px 20px 16px;
  max-width: 500px;
  margin: 0 auto;
}

/* Base Card Elements */
.payment-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 20px;
  margin-top: 10px;
  border: 1px solid #e5e7eb;
}

.card-header-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Individual Data Row Panels */
.info-row {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 14px 18px;
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-col {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.info-label {
  color: #6b7280;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.info-value {
  color: #10b981; 
  font-weight: 700;
  font-size: 1.05rem;
}

/* Dynamic Rounded Copy Buttons */
.copy-icon-btn {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  color: #10b981;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Banner Indicator Display */
.amount-banner {
  background: #f9fafb; 
  color: #111827;
  border-radius: 16px;
  padding: 16px;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
  margin: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: 1px solid #e5e7eb;
}

.amount-banner span {
  font-size: 1.2rem;
  color: #10b981;
}

/* Styled Alert Sub-Box Notification Box */
.warning-alert-box-amber {
  background: #fffbeb;
  border: 0.5px solid #fde68a;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.warning-alert-box-amber::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: #f59e0b;
}

.alert-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.alert-item i {
  color: #fbbf24;
  font-size: 0.9rem;
  margin-top: 3px;
}

.alert-item p {
  color: #fde68a;
  font-size: 0.82rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

/* Input Styles */
.input-label {
  display: block;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 600;
  color: #9ca3af;
  margin: 16px 0 6px 2px;
}

.payment-input {
  width: 100%;
  background: #f9fafb;
  border: 1px solid #d1d5db;
  padding: 14px;
  border-radius: 14px;
  outline: none;
  font-size: 0.9rem;
  color: #111827;
  box-sizing: border-box;
}

.payment-input:focus {
  border-color: #10b981;
}

.expiry-text {
  color: #6b7280;
  font-size: 0.78rem;
  margin-top: 20px;
  text-align: center;
  line-height: 1.4;
}

/* Luxury Interactive UI Buttons */
.primary-gradient-btn {
  background: linear-gradient(90deg, #064e3b, #022c22);
  color: #111827;
  border: none;
  width: 100%;
  padding: 16px;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 20px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.change-amount-btn {
  background: transparent;
  color: #111827;
  border: 2px solid #1c2333;
  width: 100%;
  padding: 14px;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 12px;
  cursor: pointer;
}

/* Bottom Technical Help Info Wrapper Box */
.help-box {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 18px;
  margin-top: 25px;
}

.help-box h4 {
  color: #111827;
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 0.92rem;
}

.help-box p {
  color: #6b7280;
  font-size: 0.78rem;
  line-height: 1.5;
  margin: 0;
}


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* High-Contrast Luxury Component System Variables */
:root {
  --bg-main: #f9fafb;         /* Pure dark canvas base */
  --bg-card: #ffffff;         /* Sleek charcoal black container surfaces */
  --text-main: #111827;       /* Crisp white titles */
  --text-muted: #6b7280;      /* Elegant muted grey for text notes */
  --accent-cyan: #059669;     /* Premium electric cyan accent highlight */
  --accent-glow: rgba(5, 150, 105, 0.12);
  --border-subtle: #e5e7eb;   /* Super-clean framing lines */
}

/* 1. REMOVE 'min-height: 100vh' so the page can expand naturally */
.recharge-page {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-main);
  /* Change min-height to height: auto to allow scrolling */
  height: auto; 
  min-height: 100%;
  width: 100%;
  color: var(--text-main);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  /* Ensure the body itself doesn't lock scroll */
  overflow-y: auto; 
}

.recharge-page-container {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  
  /* Use padding to create the space, not height constraints */
  padding: 85px 16px 80px 16px; 
  
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 20px;
  
  /* THIS IS THE CHANGE: Use height: auto instead of 100vh */
  height: auto; 
  /* This ensures it can grow, but doesn't force a height that clips content */
  min-height: calc(100vh - 165px); 
}

/* ===== EXTREMELY CLEAN FIXED HEADER SWEEP ===== */
.recharge-header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 65px;
  background-color: var(--bg-main);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  box-sizing: border-box;
  z-index: 1000;
}

.recharge-header-fixed h2 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: -0.01em;
  margin: 0;
}

.recharge-back-btn-v2, .recharge-history-btn {
  background: transparent;
  border: none;
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 8px;
  transition: opacity 0.2s;
}

.recharge-back-btn-v2:active, .recharge-history-btn:active {
  opacity: 0.5;
}



/* ===== NATIVE AVAILABLE BALANCE CARD ===== */
.balance-display-card {
  width: 100%;
  background: transparent; /* No floating cards, flat directly onto canvas background */
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.balance-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.balance-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

/* ===== THE INPUT CONTAINER BLOCK ===== */
.recharge-card {
  width: 100%;
  background-color: var(--bg-card); /* Charcoal black container base layer */
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 24px 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.recharge-card .section-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 12px;
  text-align: left;
}

.recharge-card .label-note {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

.recharge-card .section-label.centered {
  margin-top: 24px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--text-muted);
}

/* ===== CUSTOM TEXT AMOUNT FIELD BOX ===== */
.custom-amount-wrapper {
  background-color: var(--bg-main); /* Flips inward to dark canvas for maximum input contrast */
  border: 1.5px solid var(--border-subtle);
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 16px;
  transition: all 0.2s ease;
}

.custom-amount-wrapper:focus-within {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 12px var(--accent-glow);
}

.currency-icon {
  color: var(--accent-cyan);
  font-size: 18px;
  font-weight: 700;
  margin-right: 12px;
}

#customAmount {
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 16px;
  font-family: inherit;
  font-weight: 500;
  outline: none;
  width: 100%;
}

#customAmount::placeholder {
  color: #9ca3af;
}

/* ===== BALANCED GRID GRID SYSTEM ===== */
.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Exactly 3 columns side by side perfectly proportioned */
  gap: 10px;
  width: 100%;
}

.amount-option {
  background-color: var(--bg-main); /* Native charcoal option frame backdrops */
  border: 1px solid var(--border-subtle);
  padding: 14px 4px;
  border-radius: 10px;
  text-align: center;
  color: var(--text-main);
  font-weight: 600;
  font-size: 13.5px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.amount-option:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.amount-option:active {
  background-color: var(--accent-cyan);
  color: #ffffff;
  transform: scale(0.95);
}

/* ===== FLAT EXTREMELY VIBRANT ACTION BUTTON ===== */
.deposit-btn {
  width: 100%;
  background-color: var(--accent-cyan);
  color: #ffffff;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 28px;
  transition: all 0.2s ease;
}

.deposit-btn:hover {
  background-color: #00d2ff;
}

.deposit-btn:active {
  transform: scale(0.97);
}

/* ===== IMPORTANT OPERATIONAL RULES INFO BLOCK ===== */
.info-guidelines-box {
  width: 100%;
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 20px 16px;
  box-sizing: border-box;
}

.info-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-cyan);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.info-icon {
  width: 16px;
  height: 16px;
  background-color: var(--accent-cyan);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  margin-top: 2px;
  flex-shrink: 0;
}

.info-list p {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

/* High-resolution desktop media query system optimizer */
@media (min-width: 576px) {
  .recharge-page-container {
    gap: 24px;
  }
  .recharge-card {
    padding: 28px 24px;
  }
  .amount-grid {
    gap: 12px;
  }
}

.fintech-toast {
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  font-family: Inter, sans-serif;
}

/* ===== PREMIUM CENTER FLOATING POPUP OVERLAY ===== */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center; /* Centered layout placement */
  background: rgba(17, 24, 39, 0.65); /* Modern deep translucent dark background */
  backdrop-filter: blur(10px); 
  -webkit-backdrop-filter: blur(10px); 
  z-index: 10000;
  padding: 24px;
  box-sizing: border-box;
}

/* ===== HIGH END FLOATING CONTAINER - MODERN PREMIUM LIGHT THEME ===== */
.mx-unique-modal {
  width: 100%;
  max-width: 380px; 
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 28px; /* High-end rounded corners */
  padding: 44px 24px 28px 24px;
  text-align: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  position: relative;
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.12),
              0 1px 3px rgba(0, 0, 0, 0.02);
  box-sizing: border-box;
  animation: popInModal 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes popInModal {
  0% { transform: scale(0.88) translateY(12px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* Absolute Corner Close Button */
.mx-close-x-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f9fafb; 
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.mx-close-x-btn:hover {
  background: #f3f4f6;
  color: var(--text-main);
}

.mx-close-x-btn svg {
  width: 12px;
  height: 12px;
}

/* ===== BRAND FLOATING INSIGNIA TOKEN ===== */
.mx-modal-brand-token {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.12);
  margin: -76px auto 16px auto; /* Floats top center segment perfectly */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
}

.mx-token-shape {
  width: 12px;
  height: 15px;
  background-color: var(--accent-cyan); /* Clean branding token center match */
  clip-path: polygon(0% 25%, 100% 0%, 100% 75%, 50% 100%, 50% 50%, 0% 50%);
  margin-bottom: 2px;
}

.mx-token-text {
  font-size: 7px;
  font-weight: 800;
  color: #111827;
  letter-spacing: 0.2px;
}

/* ===== COMPONENT HEADER FONTS ===== */
.mx-modal-title {
  font-size: 22px;
  font-weight: 700;
  color: #111827; /* Sharp white header typography */
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
}

/* ===== GRID STREAM ROW ALIGNMENT ===== */
.mx-benefit-list {
  text-align: left;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mx-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

/* Icons adjusted to uniform Electric Cyan theme accents */
.mx-item-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--accent-cyan); /* Pure electric cyan theme alignment */
}

.mx-item-icon svg {
  width: 18px;
  height: 18px;
}

.mx-benefit-text {
  font-size: 14px;
  color: #8b949e; /* Clean readable muted silver grey */
  line-height: 1.45;
  font-weight: 500;
}

.mx-benefit-text strong {
  color: var(--accent-cyan); /* Highlights pop up in glowing cyan text */
  font-weight: 600;
}

/* Subscript Footnotes */
.mx-popup-sub-notice {
  font-size: 12.5px;
  color: #8b949e;
  text-align: left;
  margin: 0 0 24px 0;
  padding-left: 34px;
  font-style: italic;
}

/* ===== PREMIUM INTERFACE CTA ACTION RULES ===== */
.mx-button-group {
  width: 100%;
  margin-bottom: 16px;
}

.mx-telegram-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #10b981; /* Flat royal blue layout profile matching main app CTA */
  color: #ffffff;
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  box-sizing: border-box;
  box-shadow: 0 4px 12px rgba(47, 116, 255, 0.3);
  transition: opacity 0.15s ease;
}

.mx-telegram-btn:active {
  opacity: 0.9;
}

.mx-tg-svg {
  width: 18px;
  height: 18px;
}

/* Muted Reminder Toggle Option button */
.mx-btn-off {
  width: auto;
  background: none;
  color: #ff4d4d; /* Distinct system accent focus action toggle */
  padding: 8px 16px;
  border: none;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: opacity 0.1s ease;
}

.mx-btn-off:active {
  opacity: 0.7;
}

#welcomePopup {
  display: none; /* Changed from none to flex for visibility during testing */
}

/* DAILY LOADER OVERLAY */
.daily-loader{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.55);
  display:none;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  z-index:9999;
}

/* 3D SPINNER */
.spinner-3d{
  width:60px;
  height:60px;
  border:6px solid rgba(255,255,255,0.2);
  border-top:6px solid #00c2ff;
  border-radius:50%;
  animation:spin3d 1s linear infinite;
  margin-bottom:15px;
}

@keyframes spin3d{
  0%{transform:rotate(0deg);}
  100%{transform:rotate(360deg);}
}

.daily-loader p{
  color: #111827;
  font-weight:600;
  font-size:16px;
}


/* ===== PRODUCT PAGE ===== */
.product-page {
  width: 100%;
  padding: 20px;
  padding-bottom: 80px;
  padding-top: 65px; /* space for fixed header */
  background: #ffffff; /* white background */
  min-height: 100vh;
  color: #111827;      /* white text */
  display: none;       /* show when active */
}

/* ===== FIXED HEADER ===== */
.product-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #10b981; /* blue header */
  padding: 12px 0;
  z-index: 1000;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  color: #111827;      /* white text */
  box-shadow: 0 3px 8px rgba(16, 185, 129, 0.2); /* subtle blue shadow */
}

.product-header i {
  margin-right: 8px;
  color: #111827; /* white icon */
}

/* ================= NEW INVEST CARD STYLES ================= */
.invest-card{
  width:100%;
  max-width:380px;
  position:relative;
  padding:26px 24px 28px;
  border-radius:22px;
  background:
    radial-gradient(circle at 88% -12%, rgba(0,255,136,0.16), transparent 55%),
    linear-gradient(165deg, var(--card-grad-1) 0%, var(--card-grad-2) 75%);
  border:1px solid var(--green-border);
  box-shadow:
    0 35px 70px -30px rgba(0,0,0,0.85),
    inset 0 1px 0 rgba(255,255,255,0.05);
  overflow:hidden;
  font-family: 'Inter', sans-serif;
  transition:transform .4s ease, box-shadow .4s ease, border-color .4s ease;
  margin: 0 auto 20px;
  color: var(--white);
}

.invest-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:22px;
  padding:1px;
  background:linear-gradient(180deg, rgba(0,255,136,0.35), transparent 30%);
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
}

.invest-card:hover{
  transform:translateY(-5px);
  border-color:rgba(0,255,136,0.45);
  box-shadow:
    0 45px 80px -28px rgba(0,0,0,0.9),
    0 0 50px -10px rgba(0,255,136,0.18),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.invest-card .header-main{
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-bottom:22px;
  position:relative;
  z-index:1;
}

.invest-card .plan-icon-box{
  flex:0 0 auto;
  width:46px;
  height:46px;
  border-radius:13px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  color:var(--green);
  background:linear-gradient(145deg, rgba(0,255,136,0.2), rgba(0,255,136,0.03));
  border:1px solid var(--green-border);
  box-shadow:inset 0 0 18px rgba(0,255,136,0.12);
}

.invest-card .title-group{
  flex:1;
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:5px;
  text-align: left;
}

.invest-card .plan-title{
  font-size:11.5px;
  font-weight:600;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--muted);
}

.invest-card .plan-price{
  margin:0;
  font-size:27px;
  font-weight:700;
  color:var(--white);
  letter-spacing:-0.01em;
  line-height:1.1;
}

.invest-card .active-tag{
  flex:0 0 auto;
  align-self:flex-start;
  font-size:11px;
  font-weight:600;
  letter-spacing:0.03em;
  color:var(--green);
  background:var(--green-soft);
  border:1px solid var(--green-border);
  padding:6px 11px;
  border-radius:20px;
  white-space:nowrap;
  animation:tagGlow 2.6s ease-in-out infinite;
}

.invest-card .timer-box{
  position:relative;
  margin:0 0 22px;
  padding:16px 18px 18px;
  text-align:center;
  border-radius:16px;
  background:linear-gradient(180deg, #060907 0%, #0A0F0C 100%);
  border:1px solid rgba(0,255,136,0.12);
  box-shadow:
    inset 0 3px 12px rgba(0,0,0,0.65),
    inset 0 -1px 0 rgba(255,255,255,0.03);
  overflow:hidden;
  z-index:1;
}

.invest-card .countdown{
  position:relative;
  z-index:1;
  font-size:32px;
  font-weight:700;
  letter-spacing:0.05em;
  color:var(--green);
  text-shadow:0 0 22px rgba(0,255,136,0.5), 0 0 2px rgba(0,255,136,0.7);
}

.invest-card .stats-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-bottom:22px;
  position:relative;
  z-index:1;
}

.invest-card .stat-box{
  padding:13px 14px;
  border-radius:12px;
  background:var(--surface);
  border:1px solid var(--hairline);
  display:flex;
  flex-direction:column;
  gap:6px;
  transition:border-color .25s ease, transform .25s ease, background .25s ease;
  text-align: left;
}

.invest-card .stat-label{
  font-size:9.5px;
  font-weight:700;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--muted);
}

.invest-card .stat-value{
  font-size:16px;
  font-weight:700;
  color:var(--white);
}

.invest-card .progress-bar-bg{
  height:7px;
  border-radius:6px;
  background:rgba(255,255,255,0.06);
  overflow:hidden;
  margin-top: 8px;
}

.invest-card .progress-fill{
  height:100%;
  border-radius:6px;
  background:linear-gradient(90deg, var(--green-dim), var(--green), var(--green-dim));
  background-size:200% 100%;
  box-shadow:0 0 14px rgba(0,255,136,0.55);
  animation:shimmer 3.2s linear infinite;
}

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

@keyframes tagGlow{
  0%, 100% { box-shadow:0 0 0 rgba(0,255,136,0); }
  50%      { box-shadow:0 0 14px rgba(0,255,136,0.35); }
}

/* DETAILS */
.details-list {
  margin-top: 12px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: wheat;
  padding: 5px 0;
}

.detail-item span:last-child {
  color: wheat;
}

/* PROGRESS */
.progress-bar-bg {
  height: 5px;
  background: #111827;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 5px;
}

.progress-fill {
  height: 100%;
  background: #00ff88;
}

/* MOBILE FIX */
@media (max-width: 480px) {
  .premium-card {
    padding: 15px;
  }

  .plan-price {
    font-size: 18px;
  }

  .countdown {
    font-size: 18px;
  }
}


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Strict Integration of Your Colors */
:root {
  --bg-main: #f9fafb;         /* Pure black background canvas */
  --bg-card: #ffffff;         /* Deep charcoal containers */
  --text-main: #111827;       /* Crisp white labels and title text */
  --text-muted: #6b7280;      /* Soft grey details */
  --accent-cyan: #059669;     /* The premium electric cyan */
  --accent-glow: rgba(5, 150, 105, 0.15);
  --border-subtle: #e5e7eb;   /* Subtle divider boundaries */
}

/* Master Fixed Overlay Settings */
.invite-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 999;
  background-color: var(--bg-main); /* Strict alignment to black theme */
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  display: none; /* Regulated via active classes */
  flex-direction: column;
  padding-top: 65px; /* Perfect breathing margin for the header */
  box-sizing: border-box;
}

/* ================= CLEAN FIXED INVITE HEADER ================= */
.invite-header-fixed-v2 {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 450px; /* Aligns perfectly down the grid on desktops */
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  background-color: var(--bg-main);
  z-index: 1000;
  border-bottom: 1px solid var(--border-subtle);
  box-sizing: border-box;
}

.invite-header-fixed-v2 h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

/* ================= MINIMAL BACK TOGGLE SWITCH ================= */
.invite-back-btn-v2 {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  padding: 8px;
}

.invite-back-btn-v2:active {
  color: var(--accent-cyan);
}

/* ================= SCROLL CONTAINER STREAM ================= */
.referral-container {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  padding: 24px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 28px; /* Clean dynamic separation spacing */
}

/* Structural Header Sections block */
.section-block-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.section-block-title {
  font-size: 16px;
  font-weight: 600;
  color: green;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

/* Core Element Info Boxes sitting flat on canvas background */
.referral-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-sizing: border-box;
}

.card-label {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 14px;
  margin: 0;
}

/* Rebuilt Premium Action Copy Utility */
.copy-input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

/* Code layout mapping */
.code-display {
  color: var(--text-main);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 1px;
  font-family: monospace;
  padding: 4px 0;
}

/* Link element styling */
.link-display {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-muted);
  font-size: 14px;
  font-family: inherit;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  padding: 6px 0;
}

/* Wide flat premium buttons to replicate screenshot behavior */
.copy-action-btn {
  width: 100%;
  background-color: #d01e1e;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px var(--accent-glow);
}

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

.copy-action-btn:active {
  transform: translateY(1px);
}

/* ================= EARNINGS STRUCTURE COMPONENT ROW ================= */
.earnings-tier-row {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
}

.tier-badge-indicator {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}

.accent-gold {
  background: linear-gradient(135deg, #ffd700, #b8860b);
  color: #000000;
}

.accent-silver {
  background: linear-gradient(135deg, #e2e8f0, #94a3b8);
  color: #000000;
}

.tier-info-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0; /* Prevents text clipping breakout layout bugs */
}

.tier-info-text h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
}

.tier-info-text p {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Capsule metric badge styling */
.tier-value-pill {
  background-color: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.2);
  color: var(--accent-cyan);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

/* ================= THE HOW IT WORKS LOGISTIC SHEET ================= */
.how-it-works-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-sizing: border-box;
  width: 100%;
}

.how-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
}

.how-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.how-header i {
  color: var(--accent-cyan);
  font-size: 16px;
}

.step-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step-check-icon {
  color: var(--accent-cyan);
  font-size: 15px;
  display: flex;
  align-items: center;
  padding-top: 2px;
}

.step-content p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.highlight-cyan {
  color: var(--accent-cyan);
  font-weight: 600;
}

/* Flawless Desktop Responsiveness Layout */
@media (min-width: 576px) {
  .copy-input-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #161b22;
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 6px 8px 6px 16px;
    height: 56px;
    gap: 16px;
  }
  
  .code-display, .link-display {
    padding: 0;
  }
  
  .copy-action-btn {
    width: auto;
    padding: 0 20px;
    height: 100%;
    white-space: nowrap;
  }
}

/* --- TEAM SECTION --- */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.title-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.title-group h2 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-main);
}

.detail-btn {
  /* Light Purple Button */
  background: #f3e8ff;
  color: var(--purple-accent);
  border: none;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

/* --- MEMBER CARDS --- */
.member-card {
  background: white;
  border-radius: 20px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: var(--card-shadow);
  margin-bottom: 12px;
  position: relative;
  border: 1px solid #fafafa;
}

.level-indicator {
  font-size: 36px;
  font-weight: 900;
  color: #121b1e; /* Purple for L1 */
  min-width: 40px;
}

.level-indicator.level-2 { color: #10b981; } /* Blue for L2 */
.level-indicator.level-3 { color: #a855f7; } /* Light Purple for L3 */

.member-stats {
  flex-grow: 1;
}

.level-badge {
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
}

/* Updated badge colors for Purple/Blue/Lavender theme */
.blue-badge { background: #f3e8ff; color: #6a11cb; }
.green-badge { background: #eef2ff; color: #10b981; }
.orange-badge { background: #faf5ff; color: #a855f7; }

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

.commission-info {
  text-align: right;
}

.commission-info .label {
  display: block;
  font-size: 10px;
  color: #aaa;
  font-weight: 600;
}

.commission-info .amount {
  font-weight: 800;
  font-size: 14px;
}

/* Text colors to match the icons/badges */
.blue-text { color: #6a11cb; }
.green-text { color: #10b981; }
.orange-text { color: #a855f7; }

/* Responsive adjustments */
@media (max-width: 380px) {
  .stats-grid span { width: 100%; }
  .level-indicator { font-size: 28px; }
}


/* ================= CLEAN FIXED TEAM HEADER ================= */
.team-header-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  /* Swapped Red for Brand Purple Gradient */
  background: linear-gradient(135deg, green 50%, #fff 100%);
  color: #111827;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
}

/* Header text */
.team-header-main span {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

/* ================= CIRCULAR BACK BUTTON ================= */
.back-btn-white {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px; /* Slightly smaller for a tighter look */
  height: 36px;
  border-radius: 50%;
  border: none;
  /* Premium Glassmorphism Effect */
background: #ffffff;
backdrop-filter: blur(12px);         /* The Glass Blur */
-webkit-backdrop-filter: blur(12px); /* Support for Safari */

/* Glass Definition */
border: 1px solid rgba(0, 0, 0, 0.3); 
box-shadow: 0 8px 32px rgba(3, 3, 3, 0.05); /* Very subtle purple tint in shadow */
  /* Icon color is now Purple */
  color: #111827; 
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: all 0.2s ease;
  outline: none;
  z-index: 1100;
}

/* Press effect */
.back-btn-white:active {
  transform: translateY(-50%) scale(0.92);
  background: #f3e8ff; /* Soft purple tint on press */
}


/* Container Background - Dark Navy */
#earningsPage {
    background-color: #111827; 
    color: #111827;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    padding-top: 20px;
}

.recharge-page-container {
    padding: 15px;
    max-width: 500px;
    margin: 0 auto;
}

/* | TIER SYSTEM Header */
.tier-system-title {
    color: var(--accent-cyan);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 25px;
    border-left: 3px solid #10b981;
    padding-left: 10px;
}

/* The Main Tier Cards (Team 1 & Team 2) */
.tier-card-main {
   background: linear-gradient(135deg, green 50%, #fff 100%);
    border: 1px solid #1c2333;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.tier-card-main:active {
    transform: scale(0.98);
}

.tier-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tier-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
}

.tier-title i {
    color: #10b981; /* Blue icon */
    font-size: 1.1rem;
}

/* Blue Tier Pill */
.tier-badge {
    background: rgba(30, 58, 138, 0.5);
    color: var(--accent-cyan);
    padding: 3px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

/* Grid for the 3 Stats (Members, Invest, Commission) */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.stat-box {
    background: #ffffff; /* Inner dark box */
    border: 1px solid #1c2333;
    border-radius: 12px;
    padding: 15px 5px;
    text-align: center;
}

.stat-value {
    color: var(--accent-cyan);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-label {
    color: #64748b;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* Team Benefits Description Box (Yellow Theme) */
.benefits-container {
    background: rgba(251, 191, 36, 0.03);
    border: 1px solid rgba(251, 191, 36, 0.15);
    border-radius: 20px;
    padding: 20px;
    margin-top: 30px;
}

.benefits-title {
    color: #fbbf24;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #8a8d91;
    font-size: 0.85rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

.benefit-item i {
    color: var(--accent-cyan); /* Cyan bullet point icon */
    font-size: 0.7rem;
    margin-top: 4px;
}

/* User List Detail View (Hidden by default) */
#detailView {
    padding-bottom: 40px;
}

.user-list-card {
    background: #121826;
    border: 1px solid #1c2333;
    border-radius: 12px;
    padding: 12px 15px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ================= WITHDRAW PAGE ================= */
.withdraw-page {
  width: 100%;
  background: #ffffff; /* The deep dark blue/black from the image */
  font-family: 'Inter', -apple-system, sans-serif;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  color: #111827;
}

/* ================= CLEAN HEADER ================= */
.withdraw-header-fixed {
  width: 100%;
  height: 60px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 1px solid #050b18;
}

.withdraw-header-fixed h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #111827; /* Dark Navy */
  font-family: 'Poppins', sans-serif;
}

.withdraw-back-btn-v2 {
  position: absolute;
  left: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}


.history-btn {
  position: absolute;
  right: 15px; /* push to right */
  background: rgba(255,255,255,0.2);
  border: none;
  color: #111827;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* ================= GLOBAL ================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #111827; /* Deep Honda Dark Blue */
  font-family: 'Inter', sans-serif;
}

.recharge-container {
  padding: 20px 15px 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ================= 1. BALANCE CARD (GOLD) ================= */
.balance-card-ev {
  background: linear-gradient(180deg, #0f1d33 0%, #070e1b 100%);
  border: 1px solid #1c2e4a;
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  position: relative;
}

.satellite-icon {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 20px;
  height: 20px;
}

.balance-label-ev {
  color: #8a94a6;
  font-size: 11px;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}

#withdrawBalance {
  color: #fbbf24; /* Honda Gold */
  font-size: 38px;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.2);
}

/* ================= 2. INPUT CARD ================= */
.input-card-ev {
   background: linear-gradient(135deg, green 50%, #fff 100%);
  border: 1px solid #1c2e4a;
  border-radius: 20px;
  padding: 20px;
}

.card-header-ev {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}

.min-text-ev {
  color: #536077;
  font-size: 11px;
  margin: 15px 0 10px;
}

.withdraw-input-box-ev {
  background: white;
  border: 1px solid #1c2e4a;
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: center;
}

.currency-neon {
  color: var(--accent-cyan);
  font-weight: bold;
  margin-right: 12px;
  font-size: 18px;
}

#withdrawAmountInput {
  background: transparent;
  border: none;
  outline: none;
  color: #111827;
  width: 100%;
  font-size: 16px;
}

.max-btn-link {
  color: var(--accent-cyan);
  font-size: 12px;
  text-align: right;
  margin-top: 12px;
  cursor: pointer;
}

/* ================= 3. BANK GRID ================= */
.bank-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bank-sub-card {
  background: #0d1626;
  border: 1px solid #1c2e4a;
  border-radius: 15px;
  padding: 15px;
}

.sub-card-label {
  color: #536077;
  font-size: 10px;
  margin-bottom: 8px;
}

.sub-card-value {
  color: #111827;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.4;
}

/* ================= 4. MAIN BUTTON ================= */
#withdrawSubmitBtn {
  background: linear-gradient(90deg, #10b981 0%, #059669 100%);
  color: #111827;
  width: 100%;
  padding: 18px;
  border-radius: 35px;
  border: none;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
  cursor: pointer;
}

/* ================= 5. RULES CARD ================= */
.rules-card-ev {
  background: #0d1626;
  border: 1px solid #1c2e4a;
  border-radius: 20px;
  padding: 20px;
}

.rules-title-ev {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 20px;
  color: #111827;
}

.rule-item-ev {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 13px;
  color: #8a94a6;
  line-height: 1.5;
}

.rule-num {
  background: #10b981;
  color: #000000;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  flex-shrink: 0;
}

.warning-text {
  color: #fbbf24;
  font-weight: 600;
}

.add-bank-btn {
  background: #10b981;
  color: #000;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
}
/* ================= RECORDS PAGE ================= */
.records-page {
  width: 100vw;
  padding-top: 60px;
  margin: 0;
  font-family: Arial, sans-serif;
  height: 100vh;
  overflow-y: auto;
  background: #ffffff;
  box-sizing: border-box;
}


/* ================= BANK EMPTY STATE (Honda EV Style) ================= */
.bank-empty {
  background: #0d1626; /* Matches the inner card color */
  border: 2px dashed #1c2e4a; /* Dashed border to show it's an "empty slot" */
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 10px 0;
}

.bank-icon {
  font-size: 40px;
  margin-bottom: 5px;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3)); /* Slight neon glow */
}

.bank-empty h4 {
  color: #111827;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.bank-empty p {
  color: #536077; /* Muted grey-blue text */
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
  max-width: 80%;
}

#addAccountBtn {
  margin-top: 10px;
  background: linear-gradient(90deg, #10b981 0%, #059669 100%);
  color: #111827;
  border: none;
  padding: 12px 25px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
  transition: transform 0.2s ease;
}

#addAccountBtn:active {
  transform: scale(0.95);
  opacity: 0.9;
}

/* ===============================================
   RECORDS PAGE SPACING
   =============================================== */
.records-page {
  padding-top: 0px;
}


/* Specific Purple color for the Registration Bonus Icon */
.icon-bonus {
  background: rgba(168, 85, 247, 0.1);
  color: #a855f7;
  border: 1px solid rgba(168, 85, 247, 0.2);
}

/* ================= CLEAN FIXED HEADER ================= */
.records-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: black; /* Clean white background */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  border-bottom: 1px solid #0d1117;
  font-family: 'Poppins', sans-serif;
}

/* Header title */
.records-header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: green; /* Dark Navy for high contrast */
  letter-spacing: 0.5px;
}

/* ================= CIRCULAR BACK BUTTON ================= */
.records-back-btn {
  position: absolute;
  left: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e5e7eb; /* Subtle border like the image */
  background: green;
  color: #fff6e5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* Soft shadow for depth */
  transition: transform 0.1s ease;
  outline: none;
  font-size: 16px;
}

.records-back-btn:active {
  transform: scale(0.95);
  background: #f9f9f9;
}


#recordsContainer {
  padding: 10px 0;
}


#recordsContainer {
  padding: 15px;
  background-color: white; /* Dark background like the screenshot */
  min-height: 100vh;
}

/* ================= RECORD CARD ================= */
.record-card {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 18px;
  background: #161b22; /* Card background color */
  border-radius: 12px; /* Rounded corners for the card */
  margin-bottom: 12px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ================= ICON SECTION ================= */
.record-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 50%; /* Circular icons as seen in screenshot */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-right: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Colors based on screenshot */
.icon-withdrawal, .icon-minus { 
  background: transparent; 
  color: #111827; 
  border: 1px solid rgba(255,255,255,0.2);
}

/* ================= CONTENT SECTION ================= */
.record-middle {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.record-transaction {
  font-weight: 600;
  font-size: 15px;
  color: #fff6e5;
  margin-bottom: 4px;
}

.record-time {
  font-size: 12px;
  color: #8b949e; /* Muted gray */
}

.record-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.record-amount {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}

/* Withdrawal Red/Pink Color from image */
.amount-minus { color: #f85149; } 
.amount-plus { color: #3fb950; }

/* ================= STATUS PILL ================= */
.record-status {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.05); /* Dark pill bg */
}

/* Status: Confirmed / Success */
.status-success {
  color: #3fb950;
  background: rgba(63, 185, 80, 0.1);
}

.status-success::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: #3fb950;
  border-radius: 50%;
  display: inline-block;
}

/* Status: Pending */
.status-pending {
  color: #d29922;
  background: rgba(210, 153, 34, 0.1);
}

/* Status: Failed */
.status-failed {
  color: #f85149;
  background: rgba(248, 81, 73, 0.1);
}


/* ================= FILTER (DARK THEME) ================= */
.records-filter {
  display: flex;
  gap: 25px; /* Slightly wider gap for a cleaner look */
  padding: 15px 10px;
  overflow-x: auto;
  justify-content: center;
  background-color: #f3e8ff; /* Matches the dark background */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Subtle dark border */
}

.filter-btn {
  border: none;
  padding: 8px 0;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  color: #8b949e; /* Muted gray for inactive text */
  white-space: nowrap;
  transition: all 0.2s ease;
  position: relative;
  outline: none;
}

/* Active Text State - Bright Blue and Bold */
.filter-btn.active {
  color: #059669; /* Your brand blue */
  font-weight: 700;
}

/* Bottom line for active text */
.filter-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #059669;
  border-radius: 10px 10px 0 0; /* Slightly rounded top for the line */
}

.filter-btn:active {
  transform: scale(0.95);
  opacity: 0.8;
}

/* Hide scrollbar for cleaner look while keeping functionality */
.records-filter::-webkit-scrollbar {
  display: none;
}
.records-filter {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* ================= RESPONSIVE ================= */
@media (max-width: 480px) {
  .record-card { padding: 14px; min-height: 90px; }
  .record-transaction { font-size: 16px; }
}


/* ================= MODAL OVERLAY ================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

/* ================= MODAL CARD ================= */
.modal-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 24px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
}

/* ================= HEADER ================= */
.sheet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.sheet-title {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
}

.close-sheet {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}

/* ================= INNER CARD ================= */
.slim-card {
  background: #f7f7f7;
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 25px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* ================= PRODUCT ROW ================= */
.product-main-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-icon-container {
  width: 48px;
  height: 48px;
  background: #059669;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: white;
  color: #000000;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= PRODUCT DETAILS ================= */
.product-details strong {
  font-size: 17px;
  font-weight: 700;
  display: block;
  color: #111;
}

.product-details p {
  font-size: 14px;
  color: #444;
  margin-top: 3px;
}

/* ================= DIVIDER ================= */
.divider-line {
  height: 1px;
  background: #e5e5e5;
  margin: 14px 0;
}

/* ================= BALANCE ================= */
.account-balance-row {
  font-size: 14px;
  color: #333;
  font-weight: 600;
}

/* ================= PURCHASE BUTTON ================= */
.purchase-btn {
  background: #059669;
  color: #ffffff;
  border: none;
  border-radius: 40px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: block;
  margin: auto;
  box-shadow: 0 6px 15px rgba(47,72,236,0.4);
  transition: transform 0.15s ease;
}

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

/* ================= MOBILE ================= */
@media (max-width:480px){

.modal-card{
padding:20px;
}

.sheet-title{
font-size:20px;
}

.product-details strong{
font-size:16px;
}

.product-details p,
.account-balance-row{
font-size:13px;
}

.purchase-btn{
font-size:14px;
padding:10px 22px;
}

}


/* ================= PAGE WRAPPER ================= */
.investment-page {
  background: #ffffff; /* Deep dark background */
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  /* Crucial: Forces content to start at the top, not center */
  justify-content: flex-start !important; 
  align-items: stretch; 
  overflow-y: auto;
  box-sizing: border-box;
  margin: 0;
  padding: 0; /* Removed the 75px padding from here */
}

/* ================= FIXED HEADER ================= */
.investment-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08); 
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.investment-header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #fefefe;
  font-family: 'Poppins', sans-serif;
}

/* Back Button */
.investment-back-btn {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #111827; 
  cursor: pointer;
}

/* ================= SUB-HEADER (SNAPS TO TOP) ================= */
.investment-sub-header {
  /* 60px for header height + 20px extra breathing room = 80px */
  padding: 80px 20px 15px 20px; 
  background: #ffffff;
  width: 100%;
  box-sizing: border-box;
}

.investment-sub-header h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  font-family: 'Poppins', sans-serif;
}

.investment-sub-header p {
  margin: 5px 0 0 0;
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.4;
}

/* ================= CARD WRAPPER ================= */
.card-wrapper {
  padding: 10px 16px 40px 16px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  box-sizing: border-box;
}

/* Section Title styling sitting flat on your dark canvas background */
.product-section-title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;            /* Compact, crisp, and clean—no giant text weights */
  font-weight: 700;
  color: var(--text-main);    /* Sharp white text color */
  letter-spacing: -0.02em;
  margin-bottom: 20px;        /* Spacing above your dynamic list cards */
  padding-left: 16px;         /* Perfectly aligned with your mobile/desktop stream padding */
  text-align: left;           /* Left-aligned exactly like the image */
}

/* Optional desktop adjustment to prevent it shifting out of bounds */
@media (min-width: 576px) {
  .product-section-title {
    max-width: 440px;
    margin: 0 auto 24px auto; /* Centers flawlessly with the list on desktop */
    padding-left: 16px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* Integration of your exact palette */
:root {
  --bg-main: #f9fafb;         /* Pure black canvas background */
  --bg-card: #ffffff;         /* Deep charcoal box container base */
  --text-main: #111827;       /* Headings */
  --text-muted: #6b7280;      /* Labels */
  --accent-cyan: #059669;     /* The premium electric cyan */
  --accent-glow: rgba(5, 150, 105, 0.15);
  --border-line: #e5e7eb;     /* Flat layout rule separators */
}

/* Container adjustment for single stream layout across mobile/desktop */
#dynamicProductList {
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
  padding: 16px !important;
  padding-bottom: 100px !important; 
  background: #f2f2f2 !important; /* Managed by your primary background */
  width: 100%;
  max-width: 400px; /* Aligns with login/signup and dashboard flow specifications */
  margin: 0 auto;
  box-sizing: border-box;
}

/* THE UPGRADED CARD COMPONENT */
/* ── Card shell ── */
.mx-product-card {
  background: #fff;
  border: 0.5px solid #c0ddc9;
  border-radius: 24px;
  width: 100%;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.mx-product-card:hover {
  transform: translateY(-3px);
  border-color: #639922;
}

/* ── Header ── */
.mx-card-header {
  background: #2d5a0e;
  padding: 20px 20px 18px;
}
.mx-header-top {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
}

/* ── Image slot ── */
.mx-img-slot {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: #1e3d09;
  border: 1.5px solid #639922;
  overflow: hidden;
  flex-shrink: 0;
}
.mx-img-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Brand pill ── */
.mx-brand-col  { display: flex; flex-direction: column; gap: 5px; }
.mx-brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #1e3d09;
  border-radius: 30px;
  padding: 4px 10px;
  width: fit-content;
}
.mx-brand-dot  { width: 5px; height: 5px; border-radius: 50%; background: #97C459; }
.mx-brand-text { font-size: 10px; font-weight: 500; color: #97C459; letter-spacing: 0.1em; }
.mx-plan-name  { font-size: 15px; font-weight: 500; color: #fff; }

/* ── Price block ── */
.mx-price-block {
  border-top: 0.5px solid #3b6d11;
  padding-top: 14px;
}
.mx-price-label {
  font-size: 11px;
  color: #97C459;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 3px;
}
.mx-main-price {
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
}

/* ── Data rows ── */
.mx-card-body { padding: 4px 0; }

.mx-data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 20px;
  border-bottom: 0.5px solid #eaf3de;
}
.mx-data-row:last-child { border-bottom: none; }

.mx-row-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mx-row-left i {
  font-size: 15px;
  color: #3b6d11;
  background: #eaf3de;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mx-info-label { font-size: 12px; color: #5f5e5a; }
.mx-info-value { font-size: 13px; font-weight: 500; color: #27500A; }

/* ── Highlight row ── */
.mx-highlight-row { background: #f6fcf1; }
.mx-highlight-row .mx-info-label { color: #3b6d11; font-weight: 500; }
.mx-highlight-row i {
  background: #c0dd97 !important;
  color: #1e3d09 !important;
}
.mx-earnings-val {
  background: #c0dd97;
  border-radius: 8px;
  padding: 3px 10px;
  font-size: 14px;
  font-weight: 500;
  color: #1e3d09;
}

/* ── Footer & button ── */
.mx-card-footer { padding: 16px 20px 20px; }

.mx-invest-btn {
  width: 100%;
  background: #2d5a0e;
  color: #fff;
  border: none;
  border-radius: 13px;
  padding: 14px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.01em;
  transition: background 0.15s ease, transform 0.1s ease;
}
.mx-invest-btn i   { font-size: 16px; }
.mx-invest-btn:hover  { background: #1e3d09; }
.mx-invest-btn:active { transform: scale(0.97); } 

/* THE PLASTERED VECTOR BRANDING LOGO (Recreated perfectly via pure code) */

/* Desktop Responsiveness Scaling */
@media (min-width: 576px) {
  #dynamicProductList {
    max-width: 440px;
    gap: 28px !important;
  }
}


/* This targets the <a> tag wrapping your settings item */
a.settings-link-wrapper {
    text-decoration: none !important; /* Forces the underline to disappear */
    color: inherit !important;        /* Forces the text to stay your app's color */
    display: block;                   /* Makes the whole row clickable */
    -webkit-tap-highlight-color: transparent; /* Removes the gray box on mobile tap */
}

/* Optional: Add a slight hover or active effect so the user knows it's a button */
a.settings-link-wrapper:active {
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

/* ================= CUSTOM ALERT ================= */
.custom-alert {
  position: fixed !important;
  top: 20px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: #111827;
  border: 0.5px solid #2d2d2d;
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  width: max-content;
  max-width: 90%;
  z-index: 999999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.custom-alert.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) !important;
}
.custom-alert {
  right: auto;
  margin: 0;
}

.custom-alert.show {
  animation: alertPop 0.3s ease;
}

@keyframes alertPop {
  0% {
    transform: translate(-50%, -60%) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}


/* ================= EMPTY STATE UI (PRODUCT STYLE) ================= */
.empty-state-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
  padding: 40px 20px; 
  margin: 15px;
  text-align: center;
  
  /* Card Design: Stretch like an ATM card */
  background: #ffffff;
  border-radius: 16px; 
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  
  width: auto; 
  max-width: 100%; 
  box-sizing: border-box;
}

.empty-icon-circle {
  width: 70px; /* Slightly larger for product focus */
  height: 70px;
  background: #f8f9fa; /* Clean grey/white tint */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.empty-icon-circle i {
  font-size: 28px;
  color: #121b1e; /* Bold dark icon */
}

.empty-title {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  color: #1a1a1a;
  font-family: 'Poppins', sans-serif;
}

.empty-subtitle {
  margin: 8px 0 25px 0;
  font-size: 14px;
  color: #777;
  font-weight: 400;
  line-height: 1.5;
  max-width: 280px; /* Keeps text centered and readable */
}

/* THE BUTTON - Full width button */
.browse-plans-btn {
  background: #111827;
  color: #ffffff;
  border: none;
  width: 100%; 
  max-width: 300px; /* Adjusted for better card balance */
  padding: 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.browse-plans-btn:active {
  transform: scale(0.97);
}


/* ================= PREMIUM LOADER ================= */
#pageLoader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-main);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 0.5s ease;
}

.premium-loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05),
              0 1px 3px rgba(0, 0, 0, 0.02);
  width: 300px;
  text-align: center;
}

/* Spinner visual wrapper */
.loader-visual-wrapper {
  position: relative;
  width: 110px;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

/* Double concentric spinning rings */
.loader-spinner-ring {
  position: absolute;
  border-radius: 50%;
  border: 3px solid transparent;
}

.loader-spinner-ring.outer {
  width: 100px;
  height: 100px;
  border-top-color: var(--accent-cyan);
  border-bottom-color: var(--accent-cyan);
  animation: spin-clockwise 2s linear infinite;
}

.loader-spinner-ring.inner {
  width: 80px;
  height: 80px;
  border-left-color: rgba(5, 150, 105, 0.25);
  border-right-color: rgba(5, 150, 105, 0.25);
  animation: spin-counterclockwise 1.5s linear infinite;
}

/* Central brand logo inside spinner */
.loader-logo-container {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.1);
  animation: logo-pulse 2s ease-in-out infinite;
}

.loader-logo-shape {
  width: 16px;
  height: 20px;
  background-color: var(--accent-cyan);
  clip-path: polygon(0% 25%, 100% 0%, 100% 75%, 50% 100%, 50% 50%, 0% 50%);
}

/* Typography styles */
.loader-brand-title {
  color: var(--text-main);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 4px;
  margin-bottom: 6px;
}

.loader-status-text {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Horizontal slide progress bar */
.loader-progress-bar {
  width: 120px;
  height: 4px;
  background: var(--border-subtle);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.loader-progress-fill {
  width: 45%;
  height: 100%;
  background: var(--accent-cyan);
  border-radius: 10px;
  position: absolute;
  animation: progress-loop 1.6s ease-in-out infinite;
}

/* --- ANIMATION KEYFRAMES --- */
@keyframes spin-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes spin-counterclockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

@keyframes logo-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 12px rgba(5, 150, 105, 0.1); }
  50% { transform: scale(1.08); box-shadow: 0 6px 20px rgba(5, 150, 105, 0.25); }
}

@keyframes progress-loop {
  0% { left: -45%; }
  50% { left: 100%; }
  100% { left: 100%; }
}


/* Header Image */
.product-header-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}


/* Reviews Ticker Wrapper - fills remaining viewport height */
.reviews-ticker-wrapper {
  width: 100%;
  height: calc(100vh - 250px); /* adjust based on your header/image height */
  overflow: hidden;
  border-radius: 12px;
  background: #ffffff; /* blue background */
  padding: 10px;
  box-sizing: border-box;
}

/* Ticker container */
.reviews-ticker {
  display: flex;
  flex-direction: column;
  gap: 15px;
  animation: scrollReviews 300s linear infinite; /* very slow scroll */
}

/* Each review item */
.review-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px;
  background: #ffffff; /* white card background */
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  min-height: 80px; /* make each review taller */
}

/* User logo / icon */
.review-item .user-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0; /* keeps image from shrinking */
}

/* Review text */
.review-item .review-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
  color: #10b981; /* blue text */
}

/* Smooth scroll animation */
@keyframes scrollReviews {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}



/* Full-width black box around dashboard image */
.dashboard-image-box-full {
    width: 100%;                 /* full width of parent container */
    background-color: #111827;   /* black box (you can change to green) */
    padding: 15px;               /* space inside box for image */
    border-radius: 16px;         /* rounded corners */
    box-sizing: border-box;
    text-align: center;          /* center image */
    margin: 20px 0;              /* vertical spacing only, no horizontal shift */
    overflow: hidden;            /* prevent any overflow */
}

/* Dashboard image inside the box */
.dashboard-image {
    max-width: 100%;             /* fit inside green box */
    height: auto;
    border-radius: 12px;         /* slightly rounded corners */
    display: inline-block;       /* center properly */
}




/* ===== PAYMENT TYPE ===== */
.payment-type {
  margin: 15px 0;
  text-align: left;
  width: 100%;
  position: relative;
  font-family: sans-serif;
}

.payment-type label {
  display: block;
  margin-bottom: 6px;
  color: #f4b400; /* green label */
  font-weight: 600;
  font-size: 14px;
}

/* The clickable box */
.payment-box {
  width: 100%;
  background: #ffffff;          /* white box */
  color: #000000;
  border: 1px solid #c0c0c0;   /* silver edge */
  border-radius: 12px;
  padding: 12px 15px;
  cursor: pointer;
  position: relative;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s;
}

.payment-box:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.payment-box .arrow {
  font-size: 14px;
}



/* Options list hidden by default */
.payment-options {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 48px; /* below the box */
  width: 100%;
  background: #ffffff;
  border: 1px solid #c0c0c0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: none; /* hidden initially */
  z-index: 100;
}

.payment-options li {
  padding: 10px 15px;
  cursor: pointer;
  color: #000000;
  font-weight: 500;
  transition: background 0.2s;
}

.payment-options li:hover {
  background: rgba(15,157,88,0.1); /* light green hover */
}


/* Selected Amount Display */
.selected-amount {
  font-weight: bold;
  color: #000000;   /* black */
  font-size: 20px;
  margin-top: 8px;
  text-align: center;
}



#paymentCountdown {
  margin-top: 14px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #ff0707; /* green */
}


#paymentStatusMessage {
  margin-top: 16px;
  padding: 14px;
  border-radius: 10px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  display: none;
}


.status-pending {
  background: #f0fff6;
  color: #d29922;
}

.status-approved {
  background: #e6fff1;
  color: #1faa59;
}

.status-declined {
  background: #ffecec;
  color: #d62828;
}

.status-timeout {
  background: #fff6e5;
  color: #c77700;
}


/* ================= PROTECTED UI ================= */
#dashboard,
#bottomNav {
  display: none;
}


/* ================= FLOATING NAV CONTROL (BLACK + GOLD) ================= */
#navToggle {
  position: fixed;
  bottom: 90px; /* sits above bottom nav */
  right: 20px;

  width: 64px;
  height: 44px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.9); /* black semi-transparent */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  color: #D4AF37;  /* gold text/icon */
  font-size: 22px;

  border: 1px solid rgba(212,175,55,0.35); /* subtle gold border */
  cursor: pointer;

  z-index: 2001;
  display: none; /* auth decides */

  box-shadow: 0 8px 18px rgba(212,175,55,0.25); /* subtle gold shadow */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Show toggle ONLY when logged in */
body.logged-in #navToggle {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover / press feedback */
#navToggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(212,175,55,0.35); /* stronger gold glow */
}

#navToggle:active {
  transform: scale(0.95);
}


/* ================= BOTTOM NAV ================= */

/* Hidden forever by default */
#bottomNav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 2000;
}

/* Visible ONLY when toggled */
#bottomNav.open {
  transform: translateY(0);
}


/* ================= FLOATING TELEGRAM (PROFILE PAGE) ================= */
.profile-page .telegram-float-profile {
  position: fixed;
  bottom: 90px;              /* above bottom nav */
  right: 16px;               /* move to right */
  z-index: 9999;

  width: 56px;
  height: 56px;
  border-radius: 50%;

  background: #059669;       /* Telegram blue */
  color: #111827;            /* white icon/text */

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;
  text-decoration: none;

  box-shadow: 0 8px 20px rgba(5, 150, 105,0.35);  /* subtle blue shadow */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover / tap */
.profile-page .telegram-float-profile:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(5, 150, 105,0.45); /* stronger blue shadow */
}

/* Mobile safe */
@media (max-width: 480px) {
  .profile-page .telegram-float-profile {
    bottom: 100px;
    right: 12px;            /* adjust right for mobile */
  }
}




/* Toast Container - Positioned to the Top Right */
#toast-container {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: auto;
    max-width: 320px;
    pointer-events: none;
}

/* Individual Toast Styling - Black & Gold Theme */
.modern-toast {
  pointer-events: auto;
  width: auto;
  max-width: 380px;
  padding: 12px 20px 12px 14px;
  border-radius: 28px;
  background: #0d0d0d;
  color: #ffffff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  gap: 12px;
  border: none;
  transform: scale(0.9) translateY(-6px);
  opacity: 0;
  animation: dynamicPop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes dynamicPop {
  0%   { transform: scale(0.85) translateY(-8px); opacity: 0; }
  60%  { transform: scale(1.02) translateY(0); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.icon-wrap {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #00e676;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #051a0c;
  font-size: 16px;
}

.toast-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.toast-title { font-size: 13px; font-weight: 600; color: #ffffff; white-space: nowrap; }
.toast-sub {
  font-size: 11.5px;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pulse-dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00e676;
  margin-left: 4px;
  animation: pulseRing 1.8s ease-out infinite;
}

@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(0,230,118,0.5); }
  70%  { box-shadow: 0 0 0 6px rgba(0,230,118,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,230,118,0); }
}

/* Gold Accents for Icons */
.toast-icon {
    font-size: 18px;
    color: red; /* Makes every icon Gold */
}

/* High Visibility Status Borders (Optional: Keeping specific Gold/Red/Yellow hues) */
.toast-success { border-left-color: #A855F7; } /* Gold for Success */
.toast-error { border-left-color: #ff4d4d; }   /* Keeping Red for Errors for safety */
.toast-warning { border-left-color: #A855F7; } /* Amber Gold for Warnings */