/*=============================================
   EletroPostos - Neon Cyberpunk Design System
   =============================================*/

/* === CSS VARIABLES === */
:root {
    --bg-deep: #06060f;
    --bg-card: rgba(15, 15, 35, 0.7);
    --bg-input: rgba(10, 10, 25, 0.8);
    --neon-green: #00ff88;
    --neon-green-dim: rgba(0, 255, 136, 0.15);
    --neon-blue: #00d4ff;
    --neon-blue-dim: rgba(0, 212, 255, 0.12);
    --neon-red: #ff3366;
    --neon-orange: #ff9933;
    --neon-purple: #b347ea;
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(15, 15, 35, 0.65);
    --text-primary: #e8eaed;
    --text-secondary: #9aa0b0;
    --text-muted: #5a6070;
    --radius: 14px;
    --radius-sm: 10px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET & BASE === */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--bg-deep);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* === ANIMATED GRID DOTS BACKGROUND === */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(circle, rgba(0, 255, 136, 0.06) 1px, transparent 1px),
        radial-gradient(circle, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    background-position: 0 0, 25px 25px;
    pointer-events: none;
    z-index: 0;
    animation: gridShift 15s linear infinite;
}

@keyframes gridShift {
    0% { background-position: 0 0, 25px 25px; }
    100% { background-position: 50px 50px, 75px 75px; }
}

/* === AMBIENT GLOW ORBS === */
body::after {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 0%, rgba(0, 255, 136, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(0, 212, 255, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 50% 80%, rgba(179, 71, 234, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 10% 100%, rgba(0, 212, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: bgPulse 12s ease-in-out infinite alternate;
}

@keyframes bgPulse {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.main-nav, .admin-nav, .main-content, .main-footer { position: relative; z-index: 1; }

/* === TYPOGRAPHY === */
a { color: var(--neon-blue); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--neon-green); }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 7px; height: 7px; }
::-webkit-scrollbar-track { background: rgba(10, 10, 25, 0.6); border-radius: 10px; }
::-webkit-scrollbar-thumb { background: rgba(0, 255, 136, 0.25); border-radius: 10px; border: 1px solid rgba(0, 255, 136, 0.1); }
::-webkit-scrollbar-thumb:hover { background: rgba(0, 255, 136, 0.45); box-shadow: 0 0 8px rgba(0, 255, 136, 0.2); }
::-webkit-scrollbar-corner { background: transparent; }

/* === NAVIGATION === */
.main-nav, .admin-nav {
    background: rgba(6, 6, 15, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}
.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.5px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.3));
}
.nav-logo i { font-size: 1.4rem; -webkit-text-fill-color: var(--neon-green); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--neon-green);
    border-radius: 2px;
    transition: width 0.3s ease;
    box-shadow: 0 0 8px var(--neon-green);
}
.nav-links a:hover {
    color: var(--text-primary);
    background: rgba(0, 255, 136, 0.08);
}
.nav-links a:hover::after { width: 60%; }
.nav-links a.active { color: var(--neon-green); }
.nav-links a.active::after { width: 60%; }
.nav-links a i { font-size: 0.85rem; }
.nav-end {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.nav-balance {
    background: rgba(0, 255, 136, 0.12);
    border: 1px solid rgba(0, 255, 136, 0.25);
    color: var(--neon-green);
    padding: 6px 16px;
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.3);
}
.user-dropdown { position: relative; }
.dropdown-btn {
    background: rgba(15, 15, 35, 0.6);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.dropdown-btn:hover { border-color: var(--neon-green); color: var(--text-primary); box-shadow: 0 0 12px rgba(0, 255, 136, 0.15); }
.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 8px;
    background: rgba(15, 15, 35, 0.95);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    min-width: 210px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 212, 255, 0.05);
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.user-dropdown.open .dropdown-content { display: block; animation: slideDown 0.25s ease; }
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}
.dropdown-content a:hover { background: rgba(0, 255, 136, 0.08); color: var(--text-primary); }
.mobile-menu-btn { display: none; background: none; border: none; color: var(--text-primary); font-size: 1.5rem; cursor: pointer; transition: var(--transition); }
.mobile-menu-btn:hover { color: var(--neon-green); }
.btn-logout { color: var(--neon-red) !important; }
.btn-logout:hover { background: rgba(255, 51, 102, 0.08) !important; }

/* === MAIN CONTENT === */
.main-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 30px 20px;
    min-height: calc(100vh - 140px);
    animation: fadeInUp 0.5s ease;
}

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

/* === HERO / HOME PAGE === */
.hero {
    text-align: center;
    padding: 80px 20px 60px;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: pulseGlow 3s ease-in-out infinite;
}
@keyframes pulseGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}
.hero-badge {
    display: inline-block;
    background: rgba(0, 255, 136, 0.12);
    border: 1px solid rgba(0, 255, 136, 0.25);
    color: var(--neon-green);
    padding: 6px 20px;
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    animation: floatBadge 4s ease-in-out infinite;
}
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--neon-green), #00cc6a, var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.2;
}
.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}
.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === BUTTONS === */
.btn {
    transition: var(--transition);
    border-radius: var(--radius-sm);
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transition: left 0.5s ease;
}
.btn:hover::before { left: 100%; }
.btn-primary {
    background: linear-gradient(135deg, #00cc6a, var(--neon-green));
    color: #fff;
    padding: 14px 32px;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
    font-weight: 700;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(0, 255, 136, 0.5), 0 0 60px rgba(0, 255, 136, 0.15);
}
.btn-outline {
    background: rgba(0, 255, 136, 0.05);
    border: 2px solid rgba(0, 255, 136, 0.5);
    color: var(--neon-green);
    padding: 14px 32px;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.1);
}
.btn-outline:hover {
    background: rgba(0, 255, 136, 0.1);
    color: var(--neon-green);
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.25);
}
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-danger {
    background: linear-gradient(135deg, #e02d4d, var(--neon-red));
    color: #fff;
    padding: 10px 22px;
    box-shadow: 0 4px 18px rgba(255, 51, 102, 0.3);
}
.btn-danger:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255, 51, 102, 0.5); }
.btn-warning {
    background: linear-gradient(135deg, #e68920, var(--neon-orange));
    color: #06060f;
    padding: 10px 22px;
    box-shadow: 0 4px 18px rgba(255, 153, 51, 0.3);
}
.btn-warning:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255, 153, 51, 0.5); }
.btn-block { width: 100%; justify-content: center; padding: 16px 32px; font-size: 1rem; }

/* === STATS GRID === */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 60px 0;
}
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.stat-card:hover {
    border-color: rgba(0, 255, 136, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 255, 136, 0.1);
}
.stat-card:hover::before { opacity: 1; }
.stat-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: var(--neon-green);
    transition: var(--transition);
}
.stat-card:hover .stat-icon {
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    border-color: rgba(0, 255, 136, 0.4);
}
.stat-card h3 { font-size: 2rem; font-weight: 800; color: var(--text-primary); }
.stat-card p { color: var(--text-secondary); margin-top: 4px; font-size: 0.9rem; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 40px 0;
}
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 30px;
    transition: var(--transition);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.feature-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 212, 255, 0.08);
}
.feature-card i { font-size: 2rem; color: var(--neon-blue); margin-bottom: 16px; }
.feature-card h3 { color: var(--text-primary); margin-bottom: 8px; }
.feature-card p { color: var(--text-secondary); font-size: 0.9rem; }

/* === FORMS === */
.auth-container {
    max-width: 480px;
    margin: 40px auto;
}
.auth-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    position: relative;
}
.auth-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-green), var(--neon-blue), transparent);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.auth-card h2 {
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 1.5rem;
}
.auth-card .subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 0.9rem;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.9rem;
}
.form-control {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-input);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: var(--transition);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.form-control:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.12), 0 0 15px rgba(0, 255, 136, 0.08);
}
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { min-height: 100px; resize: vertical; }
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2300ff88' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.alert-danger { background: rgba(255, 51, 102, 0.1); border: 1px solid rgba(255, 51, 102, 0.3); color: #ff6b8a; }
.alert-success { background: rgba(0, 255, 136, 0.08); border: 1px solid rgba(0, 255, 136, 0.25); color: var(--neon-green); }
.alert-info { background: rgba(0, 212, 255, 0.08); border: 1px solid rgba(0, 212, 255, 0.25); color: var(--neon-blue); }
.auth-footer { text-align: center; margin-top: 24px; color: var(--text-muted); font-size: 0.9rem; }
.auth-footer a { color: var(--neon-green); text-decoration: none; font-weight: 600; }
.auth-footer a:hover { text-decoration: underline; text-shadow: 0 0 8px rgba(0, 255, 136, 0.4); }

/* === LGPD CONSENT CHECKBOX === */
.lgpd-consent { margin-top: 8px }
.lgpd-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    position: relative;
    padding-left: 0;
}
.lgpd-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--glass-border);
    border-radius: 4px;
    background: var(--bg-input);
    cursor: pointer;
    transition: var(--transition);
    margin-top: 2px;
    position: relative;
}
.lgpd-checkbox input[type="checkbox"]:checked {
    background: var(--neon-green);
    border-color: var(--neon-green);
    box-shadow: 0 0 10px rgba(0,255,136,0.2);
}
.lgpd-checkbox input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #06060f;
    font-weight: 800;
    font-size: 13px;
}
.lgpd-checkbox a {
    color: var(--neon-green);
    text-decoration: underline;
    font-weight: 500;
}
.lgpd-checkbox a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 8px rgba(0,212,255,0.3);
}

/* === DASHBOARD === */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 16px;
}
.dashboard-header h1 {
    color: var(--text-primary);
    font-size: 1.6rem;
    background: linear-gradient(135deg, var(--text-primary), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.dash-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.dash-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0.7;
}
.dash-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}
.dash-card.wallet::before { background: linear-gradient(90deg, var(--neon-green), transparent); }
.dash-card.sessions::before { background: linear-gradient(90deg, var(--neon-blue), transparent); }
.dash-card.vehicle::before { background: linear-gradient(90deg, var(--neon-orange), transparent); }
.dash-card.face::before { background: linear-gradient(90deg, var(--neon-purple), transparent); }
.dash-card.wallet:hover { border-color: rgba(0, 255, 136, 0.3); box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 255, 136, 0.1); }
.dash-card.sessions:hover { border-color: rgba(0, 212, 255, 0.3); box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 212, 255, 0.1); }
.dash-card.vehicle:hover { border-color: rgba(255, 153, 51, 0.3); box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 153, 51, 0.1); }
.dash-card.face:hover { border-color: rgba(179, 71, 234, 0.3); box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 30px rgba(179, 71, 234, 0.1); }
.dash-card-label {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}
.dash-card-value { color: var(--text-primary); font-size: 2.2rem; font-weight: 800; }
.dash-card-icon { position: absolute; top: 20px; right: 20px; font-size: 2.5rem; opacity: 0.08; transition: var(--transition); }
.dash-card:hover .dash-card-icon { opacity: 0.15; }
.dash-card.wallet .dash-card-icon { color: var(--neon-green); }
.dash-card.sessions .dash-card-icon { color: var(--neon-blue); }
.dash-card.vehicle .dash-card-icon { color: var(--neon-orange); }
.dash-card.face .dash-card-icon { color: var(--neon-purple); }

.section-title {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 255, 136, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* === TABLES === */
.table-container {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.data-table {
    width: 100%;
    border-collapse: collapse;
}
.data-table th {
    background: rgba(6, 6, 15, 0.8);
    color: var(--neon-green);
    padding: 14px 18px;
    text-align: left;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    border-bottom: 2px solid rgba(0, 255, 136, 0.15);
}
.data-table td {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.data-table tbody tr {
    transition: var(--transition);
}
.data-table tbody tr:hover {
    background: rgba(0, 255, 136, 0.04);
}
.data-table tbody tr:hover td {
    color: var(--text-primary);
}

/* === BADGES === */
.badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.badge-success {
    background: rgba(0, 255, 136, 0.12);
    border: 1px solid rgba(0, 255, 136, 0.25);
    color: var(--neon-green);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.1);
    animation: badgePulseGreen 2.5s ease-in-out infinite;
}
.badge-danger {
    background: rgba(255, 51, 102, 0.12);
    border: 1px solid rgba(255, 51, 102, 0.25);
    color: var(--neon-red);
    box-shadow: 0 0 10px rgba(255, 51, 102, 0.1);
}
.badge-warning {
    background: rgba(255, 153, 51, 0.12);
    border: 1px solid rgba(255, 153, 51, 0.25);
    color: var(--neon-orange);
    box-shadow: 0 0 10px rgba(255, 153, 51, 0.1);
}
.badge-info {
    background: rgba(0, 212, 255, 0.12);
    border: 1px solid rgba(0, 212, 255, 0.25);
    color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.1);
}
.badge-primary {
    background: rgba(179, 71, 234, 0.12);
    border: 1px solid rgba(179, 71, 234, 0.25);
    color: var(--neon-purple);
    box-shadow: 0 0 10px rgba(179, 71, 234, 0.1);
}
@keyframes badgePulseGreen {
    0%, 100% { box-shadow: 0 0 8px rgba(0, 255, 136, 0.1); }
    50% { box-shadow: 0 0 18px rgba(0, 255, 136, 0.25); }
}

/* === WALLET / RECHARGE === */
.wallet-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.wallet-balance-card {
    background: linear-gradient(135deg, #005530, #00a651, #00cc6a);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: #06060f;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 255, 136, 0.2);
}
.wallet-balance-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    animation: cardShine 8s ease-in-out infinite;
}
@keyframes cardShine {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-5%, -5%); }
}
.wallet-balance-label { font-size: 0.9rem; opacity: 0.85; margin-bottom: 8px; position: relative; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.wallet-balance-value { font-size: 3rem; font-weight: 800; position: relative; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); }
.wallet-balance-sub { font-size: 0.85rem; opacity: 0.8; margin-top: 12px; position: relative; font-weight: 500; }
.recharge-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 30px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.recharge-card h3 { color: var(--text-primary); margin-bottom: 24px; }
.recharge-quick {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}
.recharge-amount {
    padding: 14px 12px;
    background: var(--bg-input);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    text-align: center;
    cursor: pointer;
    color: var(--text-secondary);
    font-weight: 600;
    transition: var(--transition);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.recharge-amount:hover, .recharge-amount.active {
    border-color: var(--neon-green);
    background: rgba(0, 255, 136, 0.1);
    color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.15);
    transform: translateY(-2px);
}
.promo-code {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}
.promo-code input { flex: 1; }
.payment-methods { display: flex; gap: 10px; margin-top: 16px; }
.payment-method {
    flex: 1;
    padding: 16px 14px;
    background: var(--bg-input);
    border: 2px solid var(--glass-border);
    border-radius: var(--radius-sm);
    text-align: center;
    cursor: pointer;
    color: var(--text-secondary);
    font-weight: 600;
    transition: var(--transition);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.payment-method:hover, .payment-method.active {
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}
.payment-method i { font-size: 1.6rem; display: block; margin-bottom: 8px; }

/* === STATIONS / MAP === */
.stations-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 24px;
    height: calc(100vh - 200px);
    min-height: 600px;
}
.map-container {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.05);
}
#map { width: 100%; height: 100%; }
.stations-list {
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 100%;
}
.station-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-left: 3px solid var(--text-muted);
    border-radius: var(--radius);
    padding: 18px;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.station-card:hover, .station-card.active {
    border-color: rgba(0, 255, 136, 0.3);
    border-left-color: var(--neon-green);
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.1);
}
.station-card.status-available { border-left-color: var(--neon-green); }
.station-card.status-busy { border-left-color: var(--neon-orange); }
.station-card.status-offline { border-left-color: var(--neon-red); }
.station-card h3 { color: var(--text-primary); font-size: 0.95rem; margin-bottom: 6px; }
.station-card .address { color: var(--text-muted); font-size: 0.8rem; margin-bottom: 10px; }
.station-meta {
    display: flex;
    gap: 14px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
}
.station-meta span { display: flex; align-items: center; gap: 4px; }
.station-meta .available { color: var(--neon-green); }
.station-meta .busy { color: var(--neon-orange); }
.station-meta .offline { color: var(--neon-red); }

/* Leaflet overrides */
.leaflet-popup-content-wrapper {
    background: rgba(15, 15, 35, 0.95) !important;
    color: var(--text-primary) !important;
    border-radius: var(--radius) !important;
    border: 1px solid var(--glass-border) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6) !important;
}
.leaflet-popup-tip { background: rgba(15, 15, 35, 0.95) !important; }
.popup-station h4 { color: var(--neon-green); margin-bottom: 4px; }
.popup-station p { margin: 2px 0; font-size: 0.8rem; color: var(--text-secondary); }
.popup-station .btn { margin-top: 8px; }
.leaflet-control-zoom a {
    background: rgba(15, 15, 35, 0.9) !important;
    color: var(--text-primary) !important;
    border-color: var(--glass-border) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.leaflet-control-zoom a:hover { background: rgba(0, 255, 136, 0.15) !important; }

/* === BRANDS / MODELS === */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}
.brand-card {
    background: var(--bg-card);
    border: 2px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.brand-card:hover, .brand-card.selected {
    border-color: var(--neon-green);
    background: rgba(0, 255, 136, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.12);
}
.brand-card i { font-size: 2.5rem; margin-bottom: 12px; color: var(--neon-green); display: block; }
.brand-card h3 { color: var(--text-primary); font-size: 0.95rem; }
.brand-card .count { color: var(--text-muted); font-size: 0.8rem; margin-top: 4px; }

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}
.model-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.model-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.08);
}
.model-card h3 { color: var(--text-primary); font-size: 1.1rem; margin-bottom: 12px; }
.model-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.model-spec {
    background: var(--bg-input);
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}
.model-spec:hover {
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.06);
}
.model-spec .label { color: var(--text-muted); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; }
.model-spec .value { color: var(--text-primary); font-weight: 700; font-size: 1.1rem; margin-top: 2px; }

/* === FACE VERIFICATION === */
.face-container {
    max-width: 600px;
    margin: 40px auto;
    text-align: center;
}
.face-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}
.face-card h2 { color: var(--text-primary); margin-bottom: 8px; }
.face-card p { color: var(--text-secondary); margin-bottom: 24px; }
.face-preview {
    width: 300px;
    height: 300px;
    margin: 0 auto 24px;
    background: var(--bg-input);
    border: 2px dashed rgba(179, 71, 234, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 30px rgba(179, 71, 234, 0.1);
}
.face-preview i { font-size: 5rem; color: var(--text-muted); }
.face-preview video, .face-preview canvas, .face-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.face-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 0.9rem;
}
.face-status.verified { background: rgba(0, 255, 136, 0.1); border: 1px solid rgba(0, 255, 136, 0.25); color: var(--neon-green); box-shadow: 0 0 15px rgba(0, 255, 136, 0.1); }
.face-status.not-verified { background: rgba(255, 51, 102, 0.1); border: 1px solid rgba(255, 51, 102, 0.25); color: var(--neon-red); }
.face-actions { display: flex; gap: 12px; justify-content: center; margin-top: 20px; }
.camera-hidden { display: none; }

/* === ADMIN PANEL === */
.admin-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 24px;
}
.admin-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 20px;
    height: fit-content;
    position: sticky;
    top: 88px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.admin-sidebar .menu-title {
    color: var(--neon-green);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 255, 136, 0.15);
}
.admin-sidebar a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    margin-bottom: 4px;
    font-size: 0.9rem;
}

/* === NAV CLOCK === */
.nav-clock {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--neon-blue);
    background: rgba(0, 212, 255, 0.07);
    border: 1px solid rgba(0, 212, 255, 0.15);
    white-space: nowrap;
    position: relative;
    cursor: default;
    animation: clockGlow 3s ease-in-out infinite;
}
.nav-clock:hover {
    background: rgba(0, 212, 255, 0.12);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}
.nav-clock i {
    font-size: 0.75rem;
    animation: clockSpin 4s linear infinite;
}
.nav-clock .clock-time {
    font-variant-numeric: tabular-nums;
    letter-spacing: 1px;
    transition: color 0.2s;
}
.nav-clock::after {
    content: attr(data-title);
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    background: rgba(15, 15, 35, 0.95);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 4px 10px;
    font-size: 0.7rem;
    color: var(--text-muted);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    backdrop-filter: blur(10px);
}
.nav-clock:hover::after {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}
@keyframes clockGlow {
    0%, 100% { box-shadow: 0 0 4px rgba(0, 212, 255, 0.05); }
    50% { box-shadow: 0 0 14px rgba(0, 212, 255, 0.15); }
}
@keyframes clockSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* === STAGGERED NAV LINK ENTRANCE === */
.nav-links a {
    animation: navLinkIn 0.5s ease backwards;
    animation-delay: calc(var(--order, 0) * 0.06s);
}
@keyframes navLinkIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === NAV SHIMMER BORDER === */
.main-nav::after, .admin-nav::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-green), var(--neon-blue), var(--neon-green), transparent);
    background-size: 200% 100%;
    animation: shimmerBorder 4s linear infinite;
    opacity: 0.6;
}
.admin-nav::after {
    background: linear-gradient(90deg, transparent, var(--neon-blue), var(--neon-purple), var(--neon-blue), transparent);
    background-size: 200% 100%;
}
@keyframes shimmerBorder {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* === NAV LINK ACTIVE PULSE === */
.nav-links a.active {
    position: relative;
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.3);
}
.nav-links a.active::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: var(--radius-sm);
    background: rgba(0, 255, 136, 0.04);
    animation: activePulse 2.5s ease-in-out infinite;
}
@keyframes activePulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}
.admin-sidebar a:hover, .admin-sidebar a.active {
    background: rgba(0, 255, 136, 0.08);
    color: var(--neon-green);
    box-shadow: inset 0 0 10px rgba(0, 255, 136, 0.05);
}
.admin-content {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 30px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.admin-content h2 {
    color: var(--text-primary);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(0, 255, 136, 0.15);
}

/* === MODAL === */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(6, 6, 15, 0.85);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.modal {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 30px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 212, 255, 0.05);
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(-30px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal h3 { color: var(--text-primary); margin-bottom: 20px; }
.modal-close {
    float: right;
    background: none;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-secondary);
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.modal-close:hover { color: var(--neon-red); border-color: var(--neon-red); box-shadow: 0 0 12px rgba(255, 51, 102, 0.3); }

/* === FOOTER === */
.main-footer {
    text-align: center;
    padding: 24px;
    color: var(--text-muted);
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-lgpd {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.footer-lgpd a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.78rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}
.footer-lgpd a:hover {
    color: var(--neon-green);
    text-shadow: 0 0 8px rgba(0,255,136,0.2);
}
.footer-sep {
    color: rgba(255,255,255,0.08);
    font-size: 0.7rem;
}
.footer-lgpd-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(0,255,136,0.08);
    border: 1px solid rgba(0,255,136,0.15);
    color: var(--neon-green);
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    animation: badgePulseGreen 3s ease-in-out infinite;
}

/* === TABS === */
.tabs { display: flex; gap: 4px; border-bottom: 2px solid rgba(255, 255, 255, 0.06); margin-bottom: 24px; }
.tab {
    padding: 10px 22px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
    position: relative;
}
.tab:hover { color: var(--text-secondary); }
.tab.active {
    color: var(--neon-green);
    border-bottom-color: var(--neon-green);
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.3);
}
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeInUp 0.3s ease; }

/* === EMPTY STATE === */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}
.empty-state i { font-size: 3rem; color: var(--text-muted); margin-bottom: 16px; opacity: 0.4; }
.empty-state h3 { color: var(--text-secondary); margin-bottom: 8px; }
.empty-state p { color: var(--text-muted); font-size: 0.9rem; }

/* === STAR RATING === */
.stars { color: var(--neon-orange); display: inline-flex; gap: 2px; }
.stars .empty { color: var(--text-muted); opacity: 0.3; }

/* === VEHICLES === */
.my-vehicles { margin-bottom: 30px; }
.vehicle-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    transition: var(--transition);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.vehicle-card:hover {
    border-color: rgba(0, 255, 136, 0.3);
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.08);
}
.vehicle-card .v-icon { font-size: 2rem; color: var(--neon-green); }
.vehicle-card .v-info { flex: 1; }
.vehicle-card .v-name { color: var(--text-primary); font-weight: 600; }
.vehicle-card .v-detail { color: var(--text-muted); font-size: 0.8rem; }
.vehicle-card .v-badge { font-size: 0.7rem; }

/* === SEARCH === */
.search-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}
.search-bar input { flex: 1; }
.search-bar select { width: auto; min-width: 150px; }

/* === PAGE HEADER === */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 16px;
}
.page-header h1 {
    color: var(--text-primary);
    font-size: 1.6rem;
    background: linear-gradient(135deg, var(--text-primary), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === LOADING === */
.loading {
    display: inline-block;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-top-color: var(--neon-green);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .stations-layout { grid-template-columns: 1fr; height: auto; }
    .map-container { height: 400px; }
    .wallet-container { grid-template-columns: 1fr; }
    .admin-layout { grid-template-columns: 1fr; }
    .admin-sidebar {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        padding: 14px;
    }
    .admin-sidebar .menu-title { width: 100%; margin-bottom: 8px; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .nav-links.show {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(6, 6, 15, 0.98);
        border-bottom: 1px solid rgba(0, 255, 136, 0.15);
        padding: 12px;
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    }
    .nav-links.show a { padding: 12px 16px; border-radius: var(--radius-sm); }
    .recharge-quick { grid-template-columns: repeat(2, 1fr); }
    .dashboard-cards { grid-template-columns: 1fr; }
    .models-grid { grid-template-columns: 1fr; }
    .brands-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
    .admin-content { padding: 16px; }
    .stations-list { max-height: none; }
    .hero-cta { flex-direction: column; align-items: center; }
    .hero-cta .btn { width: 100%; max-width: 300px; justify-content: center; }
}

@media (max-width: 480px) {
    .hero p { font-size: 1rem; }
    .hero-cta { flex-direction: column; }
    .auth-card { padding: 24px; }
    .wallet-balance-value { font-size: 2rem; }
    .stat-card { padding: 20px; }
    .stat-card h3 { font-size: 1.5rem; }
    .dash-card-value { font-size: 1.6rem; }
    .face-preview { width: 220px; height: 220px; }
    .payment-methods { flex-direction: column; }
}

/* === UTILITY ANIMATIONS === */
@keyframes glowPulseNeon {
    0%, 100% { box-shadow: 0 0 8px rgba(0, 255, 136, 0.2); }
    50% { box-shadow: 0 0 24px rgba(0, 255, 136, 0.4); }
}

@keyframes glowPulseBlue {
    0%, 100% { box-shadow: 0 0 8px rgba(0, 212, 255, 0.2); }
    50% { box-shadow: 0 0 24px rgba(0, 212, 255, 0.4); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* === CANVAS PARTICLE OVERLAY SUPPORT === */
canvas[data-particle] {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

/* === SELECTION === */
::selection { background: rgba(0, 255, 136, 0.25); color: var(--text-primary); }
::-moz-selection { background: rgba(0, 255, 136, 0.25); color: var(--text-primary); }

/* === FOCUS VISIBLE === */
:focus-visible {
    outline: 2px solid var(--neon-green);
    outline-offset: 2px;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(10, 10, 25, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 255, 136, 0.15);
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.6);
    animation: slideUp 0.5s ease;
}
@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.cookie-content .cookie-icon {
    font-size: 1.8rem;
    color: var(--neon-green);
    animation: cookieWiggle 3s ease-in-out infinite;
}
@keyframes cookieWiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-8deg); }
    75% { transform: rotate(8deg); }
}
.cookie-content div {
    flex: 1;
    min-width: 200px;
}
.cookie-content strong {
    color: var(--text-primary);
    font-size: 0.9rem;
}
.cookie-content p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 2px 0 0;
    line-height: 1.5;
}
.cookie-content a {
    color: var(--neon-green);
    text-decoration: underline;
}
.cookie-content .btn {
    flex-shrink: 0;
    padding: 8px 24px;
    border-radius: 20px;
}

/* === SMOOTH SCROLLBAR FOR FIREFOX === */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 255, 136, 0.25) rgba(10, 10, 25, 0.6);
}
