:root {
    --bg-color: #080810;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --accent-purple: #7c3aed;
    --accent-cyan: #00e5ff;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow: hidden;
    touch-action: pan-y;
}

/* Core Screen Transitions */
.screen {
    position: absolute;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}
.screen.active {
    opacity: 1;
    pointer-events: all;
    z-index: 10;
}

/* Glassmorphism Classes */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.t-gradient {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =========================================
   SCREEN 1: ONBOARDING
   ========================================= */
#screen-onboarding {
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    overflow-y: auto;
    z-index: 15; /* Sit on top initially */
}

@keyframes drift {
    0% { transform: translate(0,0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.05); }
    100% { transform: translate(0,0) scale(1); }
}

.onboarding-bg-glow {
    position: fixed;
    top: -20%; left: -20%;
    width: 140%; height: 140%;
    background: radial-gradient(circle at 40% 30%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(0, 229, 255, 0.1) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
    animation: drift 15s ease-in-out infinite alternate;
}

.onboarding-header {
    text-align: center;
    margin-bottom: 2.5rem;
    margin-top: 1rem;
}
.trippy-logo {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 0.5rem;
}
.subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.5;
    padding: 0 1rem;
}

/* Steps */
.onboarding-step {
    display: none;
    flex-direction: column;
    animation: fadeIn 0.4s ease-out;
}
.onboarding-step.active {
    display: flex;
}

.step-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}
.small-info {
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-align: center;
    margin-top: 1.5rem;
    line-height: 1.5;
}

/* Phone Entry */
.phone-entry-container {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2rem;
}
.phone-input-group {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.phone-input-group:focus-within {
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.3);
}
.country-code {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    padding-right: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    margin-right: 1rem;
}
#phone-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    outline: none;
    padding: 0.8rem 0;
}
#phone-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Account Detection */
.detection-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}
.detect-row {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 16px;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.detect-info {
    flex: 1;
}
.detect-status {
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.detect-spinner-main {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--accent-cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 1rem auto;
}
.mini-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--accent-purple);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.create-acc-btn {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    cursor: pointer;
}
.hidden { display: none !important; }

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

/* OTP Styles */
.otp-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.otp-group {
    background: rgba(255, 255, 255, 0.02);
    padding: 1.2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.otp-group-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 0.95rem;
}
.otp-inputs {
    display: flex;
    gap: 8px;
    justify-content: space-between;
}
.otp-box {
    width: 44px;
    height: 52px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: white;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    transition: all 0.2s;
    outline: none;
}
.otp-box:focus {
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.3);
    background: rgba(124, 58, 237, 0.1);
}
.otp-box.filled {
    border-color: #00d4ff;
    color: #00d4ff;
}
.resend-link {
    color: var(--accent-purple);
    font-size: 0.9rem;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-bottom: 1.5rem;
}

.brand-logo {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.2rem;
}
.uber-logo { background: #fff; color: #000; }
.didi-logo { background: #FF6B00; color: #fff; }
.cabify-logo { background: #7C3AED; color: #fff; }
.indrive-logo { background: #00C853; color: #fff; }

.primary-btn {
    width: 100%;
    padding: 1.1rem;
    border-radius: 16px;
    border: none;
    background: linear-gradient(135deg, var(--accent-purple), #5b21b6);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.5);
    transition: var(--transition);
}
.primary-btn:active { transform: scale(0.97); }

/* =========================================
   SCREEN 2: MAP & BOTTOM PANEL
   ========================================= */
#map {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; left: 0;
    z-index: 1;
}

.glass-header {
    position: absolute;
    top: 1.5rem; left: 1rem; right: 1rem;
    height: 60px;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    z-index: 10;
}
.logo-small { font-weight: 700; font-size: 1.3rem; letter-spacing: -1px; }
.header-right { display: flex; align-items: center; gap: 1rem; }
.connected-badges { display: flex; gap: 4px; }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; }
.bell-icon { font-size: 1.2rem; cursor: pointer; }
.avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; font-weight: 700;
}

/* Bottom Panel */
#bottom-panel {
    position: absolute;
    bottom: 85px; /* Above nav bar */
    left: 1rem; right: 1rem;
    border-radius: 24px;
    padding: 1.5rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    transition: height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    height: auto;
    max-height: 75vh;
}

.panel-handle {
    width: 40px; height: 5px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    margin: 0 auto 1.5rem auto;
}

.panel-state {
    display: none;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
    animation: fadeIn 0.4s ease-out;
}
.panel-state.active { display: flex; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Search Area */
.location-input {
    display: flex;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.4);
    padding: 1.2rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
}
.dot-line-indicator { display: flex; flex-direction: column; align-items: center; padding: 4px 0; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.current { background: var(--accent-cyan); box-shadow: 0 0 8px var(--accent-cyan); }
.dot.dest { background: var(--accent-purple); box-shadow: 0 0 8px var(--accent-purple); }
.line { width: 2px; flex: 1; background: rgba(255,255,255,0.1); margin: 4px 0; }

.input-group { flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.origin-field { font-size: 0.95rem; color: #fff; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.origin-field .label { color: var(--text-secondary); margin-right: 8px; }
#dest-input { background: transparent; border: none; color: #fff; font-size: 1.1rem; outline: none; font-family: inherit;}
#dest-input::placeholder { color: rgba(255,255,255,0.4); }

.quick-destinations { display: flex; gap: 0.8rem; overflow-x: auto; padding-bottom: 0.5rem; }
.quick-destinations::-webkit-scrollbar { display: none; }
.chip {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.7rem 1.2rem;
    border-radius: 24px;
    white-space: nowrap;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}
.chip:active { transform: scale(0.95); background: rgba(255,255,255,0.15); }

/* Compare Area */
.compare-header { margin-bottom: 1.5rem; }
.compare-header h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.3rem; }
.compare-header p { color: var(--text-secondary); font-size: 0.9rem; }

.sort-controls { display: flex; gap: 0.5rem; margin-bottom: 1.2rem; }
.sort-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-secondary);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}
.sort-btn.active {
    background: rgba(124, 58, 237, 0.2);
    border-color: var(--accent-purple);
    color: #fff;
}

.options-list {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-right: 4px;
}
.options-list::-webkit-scrollbar { width: 4px; }
.options-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 2px; }

.option-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.option-card::before {
    content: '';
    position: absolute; left: 0; top: 0; width: 4px; height: 100%;
    background-color: var(--company-color);
}
.option-card.disconnected { opacity: 0.4; filter: grayscale(1); }

.option-main { flex: 1; }
.badge-best { display: inline-block; padding: 3px 8px; border-radius: 6px; font-size: 0.75rem; font-weight: 600; margin-bottom: 6px; }
.option-brand { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 4px; font-weight: 500;}
.option-price { font-size: 1.5rem; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.5px;}
.option-meta { font-size: 0.8rem; color: var(--text-secondary); display: flex; gap: 4px; }

.pedir-btn {
    background: var(--company-color);
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.pedir-btn:active { transform: scale(0.95); }
.lock-icon { font-size: 1.5rem; opacity: 0.5; padding: 0.8rem; }

/* Bottom Nav */
.bottom-nav {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    height: 75px;
    background: rgba(8, 8, 16, 0.9);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 10;
}
.nav-item {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    opacity: 0.6;
    transition: var(--transition);
}
.nav-item.active { opacity: 1; color: var(--accent-cyan); }
.nav-item-icon { font-size: 1.5rem; margin-bottom: 4px; display: block;}

/* =========================================
   SCREEN 4: TRIP CONFIRMATION
   ========================================= */
#screen-trip {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    z-index: 20;
}
.trip-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}
.trip-card {
    position: relative;
    width: 100%;
    max-width: 400px;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    background: rgba(15, 15, 25, 0.8);
}

.trip-success { margin-bottom: 2rem; }
.check-circle {
    width: 72px; height: 72px;
    background: #00C853;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; color: #fff;
    margin: 0 auto 1.2rem auto;
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.4);
    animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes popIn { 0% { transform: scale(0); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }

.driver-info {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}
.driver-avatar {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, #4b5563, #1f2937);
    border: 2px solid #fff;
    border-radius: 50%;
    margin: 0 auto 1rem auto;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; font-weight: 700;
}
.company-badge {
    position: absolute; top: -12px; right: 20px;
    padding: 4px 14px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.driver-details h3 { font-size: 1.3rem; margin-bottom: 4px; }
.driver-details p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 12px; }
.vehicle-details { background: rgba(255,255,255,0.05); padding: 8px; border-radius: 12px; display: inline-block; }
.vehicle-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 2px; }
.plate { font-size: 0.85rem; color: var(--text-secondary); font-family: monospace; letter-spacing: 1px; }

.countdown-container { margin-bottom: 2rem; }
.countdown-container p { color: var(--text-secondary); margin-bottom: 0.5rem; }
.countdown-container h1 { 
    font-size: 3.5rem; 
    font-weight: 700; 
    font-variant-numeric: tabular-nums;
    color: var(--accent-cyan);
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.trip-summary {
    text-align: left;
    margin-bottom: 2rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 1.2rem;
    border-radius: 16px;
}
.summary-row { display: flex; justify-content: space-between; margin-bottom: 0.8rem; font-size: 0.95rem; }
.summary-row:last-child { margin-bottom: 0; font-weight: 600; font-size: 1.1rem; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 0.8rem;}

.trip-actions { display: flex; flex-direction: column; gap: 1rem; }
.outline-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 1.1rem;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.outline-btn:active { background: rgba(255,255,255,0.1); }
.outline-btn.danger { border-color: rgba(239, 68, 68, 0.5); color: #ef4444; }
.outline-btn.danger:active { background: rgba(239, 68, 68, 0.1); }

/* Markers Map Icons */
.car-marker {
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    font-size: 14px;
    transition: all 3s linear;
}
.uber-marker { background: #333; }
.didi-marker { background: #FF6B00; }
.cabify-marker { background: #7C3AED; }
.indrive-marker { background: #00C853; }

/* =========================================
   SCREEN 5: HISTORY
   ========================================= */
#screen-history {
    display: flex;
    flex-direction: column;
    padding-top: 5rem; /* space for header */
    background: var(--bg-color);
    z-index: 15;
}
.history-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.2rem;
    margin: 1rem;
    border-radius: 16px;
}
.stat-card {
    display: flex;
    flex-direction: column;
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}
.stat-value {
    font-size: 1.3rem;
    font-weight: 700;
}
.month-filters {
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    padding: 0.5rem 1rem 1rem 1rem;
}
.month-filters::-webkit-scrollbar { display: none; }
.history-list {
    flex: 1;
    overflow-y: auto;
    padding: 0 1rem 6rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.history-list::-webkit-scrollbar { display: none; }
.history-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.2rem;
    border-left: 4px solid var(--company-color);
    transition: var(--transition);
}
.h-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}
.h-company-badge {
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
}
.h-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.h-route {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}
.h-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
}
.h-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 0.8rem;
    margin-bottom: 1rem;
}
.h-payment {
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.h-price {
    font-size: 1.2rem;
    font-weight: 700;
}
.h-actions {
    display: flex;
    gap: 0.8rem;
}
.h-btn {
    flex: 1;
    padding: 0.7rem;
    border-radius: 10px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
}
.h-btn.outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
}

/* =========================================
   PROFILE OVERLAY
   ========================================= */
.profile-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    z-index: 30;
    display: flex;
    align-items: flex-end;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.profile-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.profile-card {
    width: 100%;
    border-radius: 24px 24px 0 0;
    padding: 2rem;
    position: relative;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    background: rgba(15, 15, 25, 0.9);
}
.profile-overlay.active .profile-card {
    transform: translateY(0);
}
.close-profile-btn {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    background: rgba(255,255,255,0.1);
    border: none;
    width: 32px; height: 32px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
}
.profile-header {
    text-align: center;
    margin-bottom: 2rem;
}
.profile-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
    margin: 0 auto 1rem auto;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; font-weight: 700;
}
.profile-header h2 { font-size: 1.5rem; margin-bottom: 4px; }
.profile-header p { color: var(--text-secondary); font-size: 0.95rem; }
.profile-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}
.p-stat {
    flex: 1;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 1.2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
}
.p-stat span { font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 6px; }
.p-stat strong { font-size: 1.4rem; font-weight: 700; color: var(--accent-cyan); }
.connected-accounts-status h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.acc-status-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.acc-status {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255,255,255,0.02);
    padding: 0.8rem;
    border-radius: 12px;
}
.status-icon {
    margin-left: auto;
}

/* =========================================
   INDRIVE BIDDING CARD
   ========================================= */
.indrive-bidding-card {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}
.indrive-bidding-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.indrive-badge {
    background: rgba(0, 200, 83, 0.2);
    color: #00C853;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
}
.indrive-slider-area {
    background: rgba(0,0,0,0.3);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}
.indrive-slider-labels {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
.indrive-slider-labels strong {
    font-size: 1.3rem;
    margin-left: 6px;
}
.indrive-min-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
}
.indrive-slider {
    width: 100%;
    -webkit-appearance: none;
    background: rgba(255,255,255,0.1);
    height: 6px;
    border-radius: 3px;
    outline: none;
    margin-bottom: 1rem;
}
.indrive-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #00C853;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 200, 83, 0.5);
}
.indrive-likelihood {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}
.indrive-drivers-nearby {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
}
.indrive-driver-avatars {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}
.indrive-driver-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: #444;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 600; color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}
.indrive-btn {
    width: 100%;
    border-radius: 12px;
    background: linear-gradient(135deg, #00C853, #009624);
}
