
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 {
  width: 100%;
  max-width: 450px;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: none; /* Controlled by .active */
  flex-direction: column;
  margin: 20px;
}

.container.active {
  display: flex;
}

/* Typography */
.welcome-text h2 {
  color: #1a202c; /* Dark Navy */
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
  text-align: center;
}

.welcome-text p {
  color: #718096;
  margin-bottom: 30px;
  text-align: center;
}

/* Forms */
form {
  display: flex;
  flex-direction: column;
}

label {
  font-size: 14px;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 8px;
  text-align: left;
}

.input-group {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 15px;
  color: #a0aec0;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 14px 14px 14px 45px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  box-sizing: border-box;
}

input::placeholder {
  color: #cbd5e0;
}

/* Buttons */
button {
  width: 100%;
  padding: 16px;
  background-color: #711db0; /* The Red from screenshot */
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
}

.btn-outline {
  background: transparent;
  border: 1px solid #e2e8f0;
  color: #4a5568;
  margin-top: 20px;
}

/* Divider for Login Page */
.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 25px 0 5px;
  color: #a0aec0;
  font-size: 13px;
}

.divider::before, .divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #e2e8f0;
}

.divider span {
  padding: 0 10px;
}

.toggle-text {
  text-align: center;
  margin-top: 25px;
  font-size: 14px;
  color: #4a5568;
}

.toggle-text a {
  color: #711db0;
  text-decoration: none;
  font-weight: 600;
}

/* 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: #28a745;            /* 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;
}


/* ================= QUICK ACTIONS ================= */
.action-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 94%;
  max-width: 500px;
  margin: 15px auto;
}

.action-btn {
  background: #ffffff;
  border-radius: 16px;
  padding: 15px 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  text-decoration: none;
}

.action-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px; /* Squircle shape */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

/* Colors matched to image */
.icon-deposit { background: #e6f7ef; color: #00b386; }
.icon-withdraw { background: #eef4ff; color: #3b82f6; }
.icon-team { background: #f5f3ff; color: #8b5cf6; }
.icon-gift { background: #fff1f6; color: #ec4899; }

.action-btn span {
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

/* ================= INVESTMENT PLANS SECTION ================= */
.investment-section {
  width: 94%;
  max-width: 500px;
  margin: 20px auto;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.section-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

.view-all {
  font-size: 14px;
  font-weight: 600;
  color: #00b386; /* Green "View all" */
  text-decoration: none;
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.badge-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 18px 5px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.badge-card h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #111;
}

/* Specifically for the "100% Secured" card */
.badge-card.secured h4 {
  color: #00b386; 
}

.badge-card p {
  margin: 2px 0 0 0;
  font-size: 12px;
  color: #999; /* Grey subtext */
  font-weight: 500;
}






/* White container around the flyer */
.flyer-container {
  background-color: #fff;      /* white background */
  padding: 16px;               /* space around flyer */
  border-radius: 16px;         /* rounded corners */
  box-shadow: 0 4px 15px rgba(0,0,0,0.15); /* subtle shadow */
  max-width: 600px;            /* optional: limit width */
  margin: 20px auto;           /* center container with some vertical margin */
}

/* Flyer Banner - full width inside container */
.balance-flyer {
  width: 100%;       /* fill the container width */
  height: auto;
  overflow: hidden;
  border-radius: 12px; /* match container rounded corners slightly */
  position: relative;
  margin: 0;
}

/* Slider wrapper */
.flyer-slider {
  display: flex;
  width: 100%;
  height: auto;
  transition: transform 0.6s ease-in-out;
}

/* Each image in the slider */
.flyer-card {
  width: 100%;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
  border-radius: 12px; /* match container */
}


/* 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;
}

/* Container adjustments */
.dashboard-container {
  width: 95%;
  max-width: 420px;
  margin: 20px auto;
  font-family: sans-serif;
}

/* RED TOP CARD - Matching the image */
.top-header {
  background: #28a745; /* Solid vibrant red from image */
  border-radius: 20px 20px 20px 20px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column; /* Stacked text like the image */
  justify-content: center;
  align-items: flex-start; /* Align text to the left */
  color: #fff;
  position: relative;
  min-height: 100px;
}

/* Add the Profile Circle (Pseudo-element to avoid changing HTML) */
.top-header::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 2px solid hsl(0, 0%, 100%);
  background: url('photo1.jpg') center/cover no-repeat;
  background-color: #28a745;
}

/* Move text over to make room for the circle */
.card-user-number {
  margin-left: 85px;
  font-size: 22px;
  font-weight: bold;
}


/* ================= WHITE BALANCE CARD ================= */
.balance-bar-slim {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px;
  margin-top: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);

  display: flex;
  justify-content: space-between; /* space between balance and icon */
  align-items: center;
}

/* ================= LEFT SIDE: BALANCE INFO ================= */
.balance-info-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.label {
  font-size: 16px;
  color: #888;
  font-weight: 500;
}

.balance-amount-slim {
  font-size: 32px;
  font-weight: 800;
  color: #28a745;
}

/* ================= BONUS TEXT ================= */
.bonus {
  font-size: 12px;
  color: #bbb;
  display: block;
}

/* ================= RIGHT SIDE: BANK ICON ================= */
.balance-bank-icon{
  width: 45px;
  height: 45px;

  background: #ffebee;
  color: #000000;

  border-radius: 12px;
  border: 1px solid #ffcdd2;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  cursor: pointer;
  transition: 0.2s;
}

.balance-bank-icon:hover{
  transform: scale(1.05);
}

/* ================= HIDE OLD UNUSED ELEMENTS ================= */
.connector, .account-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: #28a745; /* Dark grey for inactive icons */
}

/* TEXT STYLE */
.bottom-nav .nav-item span {
  font-size: 13px;
  font-weight: 600;
  color: #28a745; /* 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: #000000; /* Red icon color */
}

.nav-item.active span {
  color: #28a745; /* Red text color */
}

/* ===== PROFILE FIXED HEADER ===== */
.profile-header-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #28a745; /* 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(255, 215, 0, 0.3); /* subtle gold shadow */
}

.profile-header-bar i {
  margin-right: 8px;
  color: #28a745; /* 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: #28a745;
  text-align: center;
}


:root {
  --glass-blue-bg: rgba(0, 123, 255, 0.1); /* Light glass blue */
  --icon-blue: #28a745; /* 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: #28a745;          /* 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: #28a745;           /* black header */
  z-index: 10000;         
  text-align: center;
  padding: 12px 20px;      
  border-bottom: 2px solid #28a745; /* 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: #ffffff;        /* 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 {
  padding: 15px;
  background: #ffffff; /* Clean white background */
  min-height: 100vh;
  font-family: sans-serif;
}

.recharge-subheader {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin: 20px 0 10px 0;
  text-align: left;
}

/* ================= AMOUNT GRID ================= */
.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 25px;
}

.amount-option {
  background: #f8f9fa; /* Light grey texture */
  padding: 20px 5px;
  border-radius: 12px;
  font-weight: 800;
  color: #333; 
  text-align: center;
  position: relative; /* For lock icon positioning */
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  border: 1px solid transparent;
  font-size: 15px;
  cursor: pointer;
}

/* The Lock Icon */
.amount-option i {
  position: absolute;
  bottom: 8px;
  right: 8px;
  color: #28a745; /* Green Lock */
  font-size: 14px;
  opacity: 0.6;
}

.amount-option.active {
  background: #fff;
  border: 1.5px solid #28a745;
  color: #28a745;
}

/* ================= CUSTOM INPUT ================= */
.custom-amount-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 25px;
  background: #fff;
}

.currency-icon {
  color: #666;
  font-weight: bold;
  margin-right: 8px;
  font-size: 18px;
}

#customAmount {
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  color: #333;
  font-weight: 600;
}

#customAmount::placeholder {
  color: #999;
}

/* ================= PURPLE GRADIENT BUTTON ================= */
.deposit-btn {
  width: 100%;
  padding: 18px;
  /* Specific green-to-light-green gradient from image */
  background: linear-gradient(90deg, #28a745, #34d399); 
  color: #ffffff;
  font-weight: 800;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  font-size: 16px;
  /* Glow effect */
  box-shadow: 0 8px 20px rgba(113, 29, 176, 0.3);
  text-transform: none;
}

/* ================= INFO SECTION ================= */
.info-card {
  margin-top: 30px;
  background: #fdf2ff; /* Very light purple tint */
  padding: 15px;
  border-radius: 12px;
}

.info-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.info-icon {
  color: #28a745;
  font-size: 16px;
}

.info-title {
  font-weight: 700;
  color: #28a745;
  font-size: 14px;
}

.info-list {
  padding-left: 15px;
  color: #555;
  font-size: 13px;
  line-height: 1.6;
}


/* ===== 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: #000000;       /* 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: #000000;       /* black header */
  color: #D4AF37;            /* 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: #D4AF37;            /* 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: #000000;        /* black card */
  padding: 14px 16px;
  border-radius: 16px;
  margin-bottom: 18px;
  color: #D4AF37;             /* gold text */
  font-family: 'Poppins','Orbitron',sans-serif;
  border: 1px solid #D4AF37;  /* gold border */
  box-shadow:
    0 6px 16px rgba(0,0,0,0.3),
    inset 0 1px 3px rgba(255,255,255,0.05);
  transition: 0.25s ease;
}

.account-details:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.4);
}

/* ================= DETAIL ROWS ================= */
.detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed #D4AF37;  /* gold dashed */
  font-size: 14px;
}

.detail-row:last-child {
  border-bottom: none;
}

/* GOLD LABEL TEXT */
.detail-row span {
  color: #D4AF37;
  font-weight: 600;
}

/* WHITE / GOLD AMOUNT / ACCOUNT NUMBER */
.detail-row strong {
  color: #FFFFFF;
  font-weight: 700;
}

/* ================= NEW COPY BUTTON ================= */
.copy-btn {
  border: none;
  background: linear-gradient(145deg, #D4AF37, #B8860B); /* gold gradient */
  color: #000000;   /* black 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.3);
  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.25);
}

/* HOVER GLOW */
.copy-btn:hover {
  background: linear-gradient(145deg, #B8860B, #D4AF37);
  box-shadow: 0 0 10px rgba(212,175,55,0.7);
}

/* ================= 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, #D4AF37, #B8860B); /* gold 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;
  color: #D4AF37;            /* gold text */
  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;
  color: #D4AF37;            /* gold label text */
  font-weight: 600;
  margin-bottom: 0;
  text-align: left;
}

.form-group input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #D4AF37; /* gold border */
  background: #000000;        /* black input background */
  color: #FFFFFF;             /* white input text */
  font-size: 14px;
  transition: all 0.25s ease;
}

.form-group input::placeholder {
  color: #D4AF37;             /* gold placeholder */
  opacity: 0.6;
}

.form-group input:focus {
  outline: none;
  border-color: #D4AF37;
  box-shadow: 0 0 0 2px rgba(212,175,55,0.3); /* subtle gold glow */
}


/* ================= CONFIRM PAYMENT BUTTON ================= */
.confirm-payment-btn {
  width: 100%;
  padding: 14px;
  margin-top: 12px;
  background: linear-gradient(145deg, #D4AF37, #B8860B); /* gold gradient */
  color: #000000;           /* black text */
  font-weight: 700;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  font-size: 16px;
  letter-spacing: 0.5px;

  box-shadow:
    0 6px 18px rgba(0,0,0,0.35),
    inset 0 2px 4px rgba(255,255,255,0.2); /* subtle inner shine */

  transition: all 0.3s ease;
}

.confirm-payment-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 28px rgba(0,0,0,0.5);
  background: linear-gradient(145deg, #B8860B, #D4AF37); /* darker gold hover */
}

/* ================= 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;
  }
}


/* ===== CLEAN FIXED RECHARGE HEADER ===== */
.recharge-header-fixed {
  position: fixed;        
  top: 0;
  left: 50%;              
  transform: translateX(-50%);
  width: 100%;
  height: 60px; /* Standardized height */
  background: #ffffff; /* Switched from purple to clean white */
  z-index: 10000;         
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #f0f0f0; 
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.recharge-header-fixed h2 {
  margin: 0;
  color: #001f3f; /* Dark Navy for a premium feel */
  font-size: 18px;
  font-weight: 700;      
  font-family: 'Poppins', sans-serif;
}

/* ================= CIRCULAR BACK BUTTON ================= */
.recharge-back-btn-v2 {
  position: absolute;
  left: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #eee;
  background: #ffffff;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.1s ease;
  z-index: 1100;
  outline: none;
}

.recharge-back-btn-v2:active {
  transform: scale(0.95);
  background: #f9f9f9;
}

/* 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.5); /* Dimmed background */
}

#welcomePopup {
  display: flex; /* Ensure it centers when shown */
}

/* ================= THE MODAL BOX ================= */
.popup-box {
  width: 90%;
  max-width: 400px;
  background: #ffffff;
  border-radius: 12px; /* Smoother rounded corners */
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  font-family: 'Inter', sans-serif;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================= MODAL HEADER ================= */
.modal-header-v2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}

.header-title-flex {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-title-flex i {
  color: #333;
  font-size: 20px;
}

.header-title-flex h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.popup-close {
  font-size: 22px;
  cursor: pointer;
  color: #999;
}


#welcomePopup {
  display: none; /* Hide popup by default */
}

/* ================= MODAL CONTENT ================= */
.popup-content {
  padding: 20px;
  max-height: 400px;
  overflow-y: auto;
}

.popup-text {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

/* Green Bullet Points style */
.info-list-v2 {
  margin-top: 15px;
}

.info-item-v2 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13.5px;
  color: #444;
}

.info-item-v2 i {
  color: #28a745; /* Green check/icon */
  font-size: 14px;
  margin-top: 3px;
}

/* ================= TELEGRAM BUTTONS (SIDE BY SIDE) ================= */
.modal-footer-btns {
  display: flex;
  gap: 10px;
  padding: 0 20px 20px 20px;
}

.telegram-btn-v2 {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #28a745; /* Vtradex Green */
  color: #ffffff;
  padding: 12px 5px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  gap: 6px;
}

.telegram-btn-v2 i {
  font-size: 16px;
}

.telegram-btn-v2:active {
  opacity: 0.8;
}

/* 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 */
}


/* ================= PRODUCT LIST ================= */
.product-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 15px;
  background: #f8f9fa; /* Light grey background like the image */
  padding-bottom: 100px;
}

/* ================= PRODUCT CARD ================= */
.product-card {
  background: #ffffff;
  border-radius: 20px; /* Softer rounded corners */
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Subtle texture/shadow */
  padding: 20px;
  border: 1px solid #f0f0f0;
}

/* ================= CARD HEADER (VIP Badge & Icon) ================= */
.card-header-flex {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.card-image-box {
  width: 40px;
  height: 40px;
  background: #28a745;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-image-box img {
  width: 25px;
 
}

.plan-name {
  background: #28a745;
  color: white;
  padding: 4px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
}

/* ================= CARD BODY ================= */
.card-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

.info-label {
  color: #000;
}

.info-value {
  color: #28a745; /* Green text for numbers */
  font-weight: 800;
}

/* Speed/Cycle Section */
.speed-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.speed-label {
  color: #000;
  font-weight: 700;
}

.speed-value {
  color: #28a745;
  font-weight: 700;
}

/* Total Revenue Section */
.total-revenue-box {
  text-align: center;
  margin-top: 10px;
}

.total-label {
  font-size: 12px;
  font-weight: 700;
  color: #666;
  display: block;
}

.total-amount {
  color: #10b981; /* Green color for the total */
  font-size: 18px;
  font-weight: 800;
}

/* ================= BUTTON (No Hover) ================= */
.invest-btn {
  display: block;
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  border: none;
  background: #28a745; /* Solid Green */
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-top: 15px;
  cursor: pointer;
  transition: none; /* Removed hover effects */
}

.invest-btn:hover {
  background: #28a745; /* Stays same on hover */
  transform: none;
}


/* ================= 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 */
}


/* ================= CLEAN FIXED INVITE HEADER ================= */
.invite-header-fixed-v2 {
  position: fixed;           /* Keep header always on top */
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;              /* Standardized premium height */
  display: flex;
  align-items: center;
  justify-content: center;   /* Center the title */
  padding: 0 16px;
  background: #ffffff;       /* Clean white background */
  color: #001f3f;            /* Dark Navy text */
  z-index: 1000;
  border-bottom: 1px solid #f0f0f0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  font-family: 'Poppins', sans-serif;
}

/* Header title */
.invite-header-fixed-v2 h2 {
  margin: 0;
  font-size: 18px;           /* Consistent font size */
  font-weight: 700;
  color: #001f3f;
}

/* ================= CIRCULAR BACK BUTTON ================= */
.invite-back-btn-v2 {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%); /* Perfectly centered vertically */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #eee;
  background: #ffffff;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: all 0.2s ease;
  z-index: 1100;
  outline: none;
}

/* Press effect */
.invite-back-btn-v2:active {
  transform: translateY(-50%) scale(0.95);
  background: #f9f9f9;
}


/* ================= 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('photo8.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: white;
  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: #2b80ff;
  color: white;
  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: #1e60d0;
}

/* 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, #79a2e5, #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; }
}

/* ================= 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 */
}


/* ================= 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 #f0f0f0;
}

.withdraw-header-fixed h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #001f3f; /* 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 #eee;
  background: #ffffff;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* ================= PAGE CONTAINER ================= */
.recharge-container {
  background-color: #f4f7f6; 
  padding: 20px;
  padding-top: 80px; /* Space for fixed header */
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
}

/* ================= THE WHITE CARD BOX ================= */
.withdrawal-card-box {
  background: #ffffff;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.section-title-green {
  color: #28a745;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 20px;
  display: block;
}

/* ================= INPUT BLOCKS WITH GREEN BAR ================= */
.input-block-group {
  margin-bottom: 20px;
  border-left: 4px solid #28a745; /* The Green Vertical Bar */
  padding-left: 15px;
}

.block-label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #001f3f;
  margin-bottom: 8px;
}

.custom-input-field {
  width: 100%;
  background: #fdfdfd;
  border: 1px solid #edf2f7;
  border-radius: 10px;
  padding: 14px 15px;
  font-size: 15px;
  color: #333;
  outline: none;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.02);
}

.custom-input-field::placeholder {
  color: #a0aec0;
}

/* ================= NOTE TEXT ================= */
.withdraw-note {
  font-size: 13px;
  color: #718096;
  line-height: 1.5;
  margin: 20px 0;
}

/* ================= GREEN ACTION BUTTON ================= */
.withdraw-submit-btn {
  width: 100%;
  background-color: #28a745; /* Vtradex Green */
  color: white;
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: opacity 0.2s;
}

.withdraw-submit-btn:active {
  opacity: 0.8;
}

/* ================= BANK DISPLAY STYLE ================= */
.bank-display-area {
  background: #f8fafc;
  padding: 12px;
  border-radius: 8px;
  margin-top: 5px;
  font-size: 14px;
}

/* ================= 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;
}


/* ================= CLEAN FIXED HEADER ================= */
.records-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #ffffff; /* Clean white background */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  border-bottom: 1px solid #f0f0f0;
  font-family: 'Poppins', sans-serif;
}

/* Header title */
.records-header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #001f3f; /* 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 #eee; /* Subtle border like the image */
  background: #ffffff;
  color: #333;
  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;
}


/* ================= 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;
}


/* ================= CLEAN FIXED INVESTMENT HEADER ================= */
.investment-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px; /* Standardized with your other new headers */
  background: #ffffff; /* Clean white */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  border-bottom: 1px solid #f0f0f0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  font-family: 'Poppins', sans-serif;
}

/* Header Title */
.investment-header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #001f3f; /* Dark Navy for consistency */
}

/* ================= CIRCULAR BACK BUTTON ================= */
.investment-back-btn {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);

  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #eee;
  background: #ffffff;
  color: #333;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: all 0.2s ease;
  outline: none;
}

/* Press effect */
.investment-back-btn:active {
  transform: translateY(-50%) scale(0.95);
  background: #f9f9f9;
}

/* ================= INVESTMENT CARD ================= */
.atm-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  max-width: 420px;
  width: calc(100% - 32px);
  margin: 10px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  border: none; /* Removed the gold border */
}

/* ================= BLUE HEADER ================= */
.atm-top {
  background: linear-gradient(135deg, #4A76D1, #3B5998);
  padding: 16px 20px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.atm-top .plan {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.atm-top .cycle {
  font-size: 13px;
  opacity: 0.9;
}

/* ================= CARD BODY ================= */
.atm-body {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.atm-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #333;
  font-weight: 700;
  font-size: 16px;
}

.info-item i {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= IMAGE AREA ================= */
.atm-image-side img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 12px;
  padding: 5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border: 1px solid #f0f0f0;
}

/* ================= TIMER BUTTON ================= */
.timer-container {
  padding: 0 20px 20px 20px;
}

.countdown-btn {
  background: linear-gradient(to right, #4A76D1, #6A89CC);
  color: white;
  text-align: center;
  padding: 14px;
  border-radius: 15px;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 6px 15px rgba(74, 118, 209, 0.3);
}


.info-item i {
  font-size: 18px;
  width: 25px; /* Ensures text stays aligned even if icons vary in width */
  text-align: center;
  margin-right: 10px;
}

/* Optional: Add a slight pulse to the timer to make it look active */
.countdown-btn {
  transition: opacity 0.3s ease;
  cursor: default;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ================= 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);
}


/* ================= EMPTY STATE UI ================= */
.empty-state-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
  background: transparent;
}

.empty-icon-circle {
  width: 70px;
  height: 70px;
  background: #f8f9fa; /* Very light grey circle */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.empty-icon-circle i {
  font-size: 28px;
  color: #cccccc; /* Muted grey 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: #888;
  font-weight: 400;
}

/* THE GREEN BUTTON */
.browse-plans-btn {
  background: #00b386; /* Premium Emerald Green */
  color: #ffffff;
  border: none;
  padding: 12px 35px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 179, 134, 0.15);
}

.browse-plans-btn:active {
  transform: scale(0.96);
}


/* ================= 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 */
  }
}