/* ============================================
   ZENTER DRIVES - NEW FEATURES STYLES
   Fake Call, Wallet, Surge Heatmap, Wrapped
   ============================================ */

/* ============================================
   1. SURGE HEATMAP
   ============================================ */
   .heatmap-section {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
  }
  
  .heatmap-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
  }
  
  .heatmap-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    height: 500px;
  }
  
  #surgeMap {
    width: 100%;
    height: 100%;
  }
  
  .heatmap-legend {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 14px 18px;
    border: 1px solid var(--border);
    z-index: 400;
  }
  
  .heatmap-legend h5 {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  .legend-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  
  .legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    color: var(--text-secondary);
  }
  
  .legend-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 8px currentColor;
  }
  
  .legend-dot.red { background: rgba(255, 68, 68, 0.8); color: rgba(255, 68, 68, 0.8); }
  .legend-dot.orange { background: rgba(255, 165, 0, 0.8); color: rgba(255, 165, 0, 0.8); }
  .legend-dot.yellow { background: rgba(255, 220, 0, 0.8); color: rgba(255, 220, 0, 0.8); }
  .legend-dot.green { background: rgba(0, 212, 170, 0.8); color: rgba(0, 212, 170, 0.8); }
  
  .heatmap-update {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    z-index: 400;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  .update-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: updatePulse 2s ease infinite;
  }
  
  /* Heatmap Sidebar */
  .heatmap-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .surge-zones-list { }
  
  .surge-zones-list h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .surge-zone-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: var(--bg-card);
    border-radius: 14px;
    border: 1px solid var(--border-light);
    margin-bottom: 10px;
    transition: all 0.3s;
    cursor: pointer;
  }
  
  .surge-zone-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
  }
  
  .szn-indicator {
    width: 10px;
    height: 40px;
    border-radius: 5px;
    flex-shrink: 0;
  }
  
  .szn-info { flex: 1; }
  .szn-info strong { display: block; font-size: 0.88rem; color: var(--text-primary); }
  .szn-info small { font-size: 0.75rem; color: var(--text-muted); }
  
  .szn-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
  }
  
  .szn-badge.high { background: rgba(255, 68, 68, 0.15); color: #FF4444; }
  .szn-badge.medium { background: rgba(255, 165, 0, 0.15); color: #FFA500; }
  .szn-badge.low { background: rgba(0, 212, 170, 0.15); color: #00D4AA; }
  
  /* Best Time Widget */
  .best-time-widget {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid var(--border-card);
    box-shadow: var(--shadow-md);
  }
  
  .best-time-widget h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .best-time-widget h4 i { color: var(--primary); }
  
  .time-slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  
  .time-slot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 4px;
    border-radius: 10px;
    border: 1px solid var(--border-light);
    background: var(--bg-secondary);
    font-size: 0.72rem;
    cursor: pointer;
    transition: all 0.2s;
  }
  
  .time-slot:hover { border-color: var(--primary); background: var(--primary-glow); }
  .time-slot.best { border-color: var(--secondary); background: rgba(0, 212, 170, 0.1); }
  .time-slot.worst { border-color: var(--accent); background: rgba(255, 107, 107, 0.1); }
  
  .ts-time { font-weight: 700; color: var(--text-primary); font-size: 0.75rem; }
  .ts-bar {
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: var(--border-light);
    overflow: hidden;
  }
  .ts-fill { height: 100%; border-radius: 2px; transition: width 1s ease; }
  .ts-price { color: var(--text-muted); font-size: 0.68rem; }
  
  .time-slot.best .ts-time { color: var(--secondary); }
  .time-slot.worst .ts-time { color: var(--accent); }
  
  /* Price Alert Subscribe */
  .price-alert-subscribe {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(0, 212, 170, 0.1));
    border-radius: 16px;
    padding: 20px;
    border: 1px solid var(--border-card);
    text-align: center;
  }
  
  .price-alert-subscribe h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
  }
  
  .price-alert-subscribe p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 14px;
  }
  
  /* ============================================
     2. FAKE CALL FEATURE
     ============================================ */
  .fake-call-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #1A1A2E 0%, #0A0A1A 100%);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 60px 40px 60px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .fake-call-overlay.active {
    transform: translateY(0);
  }
  
  .fake-call-top {
    text-align: center;
    color: white;
  }
  
  .fake-call-time {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 4px;
  }
  
  .fake-call-date {
    font-size: 0.88rem;
    opacity: 0.6;
    margin-bottom: 40px;
  }
  
  .fake-call-caller {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .fake-caller-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6C63FF, #00D4AA);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border: 4px solid rgba(255, 255, 255, 0.2);
    animation: callerPulse 1.5s ease-in-out infinite;
  }
  
  .fake-caller-name {
    font-size: 1.6rem;
    font-weight: 600;
    color: white;
  }
  
  .fake-caller-subtitle {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
  }
  
  .fake-call-type {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    margin-top: 8px;
  }
  
  .fake-call-middle {
    text-align: center;
  }
  
  .incoming-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    letter-spacing: 1px;
    animation: incomingBlink 1.5s ease infinite;
  }
  
  .fake-call-bottom {
    width: 100%;
    max-width: 300px;
  }
  
  .fake-call-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
  }
  
  .fake-call-secondary {
    display: flex;
    justify-content: space-around;
    gap: 20px;
  }
  
  .call-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.2s;
  }
  
  .call-btn-label {
    font-size: 0.68rem;
    font-weight: 500;
    white-space: nowrap;
  }
  
  .call-btn.decline {
    background: #FF3B30;
    color: white;
    box-shadow: 0 8px 24px rgba(255, 59, 48, 0.4);
  }
  
  .call-btn.accept {
    background: #34C759;
    color: white;
    box-shadow: 0 8px 24px rgba(52, 199, 89, 0.4);
  }
  
  .call-btn.secondary-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    width: 56px;
    height: 56px;
    font-size: 1rem;
    backdrop-filter: blur(10px);
  }
  
  .call-btn:hover { transform: scale(1.1); }
  
  /* Fake Call Trigger Panel */
  .fake-call-setup {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 28px;
    border: 1px solid var(--border-card);
    box-shadow: var(--shadow-lg);
  }
  
  .fake-call-setup h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .fake-call-setup h4 i { color: var(--secondary); }
  
  .caller-presets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 16px;
  }
  
  .caller-preset {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
  }
  
  .caller-preset:hover,
  .caller-preset.selected {
    border-color: var(--primary);
    background: var(--primary-glow);
    color: var(--primary);
  }
  
  .caller-preset-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
  }
  
  .delay-selector {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .delay-selector label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
  }
  
  .delay-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  
  .delay-opt {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--border-light);
    background: var(--bg-secondary);
    color: var(--text-muted);
    transition: all 0.2s;
  }
  
  .delay-opt.selected,
  .delay-opt:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
  }
  
  /* Safety Mode Panel in Navbar Area */
  .safety-quick-panel {
    position: fixed;
    top: 80px;
    right: 24px;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid var(--border-card);
    box-shadow: var(--shadow-xl);
    width: 280px;
    z-index: 400;
    display: none;
  }
  
  .safety-quick-panel.active { display: block; animation: slideDown 0.3s ease; }
  
  .sqp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
  }
  
  .sqp-header h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .fake-call-quick-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(0, 212, 170, 0.05));
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
  }
  
  .fake-call-quick-btn:hover {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2), rgba(0, 212, 170, 0.1));
    transform: translateY(-2px);
  }
  
  .fq-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
  }
  
  .fq-info strong { display: block; font-size: 0.85rem; color: var(--text-primary); }
  .fq-info small { font-size: 0.75rem; color: var(--text-muted); }
  
  /* ============================================
     3. ZENTER WALLET
     ============================================ */
  .wallet-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    padding: 20px;
  }
  
  .wallet-modal-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  .wallet-modal {
    background: var(--bg-card);
    border-radius: 28px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .wallet-modal-overlay.active .wallet-modal {
    transform: scale(1);
  }
  
  /* Wallet Header Card */
  .wallet-header-card {
    background: linear-gradient(135deg, #6C63FF 0%, #5A52D5 60%, #00D4AA 100%);
    padding: 32px 28px 28px;
    position: relative;
    overflow: hidden;
  }
  
  .wallet-header-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
  }
  
  .wallet-header-card::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
  }
  
  .wallet-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
  }
  
  .wallet-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
  }
  
  .wallet-logo i { font-size: 1.1rem; }
  
  .wallet-close-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
  }
  
  .wallet-close-btn:hover { background: rgba(255, 255, 255, 0.35); }
  
  .wallet-balance-section {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
  }
  
  .wallet-balance-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
  }
  
  .wallet-balance {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin-bottom: 8px;
  }
  
  .wallet-currency {
    font-size: 1.3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    padding-bottom: 4px;
  }
  
  .wallet-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: white;
    line-height: 1;
  }
  
  .wallet-cents {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    padding-bottom: 6px;
  }
  
  .wallet-change {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    background: rgba(0, 212, 170, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #00F5C4;
  }
  
  .wallet-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    position: relative;
    z-index: 1;
  }
  
  .wallet-stat {
    text-align: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
  }
  
  .wallet-stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: white;
    display: block;
  }
  
  .wallet-stat-label {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.6);
  }
  
  /* Wallet Actions */
  .wallet-actions-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
  }
  
  .wallet-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
  }
  
  .wallet-action-btn:hover { transform: translateY(-4px); }
  
  .wab-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
  }
  
  .wab-icon.topup { background: linear-gradient(135deg, #6C63FF, #5A52D5); }
  .wab-icon.send { background: linear-gradient(135deg, #00D4AA, #00B894); }
  .wab-icon.split { background: linear-gradient(135deg, #FFA500, #FF8C00); }
  .wab-icon.save { background: linear-gradient(135deg, #FF6B6B, #E55555); }
  
  .wab-label { font-size: 0.72rem; font-weight: 600; color: var(--text-secondary); text-align: center; }
  
  /* Wallet Tabs */
  .wallet-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-light);
    padding: 0 24px;
  }
  
  .wallet-tab {
    padding: 14px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    border: none;
    background: none;
    font-family: 'Inter', sans-serif;
  }
  
  .wallet-tab.active,
  .wallet-tab:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
  }
  
  /* Wallet Content */
  .wallet-content {
    padding: 20px 24px;
    max-height: 300px;
    overflow-y: auto;
  }
  
  .wallet-content::-webkit-scrollbar { width: 4px; }
  .wallet-content::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 2px; }
  
  /* Transaction List */
  .transaction-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
  }
  
  .transaction-item:last-child { border: none; }
  
  .txn-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }
  
  .txn-icon.ride { background: rgba(108, 99, 255, 0.15); color: var(--primary); }
  .txn-icon.topup { background: rgba(0, 212, 170, 0.15); color: var(--secondary); }
  .txn-icon.food { background: rgba(255, 107, 107, 0.15); color: var(--accent); }
  .txn-icon.split { background: rgba(255, 165, 0, 0.15); color: var(--warning); }
  .txn-icon.save { background: rgba(69, 183, 209, 0.15); color: #45B7D1; }
  .txn-icon.reward { background: rgba(255, 215, 0, 0.15); color: #FFD700; }
  
  .txn-info { flex: 1; }
  .txn-info strong { display: block; font-size: 0.85rem; color: var(--text-primary); }
  .txn-info small { font-size: 0.75rem; color: var(--text-muted); }
  
  .txn-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
  }
  
  .txn-amount.credit { color: var(--secondary); }
  .txn-amount.debit { color: var(--accent); }
  
  /* AutoSave Widget */
  .autosave-widget {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(0, 212, 170, 0.05));
    border-radius: 16px;
    padding: 18px;
    border: 1px solid rgba(0, 212, 170, 0.2);
    margin-bottom: 16px;
  }
  
  .autosave-widget h5 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  .autosave-widget h5 i { color: var(--secondary); }
  .autosave-widget p { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 14px; }
  
  .autosave-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
  }
  
  .autosave-opt {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--border-light);
    background: var(--bg-secondary);
    color: var(--text-muted);
    transition: all 0.2s;
  }
  
  .autosave-opt.selected,
  .autosave-opt:hover {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
  }
  
  /* Split Payment */
  .split-panel {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 16px;
  }
  
  .split-panel h5 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .split-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
  }
  
  .split-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-light);
  }
  
  .sc-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
  }
  
  .sc-info { flex: 1; }
  .sc-info strong { display: block; font-size: 0.82rem; color: var(--text-primary); }
  .sc-info small { font-size: 0.72rem; color: var(--text-muted); }
  .sc-amount { font-weight: 700; color: var(--primary); font-size: 0.85rem; }
  
  /* Zenter Coins */
  .coins-widget {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
    border-radius: 16px;
    padding: 18px;
    border: 1px solid rgba(255, 215, 0, 0.25);
  }
  
  .coins-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
  }
  
  .coins-header h5 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  .coins-balance {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #FFD700;
  }
  
  .coins-conversion {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 12px;
  }
  
  /* Wallet Trigger Button */
  .wallet-trigger-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: var(--border-radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
  }
  
  .wallet-trigger-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-glow);
  }
  
  .wallet-trigger-btn .wallet-quick-balance {
    font-weight: 800;
    color: var(--primary);
  }
  
  /* ============================================
     4. ZENTER WRAPPED (ANNUAL REPORT)
     ============================================ */
  .wrapped-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    padding: 20px;
  }
  
  .wrapped-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  .wrapped-modal {
    width: 100%;
    max-width: 420px;
    max-height: 90vh;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    transform: scale(0.85);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .wrapped-overlay.active .wrapped-modal {
    transform: scale(1);
  }
  
  /* Wrapped Slides */
  .wrapped-slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 32px;
    text-align: center;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .wrapped-slide.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
  }
  
  .wrapped-slide.prev {
    opacity: 0;
    transform: translateX(-100%);
  }
  
  /* Slide 1 - Intro */
  .wrapped-slide-1 {
    background: linear-gradient(135deg, #0A0A1A 0%, #1A1A3E 50%, #0D0D2B 100%);
    min-height: 600px;
  }
  
  .wrapped-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
  }
  
  .wrapped-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6C63FF, #00D4AA);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
  }
  
  .wrapped-year-badge {
    background: linear-gradient(135deg, #6C63FF, #00D4AA);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 24px;
    display: inline-block;
  }
  
  .wrapped-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 12px;
  }
  
  .wrapped-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
  }
  
  .wrapped-start-btn {
    background: linear-gradient(135deg, #6C63FF, #00D4AA);
    color: white;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
  }
  
  .wrapped-start-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(108, 99, 255, 0.5);
  }
  
  .wrapped-bg-stars {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
  }
  
  .wrapped-star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: starTwinkle 3s ease-in-out infinite;
  }
  
  /* Slide 2 - Total Rides */
  .wrapped-slide-2 {
    background: linear-gradient(135deg, #6C63FF 0%, #5A52D5 100%);
    min-height: 600px;
  }
  
  .wrapped-slide-3 {
    background: linear-gradient(135deg, #00D4AA 0%, #00B894 100%);
    min-height: 600px;
  }
  
  .wrapped-slide-4 {
    background: linear-gradient(135deg, #FF6B6B 0%, #FFA500 100%);
    min-height: 600px;
  }
  
  .wrapped-slide-5 {
    background: linear-gradient(135deg, #1A1A2E 0%, #2D2D6E 100%);
    min-height: 600px;
  }
  
  .wrapped-stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }
  
  .wrapped-stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
  }
  
  .wrapped-stat-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 280px;
    line-height: 1.6;
  }
  
  .wrapped-icon-big {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: wrappedIconBounce 2s ease-in-out infinite;
  }
  
  .wrapped-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: white;
    font-size: 0.82rem;
    font-weight: 600;
    margin-top: 16px;
    backdrop-filter: blur(10px);
  }
  
  .wrapped-map-visual {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin-bottom: 20px;
    position: relative;
  }
  
  .wrapped-map-dots {
    position: absolute;
    inset: 0;
  }
  
  .wmd {
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: wmdPulse 2s ease infinite;
  }
  
  /* Wrapped Navigation */
  .wrapped-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    z-index: 10;
  }
  
  .wrapped-dots {
    display: flex;
    gap: 6px;
  }
  
  .wrapped-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.3s;
  }
  
  .wrapped-dot.active {
    background: white;
    width: 20px;
    border-radius: 3px;
  }
  
  .wrapped-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    backdrop-filter: blur(10px);
  }
  
  .wrapped-nav-btn:hover { background: rgba(255, 255, 255, 0.35); }
  .wrapped-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }
  
  .wrapped-share-btn {
    background: white;
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    font-family: 'Poppins', sans-serif;
  }
  
  .wrapped-share-btn:hover { transform: scale(1.05); }
  
  /* Wrapped Trigger Button */
  .wrapped-trigger-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #6C63FF, #00D4AA);
    color: white;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 20px rgba(108, 99, 255, 0.4);
  }
  
  .wrapped-trigger-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(108, 99, 255, 0.5);
  }
  
  /* ============================================
     5. ANIMATIONS FOR NEW FEATURES
     ============================================ */
  @keyframes updatePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }
  
  @keyframes callerPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(108, 99, 255, 0.5); }
    50% { box-shadow: 0 0 0 20px rgba(108, 99, 255, 0); }
  }
  
  @keyframes incomingBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }
  
  @keyframes starTwinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
  }
  
  @keyframes wrappedIconBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
  }
  
  @keyframes wmdPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.5); opacity: 1; }
  }
  
  @keyframes slideDown {
    from { transform: translateY(-10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  
  /* Responsive */
  @media (max-width: 767px) {
    .heatmap-wrapper { grid-template-columns: 1fr; }
    .heatmap-container { height: 350px; }
    .heatmap-sidebar { order: -1; }
    .wallet-actions-row { grid-template-columns: repeat(2, 1fr); }
    .wrapped-stat-number { font-size: 3.5rem; }
    .time-slots { grid-template-columns: repeat(2, 1fr); }
    .caller-presets { grid-template-columns: 1fr; }
  }