 
 
 * { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
    html, body { height: 100%; margin: 0; padding: 0; }
    body { font-family: 'Inter', sans-serif; background: #000000; overflow-x: hidden; }
    .font-display { font-family: 'Playfair Display', serif; }
    
    .gold-gradient { background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%); }
    .gold-text { background: linear-gradient(135deg, #FFD700, #FFA500); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    
    .glass-card {
      background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 165, 0, 0.04) 100%);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 215, 0, 0.15);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 215, 0, 0.1);
    }
    
    .glass-card-dark {
      background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 215, 0, 0.1);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    }
    
    .glow-gold { box-shadow: 0 0 30px rgba(255, 215, 0, 0.3), 0 0 60px rgba(255, 215, 0, 0.1); }
    
    .toggle-switch { width: 60px; height: 32px; background: #333; border-radius: 16px; position: relative; cursor: pointer; transition: all 0.3s ease; }
    .toggle-switch.active { background: linear-gradient(135deg, #FFD700, #FFA500); }
    .toggle-switch::after { content: ''; position: absolute; width: 26px; height: 26px; background: white; border-radius: 50%; top: 3px; left: 3px; transition: all 0.3s ease; box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
    .toggle-switch.active::after { left: 31px; }
    
    .btn-gold {
      background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
      color: #000;
      font-weight: 600;
      border: none;
      border-radius: 12px;
      padding: 16px 32px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    }
    .btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 30px rgba(255, 215, 0, 0.4); }
    .btn-gold:active { transform: translateY(0); }
    
    .btn-accept { background: linear-gradient(135deg, #22c55e, #16a34a); color: white; }
    .btn-reject { background: linear-gradient(135deg, #ef4444, #dc2626); color: white; }
    
    .screen {
  display: none;
  width: 100%;
  min-height: 100vh;
}

.screen.active {
  display: block;
}
    
    .countdown-ring { stroke-dasharray: 113; stroke-dashoffset: 0; transition: stroke-dashoffset 1s linear; }
    
    .pulse { animation: pulse 2s infinite; }
    @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
    
    .slide-up { animation: slideUp 0.5s ease; }
    @keyframes slideUp { from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
    
    .fade-in { animation: fadeIn 0.3s ease; }
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
    
    .booking-popup {
      position: fixed;
      bottom: 0;
      left: 8%;
      right: 0;
      width: 100%;
  max-width: 370px;
  height: auto;
  max-height: 90vh;
      background: linear-gradient(180deg, rgba(20, 20, 20, 0.98) 0%, rgba(0, 0, 0, 0.99) 100%);
      border-top-left-radius: 24px;
      border-top-right-radius: 24px;
      border: 1px solid rgba(255, 215, 0, 0.2);
      border-bottom: none;
      z-index: 100;
      transform: translateY(100%);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .booking-popup.show { transform: translateY(0); }
    
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.7);
      z-index: 99;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    .overlay.show { opacity: 1; pointer-events: auto; }
    
    .status-badge { padding: 6px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }
    .status-completed { background: rgba(34, 197, 94, 0.2); color: #22c55e; }
    .status-cancelled { background: rgba(239, 68, 68, 0.2); color: #ef4444; }
    .status-btn {
  transition: all 0.3s ease;
}

.status-success {
  background-color: #22c55e !important;
  color: white !important;
  transform: scale(1.05);
}
    
    .nav-item { transition: all 0.3s ease; }
    .nav-item.active { color: #FFD700; }
    .nav-item.active svg { fill: #FFD700; }
    
    input:focus { outline: none; }
    
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: transparent; }
    ::-webkit-scrollbar-thumb { background: rgba(255, 215, 0, 0.3); border-radius: 2px; }

    .logout-btn {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff4d4d, #cc0000);
  color: white;
  font-weight: 600;
  font-size: 16px;
  margin-top: 20px;
  transition: 0.3s ease;
}

.logout-btn:hover {
  transform: scale(0.98);
  opacity: 0.9;
}

/* ================= KYC MODAL ================= */
/* ===============================
   KYC OVERLAY
================================ */

#verification-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  
  
 pointer-events: auto;
}

#verification-modal.active {
  display: flex;
}

/* ===============================
   KYC PANEL DESIGN
================================ */

#verification-modal > div {
  width: 40%;               /* 🔥 Control width here */
  max-width: 300px;
  min-width: 10px;
  max-height: 50vh;
  overflow-y: auto;
    position: relative;
  z-index: 10000;

  background: linear-gradient(145deg,#0f172a,#1e293b);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);

  animation: kycFade 0.35s ease;
}

/* Scrollbar Styling */
#verification-modal > div::-webkit-scrollbar {
  width: 6px;
}
#verification-modal > div::-webkit-scrollbar-thumb {
  background: #facc15;
  border-radius: 10px;
}

/* Smooth Animation */
@keyframes kycFade {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===============================
   INPUT STYLE UPGRADE
================================ */

.kyc-input {
  width: 100%;
  padding: 10px;
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 12px;
  color: white;
  font-size: 14px;
  transition: 0.3s ease;
}

.kyc-input:focus {
  outline: none;
  border-color: #facc15;
  box-shadow: 0 0 8px rgba(250, 204, 21, 0.4);
}

/* Submit Button */
.btn-verify {
  background: linear-gradient(135deg,#facc15,#eab308);
  color: black;
  font-weight: 600;
  padding: 12px;
  border-radius: 14px;
  transition: 0.3s ease;
}

.btn-verify:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(250, 204, 21, 0.5);
}

/* Responsive */
@media(max-width:768px){
  #verification-modal > div {
    width: 95%;
    border-radius: 16px;
  }
}


/* KYC Modal Input Fix */
#verification-modal input,
#verification-modal textarea {
  background: #1f2937;   /* dark gray */
  color: #ffffff;        /* white text */
  border: 1px solid #374151;
}

#verification-modal input::placeholder,
#verification-modal textarea::placeholder {
  color: #edf1f7;        /* light gray placeholder */
}

/* File input text fix */
#verification-modal input[type="file"] {
  color: #ffffff;
}

/* ===============================
   MINI MAP CARD STYLING
================================ */

.map-wrapper {
  margin: 20px 16px 80px 16px; /* bottom space for nav */
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid #facc15;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  height: 150px;
  position: relative;
  background: #000;
}

#mini-map-frame {
  width: 100%;
  height: 100%;
  border: none;
}

/* Optional Hover Glow */
.map-wrapper:hover {
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
  transition: 0.3s ease;
}

/* Notification page css */

.notification-container {
  min-height: 80vh;
  padding: 20px;
  max-width: 480px;
  min-width: 320px;
  left: 50%;
  margin: 0 auto; 

  color: white;
  background: #000;
}

.notification-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  cursor: pointer;
}

.notification-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.notification-card {
  background: #111;
  padding: 15px;
  border-radius: 15px;
  border: 1px solid #222;
  cursor: pointer;
  transition: 0.3s;
}

.notification-card.unread {
  border-left: 4px solid #FFD700;
}

.notification-card:hover {
  transform: translateY(-3px);
}

.notification-card h4 {
  margin-bottom: 5px;
}

.notification-time {
  font-size: 12px;
  color: #aaa;
}

.empty-state {
  text-align: center;
  margin-top: 100px;
  color: #777;
  display: none;
}

.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  z-index: 9999;
  font-size: 14px;
  opacity: 1;
  transition: 0.3s ease;
}

.toast.hidden {
  opacity: 0;
  pointer-events: none;
}
.toast {
  z-index: 9999;
}

.bottom-nav-wrapper {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 1000;
}

.bottom-nav {
  width: 95%;
  max-width: 420px;
  background: #111;
  border-radius: 20px;
  padding: 12px 0;
  display: flex;
  justify-content: space-around;
  border: 1px solid #222;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.05);
}

.nav-item {
  background: none;
  border: none;
  color: #777;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  cursor: pointer;
}

.nav-item span {
  margin-top: 4px;
}

.nav-item.active {
  color: #FFD700;
}

.nav-icon {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* =========================
   HELP PAGE (DETAILS STYLE)
========================= */

.details-container {
  min-height: 100vh;
  background: #000;
  color: #fff;
  padding: 20px;
  max-width: 420px;
  margin: 0 auto;
  padding-bottom: 120px; /* space for bottom nav */
}

.details-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.details-header span {
  font-size: 20px;
  cursor: pointer;
}

.details-header h2 {
  font-size: 20px;
  font-weight: 600;
}

.details-card {
  background: #111;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid #222;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.05);
}

.details-card h3 {
  margin-bottom: 10px;
  font-size: 16px;
}

.details-card p {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 6px;
}

.details-card textarea {
  width: 100%;
  min-height: 100px;
  background: #000;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 12px;
  color: #fff;
  resize: none;
  margin-top: 10px;
  font-size: 14px;
}

.details-card textarea:focus {
  outline: none;
  border: 1px solid #FFD700;
}

.details-card button {
  width: 100%;
  margin-top: 15px;
  padding: 12px;
  border-radius: 12px;
  border: none;
  background: #FFD700;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.details-card button:hover {
  background: #e6c200;
}

/* =========================
   REFER & EARN PAGE
========================= */

.refer-container {
  min-height: 100vh;
  background: #000;
  color: #fff;
  padding: 20px;
  max-width: 420px;
  margin: 0 auto;
  padding-bottom: 120px; /* bottom nav space */
}

/* Header */
.refer-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.refer-header span {
  font-size: 22px;
  cursor: pointer;
}

.refer-header h2 {
  font-size: 20px;
  font-weight: 600;
}

/* Main Card */
.refer-card {
  background: #111;
  padding: 25px 20px;
  border-radius: 20px;
  border: 1px solid #222;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.05);
  text-align: center;
}

.refer-card h1 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #FFD700;
}

.refer-card p {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 5px;
}

.coin-note {
  font-size: 13px;
  color: #777;
  margin-bottom: 20px;
}

/* Stats */
.stats {
  display: flex;
  justify-content: space-around;
  margin-bottom: 25px;
}

.stats h3 {
  font-size: 22px;
  color: #FFD700;
}

.stats p {
  font-size: 12px;
  color: #aaa;
}

/* Button */
.refer-card button {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: none;
  background: #FFD700;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.refer-card button:hover {
  background: #e6c200;
}

/* Bottom Image Section */
.refer-image-section {
  margin-top: 30px;
  text-align: center;
}

.refer-image-section img {
  width: 100%;
  max-width: 350px;
  opacity: 0.9;
  border-radius: 15px;
}

/* =========================
   REWARDS PAGE
========================= */

.rewards-container {
  min-height: 100vh;
  background: #000;
  color: #fff;
  padding: 20px;
  max-width: 420px;
  margin: 0 auto;
  padding-bottom: 120px; /* bottom nav space */
}

/* Header */
.rewards-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}

.rewards-header span {
  font-size: 22px;
  cursor: pointer;
}

.rewards-header h2 {
  font-size: 20px;
  font-weight: 600;
}

/* Center Section */
.rewards-center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60vh;
}

/* Card */
.rewards-card {
  background: #111;
  padding: 30px 20px;
  border-radius: 20px;
  border: 1px solid #222;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.05);
  text-align: center;
}

.rewards-card h3 {
  font-size: 16px;
  margin-bottom: 12px;
}

.learn-link {
  font-size: 14px;
  color: #FFD700;
  cursor: pointer;
  transition: 0.3s;
}

.learn-link:hover {
  text-decoration: underline;
}

/* =========================
   MODAL STYLING
========================= */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: #111;
  padding: 25px;
  width: 90%;
  max-width: 350px;
  border-radius: 20px;
  border: 1px solid #222;
  text-align: center;
  position: relative;
  animation: fadeIn 0.3s ease;
}

.modal-box h2 {
  margin-bottom: 15px;
  color: #FFD700;
}

.modal-box p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #ccc;
}

.coin-info {
  font-size: 13px;
  color: #888;
  margin-bottom: 20px;
}

.refer-btn {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: none;
  background: #FFD700;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.refer-btn:hover {
  background: #e6c200;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.main-content {
  padding-bottom: 80px;
}

.page-loader{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:#000;
display:flex;
justify-content:center;
align-items:center;
z-index:9999;
}

.loader-spinner{
width:45px;
height:45px;
border:4px solid #333;
border-top:4px solid #FFD700;
border-radius:50%;
animation:spin 0.8s linear infinite;
}

@keyframes spin{
0%{transform:rotate(0deg);}
100%{transform:rotate(360deg);}
}