
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* General Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

/* Base body styles */
body {
  background: #f8f9fa; /* light ash */
  color: #1a202c; /* deep blue text */
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding-top: 20px;
  font-family: 'Poppins', sans-serif;
  transition: background 0.3s, color 0.3s;
}


body {
  background-color: #f8f9fa;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}



/* Container Background - Milk Color */
body {
  background-color: #fcfaf2; /* Milk background */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.container {
  width: 90%;
  max-width: 400px;
  background: #ffffff; /* White Card */
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: none;
  flex-direction: column;
}

.container.active {
  display: flex;
}

/* Titles */
h2 {
  text-transform: uppercase;
  font-size: 1.2rem;
  color: #1a202c;
  margin-bottom: 25px;
  font-weight: 700;
}

/* Input Group - The Vertical Bar Logic */
.input-group-container {
  margin-bottom: 20px;
}

/* The Left Accent Bar */
label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 8px;
  padding-left: 12px;
  border-left: 3px solid #000000; /* Green accent from screenshot */
  line-height: 1;
}

input[type="text"],
input[type="password"],
input[type="email"] {
  width: 100%;
  padding: 15px;
  background-color: #f9fafb;
  border: 1px solid #edf2f7;
  border-radius: 10px;
  font-size: 14px;
  color: #4a5568;
  outline: none;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

input:focus {
  border-color: #FDFFF5;
  background-color: #fff;
}

input::placeholder {
  color: #a0aec0;
}

/* Primary Button */
button {
  width: 100%;
  padding: 16px;
  background-color: #0d0d0d; /* Matching the accent */
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s;
}

button:hover {
  background-color: #0d0d0d;
}

/* Links & Toggle Text */
.toggle-text, .divider {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #718096;
}

.toggle-text a, .forgot-link {
  color: #0d0d0d;
  text-decoration: none;
  font-weight: 600;
}

.forgot-link {
  display: block;
  text-align: right;
  font-size: 12px;
  margin-top: 5px;
}


/* 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;
  background: #f2f2f2;
  color: #f8f9fa;
}


/* Dashboard header */
.dashboard-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;                 /* white text */
  font-weight: bold;
  font-size: 16px;                /* slightly smaller for slim look */
  margin: 0;
  padding: 8px 16px;              /* slimmer padding */
  z-index: 10000;
  background: #1E3A8A;            /* sky blue background */
  width: 100%;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(135, 206, 235, 0.5); /* soft sky blue glow */
  border-radius: 0;               /* keep slim, no rounding */
}


/* Remove extra spacing in dashboard cards if used */
.dashboard-card h2.dashboard-header {
  margin: 0;
}


/* CONTAINER BACKGROUND */
.action-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  
  width: 95%;
  max-width: 500px;
  margin: 20px auto;
  
  padding: 20px;
  background: #f8f9fa; /* Light Ash Background */
  border-radius: 20px;
}

/* BUTTON WRAPPER */
.action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.action-btn:active {
  transform: scale(0.95);
}

/* ICON SQUARE (Exactly like Screenshot) */
.action-icon {
  width: 70px; /* Slightly larger squares */
  height: 70px;
  background: #ffffff; /* White Square */
  border-radius: 18px; /* Smooth rounded corners */
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  margin-bottom: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03); /* Very subtle shadow */
}

/* SVG ICON COLOR */
.action-icon svg {
  width: 28px;
  height: 28px;
  color: #000000; /* Black icons like the screenshot */
  stroke-width: 2;
}

/* LABEL TEXT */
.action-btn span {
  font-size: 15px;
  font-weight: 600;
  color: #001f3f; /* Dark Navy/Black text */
  text-align: center;
}

/* Remove default link styling for the Invite btn */
.action-grid a.action-btn {
  color: inherit;
}


/* Flyer Banner - full width slider */
.balance-flyer {
  width: 100vw;       
  height: auto;        /* allow height to adjust to image */
  overflow: hidden;    
  border-radius: 0;   
  border: none;       
  position: relative;
  margin: 0;          
}

/* Slider wrapper */
.flyer-slider {
  display: flex;
  width: 100%;         
  height: auto;         /* match content height */
  transition: transform 0.6s ease-in-out;
}

/* Each image in the slider */
.flyer-card {
  width: 100%;          /* fill width */
  height: auto;         /* keep original image height */
  flex-shrink: 0;     
  object-fit: contain;  /* show whole image without cropping */
  display: block;
}


/* Product Section Wrapper */
.product-section {
  margin-top: 20px;
  padding: 0 10px;
}

/* 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: #000000;          /* 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.2); /* subtle black shadow */
}





.welcome-card {
  background-color: #1E3A8A; /* SONY-style blue */
  color: white;
  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.2);
}


.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;
}


.dashboard-container {
  width: 95%;
  max-width: 450px;
  font-family: 'Segoe UI', Arial, sans-serif;
}





/* GLASS PROFILE CARD WITH IMAGE */
.top-header {
  position: relative;
  border-radius: 25px;
  padding: 40px 25px 25px 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;

  /* Background image */
  background: #1e40af;

  
  
}


.top-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.25),
    rgba(255,255,255,0.05)
  );
  border-radius: 25px;
}

/* User Info Styling */
.user-profile-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.user-name-display {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff; /* Deep Navy */
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.user-email-display {
  color: #ffffff;
  font-size: 16px;
  margin: 0;
}

.card-user-number {
  color: #ffffff;
  font-size: 18px;
  margin: 0;
}

/* BLUE BALANCE BAR (Matching the image pattern) */
.balance-bar-slim {
  background: #ffffff; /* Deep Blue as requested */
  border-radius: 15px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000000;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.balance-bar-slim:active {
  transform: scale(0.98);
}

.balance-left .label {
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.9);
}

.balance-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.balance-amount-slim {
  font-size: 22px;
  font-weight: 700;
}

.currency {
  font-size: 22px;
  font-weight: 700;
}

.arrow-icon {
  font-size: 20px;
  margin-left: 5px;
  opacity: 0.8;
}

/* Hiding unused connectors from your old code */
.connector, .balance-bank-icon {
  display: none;
}

/* ================= BOTTOM NAV ================= */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;      /* White background like image */
  display: flex;            /* Set to 'none' if you need it hidden initially */
  justify-content: space-around;
  align-items: center;
  padding: 8px 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05); /* Very light shadow */
  z-index: 1000;
  border-top: 1px solid #f0f0f0;
}

/* ================= NAV ITEMS ================= */
.bottom-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  flex: 1;
  transition: all 0.2s ease;
}

.nav-icon-wrapper {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 2px;
}

/* SVG ICON STYLE */
.bottom-nav .nav-item svg {
  width: 26px;
  height: 26px;
  fill: #1e40af; /* Dark grey for inactive icons */
}

/* TEXT STYLE */
.bottom-nav .nav-item span {
  font-size: 13px;
  font-weight: 600;
  color: #333333; /* Dark grey text */
  font-family: 'Arial', sans-serif;
}

/* ================= ACTIVE STATE (HOME) ================= */
.nav-item.active .nav-icon-wrapper {
  background-color: #fff0f0; /* Soft red circular glow */
}

.nav-item.active svg {
  fill: #1e40af; /* Red icon color */
}

.nav-item.active span {
  color: #1e40af; /* Red text color */
}

/* ===== PROFILE FIXED HEADER ===== */
.profile-header-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff; /* black background */
  padding: 10px 0;
  text-align: center;
  font-size: 12px;
  color: #f1f1f1; /* gold text */
  font-weight: bold;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* subtle gold shadow */
}

.profile-header-bar i {
  margin-right: 8px;
  color: #000000; /* gold icon */
}

/* Push content down so it doesn’t go under header */
.profile-content {
  padding-top: 60px; /* same as header height */
}

/* ===== PROFILE PAGE ===== */
.profile-page {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: none;
  padding: 0 10px 80px 10px;
  height: calc(100vh - 0px);
  overflow-y: auto;
  box-sizing: border-box;
  background: #ffffff; /* white background */
  color: #000000;      /* black text */
}

/* Profile Header Image - ATM card style */
.profile-header {
  width: 100%;
  height: 180px;
  margin-bottom: 20px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,128,0,0.25); /* subtle green shadow */
  background: #ffffff;
}

.profile-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Title */
.profile-title {
  margin: 15px 0;
  font-size: 18px;
  font-weight: bold;
  color: #79a2e5;
  text-align: center;
}


:root {
  --glass-blue-bg: rgba(0, 123, 255, 0.1); /* Light glass blue */
  --icon-blue: #ffec8b; /* Solid blue for icons */
  --text-main: #333;
  --text-muted: #888;
  --border-color: #f4f4f4;
}

.settings-container {
  background: #fff;
  font-family: 'Segoe UI', Roboto, sans-serif;
  max-width: 500px;
  margin: 0 auto;
}

/* Group Wrapper */
.settings-group {
  padding: 15px 0;
  border-bottom: 8px solid #f9f9f9; /* Subtle section divider */
}

.settings-group:last-child {
  border-bottom: none;
}

/* Small Header Text */
.group-title {
  font-size: 12px;
  color: var(--text-muted);
  padding: 0 20px 10px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Individual Row */
.settings-item {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}

.settings-item:active {
  background-color: #f0f7ff;
}

.settings-link {
  text-decoration: none;
  display: block;
}

/* The "Light Glass Blue" Icon Box */
.icon-box {
  width: 40px;
  height: 40px;
  background-color: var(--glass-blue-bg);
  border-radius: 8px; /* Slightly rounded square like the image */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.icon-box i {
  color: var(--icon-blue);
  font-size: 18px;
}

/* Label Styling */
.item-label {
  flex-grow: 1;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-main);
}

/* Right Chevron Arrow */
.arrow {
  color: #ccc;
  font-size: 14px;
}


/* ===== PURE GLASS SECTION ===== */
.apex-info-section {
  width: 100%;
  min-height: 60vh;
  margin-top: 20px;

  /* GLASS ONLY */
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border-top-left-radius: 22px;
  border-top-right-radius: 22px;

  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 30px 20px;
}

/* TEXT CONTENT */
.apex-glass-overlay {
  width: 100%;
  max-width: 600px;
  text-align: center;
}

/* TITLE */
.apex-glass-overlay h2 {
  font-size: 26px;
  font-weight: 800;
  color: #0a3cff;
  margin-bottom: 16px;
}

/* PARAGRAPH */
.apex-glass-overlay p {
  font-size: 15px;
  font-weight: 600;
  color: #0a3cff;
  line-height: 1.7;
  margin-bottom: 12px;
}


/* ================= BANK PAGE ================= */

.bank-page {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 0 12px;
  display: none;

  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(30, 64, 255, 0.12);

  color: #000000;
  height: 100vh;
  overflow-y: auto;
  box-sizing: border-box;
  padding-top: 70px; /* space for fixed header */
}


/* ================= FIXED BANK HEADER (BLACK & GOLD) ================= */
.bank-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 400px;
  height: 48px;                 /* slim height */

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: #79a2e5;          /* black background */
  color: #fefefe;               /* gold text */

  z-index: 1000;
  box-shadow: 0 3px 8px rgba(0,0,0,0.25);
  padding: 0 14px;

  font-weight: 600;
  letter-spacing: 0.5px;
  font-family: 'Poppins', sans-serif;
}

/* Header Title */
.bank-header h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff; /* gold */
  text-align: center;
  flex: 1;
}


/* ================= BACK BUTTON ================= */
.bank-back-btn {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;

 
 
  border: none;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;     /* gold arrow */
  font-size: 20px;

  cursor: pointer;

 
}



/* ================= BACK BUTTON ================= */
.bank-back-btn {
  position: absolute;
  top: 6px;                  /* slightly from top */
  left: 12px;                /* slightly from left */
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;    /* transparent to match header */
  color: #fff;               /* arrow color */
  font-size: 18px;           /* arrow size */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1100;
}

.bank-back-btn:active {
  transform: scale(0.95);
}

/* ================= FORM CONTAINER ================= */
.bank-form-container{
  width:100%;
  display:flex;
  justify-content:center;
  padding:25px 15px;
}

/* ================= 3D CARD ================= */
.bank-form-card{
  width:100%;
  max-width:400px;
  background:#ffffff;
  padding:25px;
  border-radius:20px;

  /* 3D card shadow */
  box-shadow:
  0 12px 30px rgba(0,0,0,0.12),
  0 4px 10px rgba(0,0,0,0.08),
  inset 0 1px 0 rgba(255,255,255,0.9);

  display:flex;
  flex-direction:column;
  gap:16px;

  font-family:'Poppins',sans-serif;
  transition:0.3s;
}

.bank-form-card:hover{
  transform:translateY(-3px);
  box-shadow:
  0 18px 40px rgba(0,0,0,0.18),
  0 8px 18px rgba(0,0,0,0.12);
}

/* ================= INPUT WRAPPER ================= */
.input-wrapper{
  width:100%;
}

/* ================= INPUTS ================= */
.gamex-input{
  width:100%;
  padding:14px 16px;
  border-radius:12px;
  border:1px solid #dcdcdc;
  background:#ffffff;
  font-size:15px;
  color:#000;
  outline:none;
  transition:0.2s;
}

.gamex-input::placeholder{
  color:#999;
}

/* focus effect */
.gamex-input:focus{
  border-color:#2f80ed;
  box-shadow:0 0 0 3px rgba(47,128,237,0.15);
}

/* ================= SELECT ================= */
select.gamex-input{
  cursor:pointer;
}

/* ================= BUTTON ================= */
.update-bank-btn{
  width:100%;
  padding:15px;
  border:none;
  border-radius:14px;

  font-size:16px;
  font-weight:700;

  background:#2f80ed;
  color:white;
  cursor:pointer;

  box-shadow:0 6px 18px rgba(47,128,237,0.35);
  transition:0.25s;
}

.update-bank-btn:hover{
  background:#1e6fe0;
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(47,128,237,0.45);
}

/* ================= SUCCESS MESSAGE ================= */
.success-message{
  text-align:center;
  font-weight:600;
  color:#2f80ed;
  font-size:14px;
  margin-top:5px;
}

/* ================= MOBILE ================= */
@media(max-width:450px){

.bank-form-card{
  padding:20px;
}

.gamex-input{
  font-size:14px;
  padding:12px;
}

.update-bank-btn{
  font-size:15px;
  padding:13px;
}

}

/* ===== FIXED RECHARGE HEADER ===== */
.recharge-header-fixed {
  position: fixed;        
  top: 0;
  left: 50%;              
  transform: translateX(-50%);
  width: 100%;
  max-width: 400px;       
  background: #ffffff;           /* black header */
  z-index: 10000;         
  text-align: center;
  padding: 12px 20px;      
  border-bottom: 2px solid #000000; /* gold underline */
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.recharge-header-fixed .header-icon {
  font-size: 24px;       
  color: #fffffe;        /* gold icon */
}

.recharge-header-fixed h2 {
  margin: 0;
  color: #000000;        /* gold text */
  font-size: 20px;
  font-weight: 500;      
}

/* ===== PAGE CONTENT ===== */
.recharge-page {
  width: 100%;
  max-width: 400px;
  margin: 60px auto 0;     
  padding: 15px;
  text-align: center;
  display: none;
  color: #ffffff;         
  background: #ffffff;     
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


/* ================= PAGE LAYOUT ================= */
.recharge-page-container {
  background-color: #f8f9fa;
  padding: 15px;
  font-family: 'Arial', sans-serif;
  min-height: 100vh;
}


/* ================= WHITE CARDS ================= */
.recharge-card, .info-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.recharge-subheader {
  font-size: 15px;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 12px;
  text-align: left;
}


/* ================= AMOUNT GRID ================= */
.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.amount-option {
  background: linear-gradient(145deg, #1e40af, #3b82f6, #fef3c7); /* blue → sky blue → shiny gold-white */
  padding: 12px 0;
  border-radius: 6px;
  font-weight: 700;
  color: #ffffff; /* white text */
  text-align: center;
  cursor: pointer;
  border: 1px solid rgba(255,243,199,0.4); /* subtle shiny gold border */
  font-size: 14px;
  transition: all 0.25s ease;
}

.amount-option.active {
  background: linear-gradient(145deg, #3b82f6, #1e40af, #fef3c7); /* reversed gradient for active shine */
  color: #ffffff;
  border-color: #fef3c7;
}

/* ================= CUSTOM INPUT ================= */
.custom-amount-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,243,199,0.4); /* shiny gold border */
  border-radius: 8px;
  padding: 12px 15px;
  margin-bottom: 20px;
  background: #000000; /* dark base for contrast */
}

.currency-icon {
  color: #fef3c7; /* gold-white */
  font-weight: bold;
  margin-right: 10px;
}

#customAmount {
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  color: #ffffff; /* white text */
  background: transparent;
}

/* ================= RECHARGE BUTTON ================= */
.deposit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(145deg, #1e40af, #3b82f6, #fef3c7); /* shiny blue → gold-white */
  color: #ffffff;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.35),
              inset 0 2px 4px rgba(255,243,199,0.2); /* inner shine */
}

.deposit-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 28px rgba(0,0,0,0.5),
              inset 0 4px 6px rgba(255,243,199,0.3);
  background: linear-gradient(145deg, #3b82f6, #1e40af, #fef3c7); /* reversed gradient for hover */
}

/* ================= INFO SECTION ================= */
.info-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.info-icon {
  color: #3b82f6; /* blue icon */
  font-weight: bold;
  font-size: 18px;
}

.info-title {
  font-weight: 700;
  color: #fef3c7; /* shiny gold-white */
}

.info-list {
  padding-left: 18px;
  color: #ffffff; /* white text */
  font-size: 13px;
  line-height: 1.8;
  margin: 0;
}

.info-list li::marker {
  color: #3b82f6; /* blue bullets */
}

/* ===== RECHARGE CONFIRMATION PAGE ===== */
.recharge-confirmation-page {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 90px 15px 20px;
  display: none;
  overflow-y: auto;
  text-align: center;
  background: #ffffff;       /* black background */
  color: #D4AF37;            /* gold text by default */
  box-sizing: border-box;
}

/* ================= CONFIRMATION HEADER ================= */
.confirmation-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;       /* black header */
  color: #000000;            /* gold text */
  text-align: center;
  padding: 8px 15px;
  z-index: 10000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

/* Header Title */
.confirmation-header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  color: #000000;            /* gold */
}

/* Selected Amount Display */
.confirmation-header .selected-amount {
  margin: 0;
  font-weight: bold;
  font-size: 16px;
  color: #D4AF37;            /* gold */
}


/* ================= GOOGLE FONTS ================= */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&family=Poppins:wght@400;600&display=swap');

/* ================= ACCOUNT DETAILS CARD ================= */
.account-details {
  background: #f8f8f8;        /* light ash / white form background */
  padding: 14px 16px;
  border-radius: 16px;
  margin-bottom: 18px;
  color: #000000;             /* black text for main content */
  font-family: 'Poppins','Orbitron',sans-serif;
  border: 1px solid #1e40af;  /* blue border instead of gold */
  box-shadow:
    0 6px 16px rgba(0,0,0,0.1),
    inset 0 1px 3px rgba(0,0,0,0.05);
  transition: 0.25s ease;
}

.account-details:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.15);
}

/* ================= DETAIL ROWS ================= */
.detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed #1e40af;  /* blue dashed */
  font-size: 14px;
}

.detail-row:last-child {
  border-bottom: none;
}

/* BLUE LABEL TEXT */
.detail-row span {
  color: #1e40af;  /* blue labels instead of gold */
  font-weight: 600;
}

/* BLACK / DARK AMOUNT / ACCOUNT NUMBER */
.detail-row strong {
  color: #000000; /* black text */
  font-weight: 700;
}

/* ================= COPY BUTTON ================= */
.copy-btn {
  border: none;
  background: linear-gradient(145deg, #1e40af, #3b82f6); /* blue gradient instead of gold */
  color: #ffffff;   /* white text */
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  transition: 0.25s ease;
}

/* NICE PRESS EFFECT */
.copy-btn:active {
  transform: scale(0.9);
  box-shadow: inset 0 3px 6px rgba(0,0,0,0.15);
}

/* HOVER GLOW */
.copy-btn:hover {
  background: linear-gradient(145deg, #3b82f6, #1e40af); /* reverse blue gradient for hover */
  box-shadow: 0 0 10px rgba(59,130,246,0.5);
}


/* ================= MOBILE ================= */
@media (max-width: 450px) {
  .detail-row {
    font-size: 13px;
    padding: 6px 0;
  }

  .copy-btn {
    font-size: 11px;
    padding: 3px 8px;
  }
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 450px) {
  .detail-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .confirm-payment-btn {
    font-size: 15px;
    padding: 14px;
  }
}


/* ================= ATM CARD FORM (BLACK LUXURY) ================= */
.atm-card-form {
  background: linear-gradient(145deg, #000000, #1a1a1a); /* black → dark ash */
  border-radius: 20px;
  padding: 20px 22px;
  width: 100%;
  max-width: 400px;
  margin: 20px auto;
  position: relative;

  /* 3D + soft shadow */
  box-shadow:
    0 10px 25px rgba(0,0,0,0.5),
    inset 0 2px 6px rgba(255,255,255,0.05);

  font-family: 'Poppins', 'Orbitron', sans-serif;
  transition: all 0.3s ease;
}

.atm-card-form:hover {
  transform: translateY(-3px);
  box-shadow:
    0 14px 35px rgba(0,0,0,0.6),
    inset 0 2px 6px rgba(255,255,255,0.08);
}

/* ================= CARD CHIP (GOLD) ================= */
.atm-chip {
  width: 40px;
  height: 28px;
  background: linear-gradient(145deg, #1e40af, #3b82f6); /* blue gradient */
  border-radius: 4px;
  position: absolute;
  top: 20px;
  left: 20px;

  box-shadow:
    0 2px 6px rgba(0,0,0,0.3),
    inset 0 1px 3px rgba(255,255,255,0.6);
}


/* ================= FORM HEADER ================= */
.atm-card-form h3 {
  margin-top: 0;
  margin-bottom: 16px;
  
  /* Shiny gold-blue-white gradient text */
  background: linear-gradient(45deg, #1e40af, #3b82f6, #fef3c7); 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-weight: 700;
  text-align: center;
  letter-spacing: 0.5px;
}

/* ================= FORM GROUP ================= */
.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: inline-block;
  width: 35%;
  font-size: 13px;

  /* Gradient label text: blue → gold-white */
  background: linear-gradient(45deg, #1e40af, #3b82f6, #fef3c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-weight: 600;
  margin-bottom: 0;
  text-align: left;
}

.form-group input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;

  /* Gradient border illusion via box-shadow */
  border: 1px solid transparent; 
  background: #323232;        /* black background for contrast */
  color: #FFFFFF;             /* white text */
  font-size: 14px;
  transition: all 0.25s ease;

  /* Inner glow for metallic shine */
  box-shadow: inset 0 0 6px rgba(255,255,255,0.1);
}

.form-group input::placeholder {
  /* gradient-inspired color */
  color: #fef3c7; /* soft gold-white */
  opacity: 0.7;
}

.form-group input:focus {
  outline: none;
  
  /* shiny blue-gold glow on focus */
  border-color: #3b82f6; 
  box-shadow: 0 0 6px 2px rgba(59,130,246,0.5), inset 0 0 6px rgba(255,243,199,0.2);
}

/* ================= CONFIRM PAYMENT BUTTON ================= */
.confirm-payment-btn {
  width: 100%;
  padding: 14px;
  margin-top: 12px;

  /* Shiny blue + gold-white gradient */
  background: linear-gradient(145deg, #1e40af, #3b82f6, #fef3c7); /* dark blue → lighter blue → gold-white */

  color: #ffffff;           /* white text */
  font-weight: 700;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  font-size: 16px;
  letter-spacing: 0.5px;

  /* Shadow for depth + subtle shine */
  box-shadow:
    0 6px 18px rgba(0,0,0,0.35),
    inset 0 2px 4px rgba(255,255,255,0.35); /* inner highlight for shine */

  transition: all 0.3s ease;
}

.confirm-payment-btn:hover {
  transform: translateY(-2px) scale(1.02);

  /* More intense shine on hover */
  box-shadow: 0 10px 28px rgba(0,0,0,0.5),
              inset 0 4px 6px rgba(255,255,255,0.45);

  background: linear-gradient(145deg, #3b82f6, #1e40af, #fef3c7); /* reversed for dynamic shine */
}

/* ================= MOBILE ================= */
@media (max-width: 450px) {
  .atm-card-form {
    padding: 16px 18px;
  }

  .form-group input {
    font-size: 13px;
    padding: 8px 10px;
  }

  .confirm-payment-btn {
    font-size: 15px;
    padding: 12px;
  }

  .atm-chip {
    width: 36px;
    height: 24px;
  }
}



/* ================= BACK BUTTON ================= */
.recharge-back-btn-v2 {
  position: absolute;
  top: 6px;                  /* slightly from top */
  left: 12px;                /* slightly from left */
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;    /* transparent to match header */
  color: #000000;               /* arrow color */
  font-size: 18px;           /* arrow size */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1100;
}

.recharge-back-btn-v2:active {
  transform: scale(0.95);
}

/* Make withdraw bank card text gold */
#withdrawBankCard {
  color: #D4AF37;       /* gold text */
  font-weight: 600;     /* bold for emphasis */
  font-size: 16px;      /* readable size */
  text-align: center;   /* center the text */
}

/* ===== LOGO STYLING ===== */
.recharge-logo img,
.withdraw-logo img,
.confirmation-logo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 20px;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid #D4AF37; /* gold border */
  box-shadow: 0 4px 12px rgba(212,175,55,0.4);
  background: #000000;      /* black background */
}

/* ================= FULLSCREEN OVERLAY ================= */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
}

#welcomePopup {
  display: none; /* Hide popup by default */
}

/* ================= POPUP BOX ================= */
.popup-box {
  width: 90%;
  max-width: 400px;
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 25px;
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: stretch; /* important fix */

  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  font-family: 'Arial', sans-serif;
}

/* ================= CLOSE BUTTON ================= */
.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 20px;
  cursor: pointer;
  color: #000000;
  font-weight: 300;
}

/* ================= LOGO ================= */
.modal-logo {
  width: 150px;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* ================= TEXT CONTENT ================= */
.popup-content {
  width: 100%;
}

.popup-content h3 {
  color: #090909;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 25px;
  text-align: center;
}

/* ================= INFO LIST ================= */
.info-list {
  width: 100%;
  margin-bottom: 25px;
}

/* each row */
.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  width: 100%;
}

.info-icon {
  font-size: 18px;
  width: 28px;
  color: #1e40af;
  flex-shrink: 0;
}

/* text */
.info-item p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #5c5c5c;
  text-transform: uppercase;
  text-align: left;
  flex: 1;
}

/* ================= TELEGRAM NOTE ================= */
.telegram-note {
  font-size: 16px;
  color: #0e0e0e;
  margin-bottom: 20px;
  text-align: center;
}

/* ================= TELEGRAM BUTTON ================= */
.telegram-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #23abdf;
  color: #ffffff;
  padding: 15px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  width: 100%;
  box-sizing: border-box;
}

.tg-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

/* ================= MOBILE ================= */
@media (max-width: 450px) {

  .popup-box {
    width: 90%;
    padding: 25px 18px;
  }

  .popup-content h3 {
    font-size: 20px;
  }

  .info-item p {
    font-size: 13px;
  }

}


/* 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:white;
  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: #ffffff;      /* white text */
  display: none;       /* show when active */
}

/* ===== FIXED HEADER ===== */
.product-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #1e40ff; /* blue header */
  padding: 12px 0;
  z-index: 1000;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  color: #ffffff;      /* white text */
  box-shadow: 0 3px 8px rgba(30, 64, 255, 0.2); /* subtle blue shadow */
}

.product-header i {
  margin-right: 8px;
  color: #ffffff; /* white icon */
}


.cards-container {
  padding-bottom: 120px; /* ensure space for the fixed navbar */
}

.product-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 15px;
  background: #f8f9fa;
  /* optional: allow scrolling if content is long */
  overflow-y: auto;
}

.product-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #efefef;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  /* optional: add a little bottom margin to separate cards */
  margin-bottom: 8px;
}

.card-main-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* Header & Plan Name */
.brand-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.vtradex-logo {
  width: 45px;
  height: auto;
}

.plan-name {
  font-size: 18px;
  font-weight: 700;
  color: #1e40af; /* Vtradex Green */
}

/* Info Rows (Using your original ID names) */
.card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-row {
  font-size: 14px;
  color: #000000;
}

.info-row .amount, .info-row .val {
  color: #2d3748;
  font-weight: 600;
}

/* Button (Using your original ID name) */
.invest-btn {
  background-color: #1e40af;
  color: #ffffff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  /* Strictly No Hover Effects */
}

/* Footer Section */
.card-footer {
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px dashed #e0e0e0;
}

.settlement-text {
  font-size: 12px;
  color: #1e40af;
}

/* ================= INVITE PAGE ================= */
.invite-page {
  width: 100%;
  min-height: 100vh;
  background: #faf3f3;         /* black background */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #D4AF37;              /* gold text default */
}


/* ================= INVITE HEADER (FIXED) ================= */
.invite-header-fixed-v2 {
  position: fixed;           /* keep header always on top */
  top: 0;
  left: 0;
  width: 100%;
  height: 36px;              /* slim header height */
  display: flex;
  align-items: center;
  justify-content: center;   /* center the title */
  padding: 0 16px;
  background: #e8e3e3;       /* header color */
  color: #fff;
  z-index: 1000;
  box-shadow: 0 3px 8px rgba(0,0,0,0.5);
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

/* Header title */
.invite-header-fixed-v2 h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #000000;
}

/* ================= BACK BUTTON ================= */
.invite-back-btn-v2 {
  position: absolute;
  top: 6px;
  left: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #1e40af;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1100; /* above header */
}

/* Press effect */
.invite-back-btn-v2:active {
  transform: scale(0.95);
}

/* ================= PAGE CONTENT PADDING ================= */
.invite-page-content {
  padding-top: 56px; /* slightly more than header height to avoid overlap */
}


/* Container styling */
body {
  background-color: #f8faff;
  margin: 0;
  font-family: 'Segoe UI', Roboto, sans-serif;
}

/* 1. TOP BANNER */
.invite-header-banner {
  background: linear-gradient(rgba(0, 80, 200, 0.6), rgba(0, 80, 200, 0.6)), 
              url('photo.jpg'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  height: 260px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

.banner-text h1 {
  font-size: 26px;
  font-weight: 900;
  margin: 0;
  line-height: 1.2;
}

.banner-text p {
  font-size: 14px;
  margin-top: 8px;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

/* 2. OVERLAPPING WHITE CARD */
.invite-card-white {
  background: #1e40af;
  margin: -60px 20px 25px 20px; /* -60px makes it sit on the banner */
  border-radius: 25px;
  padding: 25px 15px;
  display: flex;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 10;
}

.invite-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.label {
  font-size: 11px;
  color: #a0aec0;
  font-weight: 800;
  margin-bottom: 10px;
}

.code-display {
  font-size: 20px;
  font-weight: 900;
  color: #002d62;
  margin-bottom: 15px;
}

.link-input {
  width: 100%;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  color: #002d62;
  outline: none;
  margin-bottom: 15px;
  font-family: inherit;
}

.v-divider {
  width: 1.5px;
  background-color: #d4d2d2;
  margin: 0 10px;
}

.blue-copy-btn {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  border: none;
  padding: 10px 0;
  width: 90%;
  border-radius: 25px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: 0.2s;
}

.blue-copy-btn:active {
  transform: scale(0.95);
  background-color: #000000;
}

/* 3. BOTTOM STATS GRID (3 Boxes) */
.invite-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0 15px;
}

.blue-stat-box {
  background: linear-gradient(135deg, #010101, #0052cc);
  border-radius: 20px;
  padding: 22px 5px;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.box-label {
  font-size: 9px;
  font-weight: 700;
  opacity: 0.7;
  margin-bottom: 8px;
}

.box-value {
  font-size: 18px;
  font-weight: 900;
}

/* MOBILE FIXES */
@media (max-width: 380px) {
  .banner-text h1 { font-size: 22px; }
  .code-display, .link-input { font-size: 16px; }
  .box-value { font-size: 15px; }
  .blue-copy-btn { font-size: 11px; }
}

/* ================= INVITE STATS GRID ================= */
.invite-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0;
}

/* ================= STAT BOX COMMON ================= */
.stat-box {
  padding: 20px 12px;
  border-radius: 12px;
  color: #fff;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}

.stat-box:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.stat-box .box-label {
  display: block;
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 6px;
}

.stat-box .box-value {
  display: block;
  font-size: 18px;
  font-weight: 700;
}

/* ================= COLOR VARIANTS ================= */
.green-stat-box {
  background: linear-gradient(135deg, #16a34a, #22c55e); /* shiny green gradient */
  border: 1px solid rgba(34,197,94,0.6);
  box-shadow: 0 4px 15px rgba(34,197,94,0.4);
}

.red-stat-box {
  background: linear-gradient(135deg, #dc2626, #f87171); /* shiny red gradient */
  border: 1px solid rgba(248,113,113,0.6);
  box-shadow: 0 4px 15px rgba(248,113,113,0.4);
}

.blue-stat-box {
  background: linear-gradient(135deg, #1e40af, #3b82f6); /* shiny blue gradient */
  border: 1px solid rgba(59,130,246,0.6);
  box-shadow: 0 4px 15px rgba(59,130,246,0.4);
}

/* ================= TEAM PERFORMANCE CARD ================= */
.team-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  max-width: 500px; /* Adjust based on your layout */
  margin: 20px auto;
  font-family: sans-serif;
}

.team-performance-text {
  font-size: 18px;
  font-weight: 900;
  color: #002d62;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.team-performance-text i {
  color: #4caf50; /* Green/Blue mix for the icon */
}

/* Row Styling */
.performance-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.lv-badge {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 16px;
}

.lv1 { background: #002d62; }
.lv2 { background: #4ba3e3; }

/* Stats Layout */
.stat-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.value {
  font-size: 18px;
  font-weight: 800;
  color: #002d62;
}

.label {
  font-size: 13px;
  color: #8e99af;
  margin-top: 4px;
}

.divider {
  border: none;
  border-top: 1px solid #f0f3f7;
  margin: 0;
}

/* MOBILE RESPONSIVE */
@media (max-width: 480px) {
  .value { font-size: 16px; }
  .label { font-size: 12px; }
  .lv-badge { width: 50px; height: 50px; font-size: 14px; }
}





/* ================= COMMISSION DETAILS ================= */

.commission-details-box {
  width: 100%;
  margin: 20px 0 30px;
  background: #FFFFFF;          /* white card background */
  border-radius: 0;
  box-shadow: none;
  border-top: 3px solid #79a2e5; /* blue accent */
  padding-bottom: 10px;
}

.commission-header {
  background: #FFFFFF;           /* white header */
  color: #79a2e5;                /* blue text */
  font-weight: 800;
  font-size: 16px;
  padding: 16px 14px;
  text-transform: uppercase;
}

.commission-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 14px;
  border-bottom: 1px solid #E0E0E0;  /* light gray separator for subtlety */
}

.commission-number {
  min-width: 28px;
  height: 28px;
  background: #79a2e5;          /* blue circle */
  color: #FFFFFF;               /* white number text */
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
}

.commission-text {
  font-size: 15px;
  font-weight: 600;
  color: #000000;               /* black text for readability */
  line-height: 1.4;
}

.rate-blue {
  color: #79a2e5;               /* blue highlight */
  font-weight: 800;
}

/* Mobile polish */
@media (max-width: 480px) {
  .commission-text {
    font-size: 14px;
  }
}

/* ================= WITHDRAW PAGE ================= */
.withdraw-page {
  width: 100%;
  background: #f9f9f9;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /* remove height & overflow */
}

/* ================= SLIM FIXED HEADER ================= */
.withdraw-header-fixed {
  width: 100%;
  height: 48px;                 /* slim height */
  background: #003366;          /* header color */
  color: #ffffff;               /* text color */

  display: flex;
  align-items: center;          /* vertically centers title */
  justify-content: center;

  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;

  box-shadow: 0 3px 8px rgba(0,0,0,0.5); /* slightly lighter shadow for slim header */
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  padding: 0 16px;              /* horizontal padding */
}

/* Header title */
.withdraw-header-fixed h2 {
  margin: 0;
  font-size: 18px;               /* slightly smaller font for slim look */
  font-weight: 700;
  color: #fdfdfd;
}



/* ================= BACK BUTTON ================= */
.withdraw-back-btn-v2 {
  position: absolute;
  top: 6px;                   /* slightly from top */
  left: 12px;                  /* slightly from left */
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: #fff;                /* arrow color */
  font-size: 18px;            /* arrow size */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1100;              /* above header */
}

.withdraw-back-btn-v2:active {
  transform: scale(0.95);
}



/* Background & Layout */
body {
  background-color: #fcfaf2; /* Milk Background */
  margin: 0;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.recharge-container {
  padding: 20px;
  max-width: 500px;
  margin: 0 auto;
}

/* Header Title Area */
.header-title {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px 0;
}

.header-title h2 {
  font-size: 18px;
  color: #003366; /* Deep Sky Blue */
  margin: 0;
}

.back-btn {
  position: absolute;
  left: 0;
  background: white;
  border: 1px solid #eee;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Container Background */
.recharge-container {
  background-color: #fcfaf2; /* Milk Color */
  padding: 15px;
  min-height: 100vh;
}

/* Your Original Balance Card - Styled with Sky Blue/Gold hints */
.balance-card-red {
  background: linear-gradient(135deg, #000000, #575756); /* Sky Blue Dark */
  border-radius: 20px;
  padding: 25px;
  color: white;
  position: relative;
  overflow: hidden;
  margin: 20px 0;
  border-bottom: 3px solid #efefef; /* Metallic Gold bottom edge */
}

/* The White Card UI Pattern */
.withdrawal-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.card-section-title {
  color: #222222;
  font-size: 16px;
  margin-bottom: 20px;
}

/* The "Vtradex" Pattern: Left Vertical Accent Bars */
.input-group-container {
  margin-bottom: 20px;
}

.balance-amount {
  color: #ffffff;
  font-weight: 700;
  margin-top: 12px;
  font-size: 26px;
  letter-spacing: 1px;
}


#withdrawBankCard .display-box {
  background: #f9f9f9;
  color: #000;
}

#withdrawBankCard p,
#withdrawBankCard label {
  color: #000;
  font-weight: 500;
}


.input-group-container label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #003366; /* Sky Blue */
  margin-bottom: 8px;
  padding-left: 10px;
  border-left: 4px solid #003366; /* Metallic Gold Vertical Bar */
}

/* Inputs & Boxes */
input[type="number"], .display-box {
  width: 100%;
  padding: 15px;
  background-color: #f9fafb;
  border: 1px solid #edf2f7;
  border-radius: 10px;
  font-size: 15px;
  box-sizing: border-box;
  outline: none;
}

/* Note Styling */
.withdrawal-note {
  font-size: 13px;
  color: #718096;
  margin: 15px 0 25px 0;
  line-height: 1.5;
}

/* Shiny Metallic Gold Button */
.withdraw-submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #d4af37 0%, #f9e27d 50%, #d4af37 100%);
  color: #003366; /* Contrast Blue text */
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

/* Add Account Button Styling */
.action-btn-gold {
  background: transparent;
  color: #d4af37;
  border: 1px dashed #d4af37;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
}


/* ================= RECORDS PAGE ================= */
.records-page {
  width: 100vw;
  padding-top: 60px;
  margin: 0;
  font-family: Arial, sans-serif;
  height: 100vh;
  overflow-y: auto;
  background: #f2f4f8;
  box-sizing: border-box;
}

/* ===============================================
   RECORDS PAGE SPACING
   =============================================== */
.records-page {
  padding-top: 64px;
}


/* ===============================================
   FIXED RECORDS HEADER (BLACK + GOLD)
   =============================================== */
.records-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;

  background: #ffffff;    /* blue background */
  color: #000000;         /* gold text */

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 10000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5); /* stronger shadow for depth */
}



/* Header title */
.records-header h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ===============================================
   3D BACK BUTTON (BLACK + GOLD)
   =============================================== */
.records-back-btn {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);

  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: #767676;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  box-shadow: 2px 2px 6px rgba(0,0,0,0.5),
              inset -2px -2px 6px rgba(212,175,55,0.5); /* subtle gold inset for 3D effect */

  transition: all 0.2s ease;
}

/* ================= SIMPLE BACK BUTTON ================= */
.records-back-btn {
  position: absolute;
  
 

 
  border: none;

  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
}




/* ================= RECORD CARD (PREMIUM WHITE) ================= */
.record-card {
  width: 100%;
  min-height: 90px;
  margin: 0 0 12px 0;
  padding: 16px;

  /* Clean White Background */
  background: #ffffff;
  color: #1e293b; /* Slate dark text */

  border-radius: 16px;
  border: 1px solid #f1f5f9; /* Very light border */

  display: flex;
  align-items: center;
  gap: 14px;
  box-sizing: border-box;

  /* Soft shadow for depth */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.record-card:last-child{
  margin-bottom: 100px;
}
/* ================= ICON CONTAINER ================= */
.record-icon-box {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.icon-deposit { color: #10b981; background: rgba(16, 185, 129, 0.1); }
.icon-withdrawal { color: #ef4444; background: rgba(239, 68, 68, 0.1); }
.icon-bonus { color: #f59e0b; background: rgba(245, 158, 11, 0.1); }

/* ================= CONTENT LAYOUT ================= */
.record-middle {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.record-transaction {
  font-weight: 700;
  font-size: 15px;
  color: #0f172a;
}

.record-time {
  font-size: 12px;
  color: #64748b; /* Muted gray for time */
}

.record-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.record-amount {
  font-weight: 800;
  font-size: 16px;
  color: #0f172a;
}

/* ================= STATUS BADGES ================= */
.record-status {
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
}

.status-success { background: #10b981; color: #ffffff; }
.status-pending { background: #f59e0b; color: #ffffff; }
.status-declined, .status-failed { background: #ef4444; color: #ffffff; }

@media (max-width: 480px) {
  .record-card { padding: 14px; gap: 12px; }
  .record-icon-box { width: 40px; height: 40px; font-size: 16px; }
}

/* ================= FULL PAGE ================= */
#myInvestmentPage {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  box-sizing: border-box;
  background: #f2f1f1;        /* white background */
  padding-top: 100px;         /* reduced from 120px to push cards up */
  margin: 0;
  width: 100vw;
}


/* ===============================================
   INVESTMENT PAGE SPACING
   =============================================== */
.investment-page {
  padding-top: 64px;
}


/* ===============================================
   FIXED INVESTMENT HEADER (BLACK + GOLD)
   =============================================== */
.investment-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;

  background: #ffffff;        /* black background */
  color: #000000;             /* gold text */

  display: flex;
  align-items: center;
  justify-content: center;

 
}

/* Header Title */
.investment-header h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #000000;             /* gold title */
}

/* ===============================================
   3D BACK BUTTON
   =============================================== */
.investment-back-btn {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);

  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background : #212121;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  box-shadow: 2px 2px 6px rgba(0,0,0,0.3),
              inset -2px -2px 6px rgba(255,255,255,0.7);

  transition: all 0.2s ease;
}


/* Arrow inside button */
.investment-back-btn .arrow {
  width: 12px;
  height: 12px;

 
  border-bottom: 2px solid #000000;

  transform: rotate(45deg);
}


/* Press effect */
.investment-back-btn:active {
  transform: translateY(-50%) scale(0.95);
  box-shadow: inset 2px 2px 5px rgba(0,0,0,0.25),
              inset -2px -2px 5px rgba(255,255,255,0.6);
}


/* ================= ATM CARD ================= */
.atm-card {
  background: linear-gradient(145deg, #1e40af, #3b82f6); /* deep blue → sky blue */
  color: #fef3c7;               /* fallback shiny gold-white */
  border-radius: 18px;
  padding: 14px 16px;

  margin: 2px 16px;             /* spacing left & right */
  max-width: 420px;
  width: calc(100% - 32px);     /* responsive spacing */

  display: flex;
  flex-direction: column;
  gap: 10px;

  /* metallic border with blue and gold-white */
  border: 2px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(45deg, #3b82f6, #fef3c7, #3b82f6);

  /* glowing metallic effect */
  box-shadow:
    0 4px 20px rgba(254,243,199,0.4), /* soft gold glow */
    0 0 15px rgba(59,130,246,0.25);   /* soft blue glow */
}

/* ================= TOP ================= */
.atm-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.atm-top .plan {
  font-weight: 700;
  font-size: 15px;

  /* metallic gold-white gradient text */
  background: linear-gradient(45deg, #fef3c7, #ffec8b, #fef3c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.atm-top .price {
  font-weight: 700;
  font-size: 16px;
  color: #ffffff; /* price stays white for contrast */
}

/* ================= GRID ================= */
.atm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.atm-grid .box {
  background: rgba(255,243,199,0.12); /* subtle gold-white glass effect */
  border: 1px solid rgba(255,243,199,0.3);
  border-radius: 10px;
  padding: 6px 8px;
  text-align: center;
}

.atm-grid small {
  font-size: 11px;
  color: #ffffffa0; /* semi-transparent white */
}

.atm-grid strong {
  display: block;
  margin-top: 2px;
  font-size: 14px;
  color: #ffffff; /* strong white text */
}

/* ================= SLIM STYLE ================= */
.atm-card {
  height: 110px;       /* slim ATM look */
}

/* ================= MOBILE ================= */
@media(max-width:480px){
  .atm-card{
    height:auto;
    padding:12px;
  }
}


/* ================= CUSTOM ALERT ================= */
.custom-alert {
  position: fixed;
  top: 50%;           /* center vertically */
  left: 50%;          /* center horizontally */
  transform: translate(-50%, -50%); /* center perfectly */

  background: rgba(0, 0, 0, 0.85);  /* semi-transparent black */
  color: #ffffff;                   /* white text */

  padding: 14px 24px;
  border-radius: 12px;

  font-weight: 500;
  font-size: 15px;
  text-align: center;

  max-width: 90%;       /* responsive width */
  box-sizing: border-box;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 99999;
}

/* ================= SHOW ALERT ================= */
.custom-alert.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}


/* ================= FULLSCREEN LOADER ================= */
#pageLoader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #666464;   /* ash background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

/* ================= DOTS LOADER CONTAINER ================= */
.loader-dots {
  position: relative;
  width: 40px;   /* smaller container */
  height: 40px;
  animation: rotateDots 1.5s linear infinite;
}

/* ================= INDIVIDUAL DOTS ================= */
.loader-dots span {
  position: absolute;
  width: 8px;    /* smaller dot */
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform-origin: -14px 0; /* smaller radius for tight circle */
}

/* Arrange 5 dots evenly around circle */
.loader-dots span:nth-child(1) { transform: rotate(0deg) translateX(14px); }
.loader-dots span:nth-child(2) { transform: rotate(72deg) translateX(14px); }
.loader-dots span:nth-child(3) { transform: rotate(144deg) translateX(14px); }
.loader-dots span:nth-child(4) { transform: rotate(216deg) translateX(14px); }
.loader-dots span:nth-child(5) { transform: rotate(288deg) translateX(14px); }

/* ================= ROTATION ANIMATION ================= */
@keyframes rotateDots {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Investment Ticker */
.investment-ticker {
  width: 100%;
  overflow: hidden;
  background-color: #f3f4f6;  /* light gray */
  padding: 10px 0;
  border-radius: 12px;
  margin: 20px 0;            /* space under the ATM card image */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.ticker-content {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;         /* start offscreen to the right */
  animation: ticker 15s linear infinite;
}

.ticker-content span {
  margin-right: 50px;
  font-size: 14px;
  color: #111827;
}

.ticker-content i {
  color: #EF4444; /* red megaphone icon */
  margin-right: 6px;
}

/* Keyframes for horizontal scrolling */
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-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: #79a2e5; /* 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: #000000;   /* 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;               /* green text */
  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: #1faa59;
}

.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(0, 0, 0, 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: #0088cc;       /* Telegram blue */
  color: #ffffff;            /* white icon/text */

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;
  text-decoration: none;

  box-shadow: 0 8px 20px rgba(0,136,204,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(0,136,204,0.45); /* stronger blue shadow */
}

/* Mobile safe */
@media (max-width: 480px) {
  .profile-page .telegram-float-profile {
    bottom: 100px;
    right: 12px;            /* adjust right for mobile */
  }
}