/* ARIA CPA Engine Dashboard - Dark Futuristic Theme */
:root {
  --bg: #0a0a0f;
  --card: #12121f;
  --border: #1a1a2e;
  --cyan: #00f0ff;
  --purple: #8b5cf6;
  --green: #10b981;
  --red: #f43f5e;
  --yellow: #f59e0b;
  --text: #e2e8f0;
  --text-dim: #64748b;
  --text-muted: #475569;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 14px; }
body { background: var(--bg); color: var(--text); font-family: var(--font); min-height: 100vh; }

/* Login Overlay */
.login-overlay { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; background: rgba(5,5,10,0.92); backdrop-filter: blur(20px); }
.login-card { background: rgba(18,18,31,0.85); border: 1px solid rgba(0,240,255,0.15); border-radius: 16px; padding: 2.5rem; width: 380px; max-width: 90vw; backdrop-filter: blur(40px); box-shadow: 0 0 60px rgba(0,240,255,0.08), 0 0 120px rgba(139,92,246,0.05); }
.login-logo { text-align: center; margin-bottom: 2rem; }
.login-logo h1 { font-size: 1.6rem; background: linear-gradient(135deg, var(--cyan), var(--purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 800; }
.login-logo span { font-size: 0.8rem; color: var(--text-dim); }
.login-btn { width: 100%; justify-content: center; padding: 0.7rem; font-size: 0.9rem; margin-top: 0.5rem; }
.login-error { color: var(--red); font-size: 0.8rem; text-align: center; margin-bottom: 0.5rem; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple); }

/* Layout */
.app { display: flex; min-height: 100vh; }
.sidebar { width: 220px; background: var(--card); border-right: 1px solid var(--border); padding: 1rem 0; display: flex; flex-direction: column; position: fixed; top: 0; left: 0; bottom: 0; z-index: 100; transition: transform .2s; }
.main { margin-left: 220px; flex: 1; padding: 1.5rem; min-height: 100vh; }

/* Sidebar */
.logo { padding: 0.5rem 1.2rem 1.5rem; border-bottom: 1px solid var(--border); margin-bottom: 0.5rem; }
.logo h1 { font-size: 1.3rem; background: linear-gradient(135deg, var(--cyan), var(--purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 800; letter-spacing: -0.5px; }
.logo span { font-size: 0.7rem; color: var(--text-dim); display: block; margin-top: 2px; }

.nav-item { display: flex; align-items: center; gap: 0.6rem; padding: 0.6rem 1.2rem; color: var(--text-dim); cursor: pointer; transition: all .15s; font-size: 0.85rem; border-left: 3px solid transparent; }
.nav-item:hover { color: var(--text); background: rgba(255,255,255,0.03); }
.nav-item.active { color: var(--cyan); background: rgba(0,240,255,0.05); border-left-color: var(--cyan); }
.nav-item i { font-size: 1rem; width: 20px; text-align: center; }

.sidebar-footer { margin-top: auto; padding: 0.8rem 1.2rem; border-top: 1px solid var(--border); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 6px; }
.status-dot.running { background: var(--green); box-shadow: 0 0 6px var(--green); }
.status-dot.stopped { background: var(--red); box-shadow: 0 0 6px var(--red); }

/* Page */
.page { display: none; }
.page.active { display: block; animation: fadeIn .2s; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.page-header { margin-bottom: 1.5rem; }
.page-header h2 { font-size: 1.4rem; font-weight: 700; }
.page-header p { color: var(--text-dim); font-size: 0.85rem; margin-top: 0.25rem; }

/* Cards */
.card { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 1.2rem; }
.card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.card-header h3 { font-size: 0.95rem; font-weight: 600; }

/* Stats Grid */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin-bottom: 1.5rem; }
.stat-card { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 1rem 1.2rem; position: relative; overflow: hidden; }
.stat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; }
.stat-card.cyan::before { background: var(--cyan); }
.stat-card.purple::before { background: var(--purple); }
.stat-card.green::before { background: var(--green); }
.stat-card.red::before { background: var(--red); }
.stat-card.yellow::before { background: var(--yellow); }
.stat-label { font-size: 0.75rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.5px; }
.stat-value { font-size: 1.8rem; font-weight: 800; margin: 0.3rem 0; }
.stat-card.cyan .stat-value { color: var(--cyan); }
.stat-card.purple .stat-value { color: var(--purple); }
.stat-card.green .stat-value { color: var(--green); }
.stat-card.red .stat-value { color: var(--red); }
.stat-card.yellow .stat-value { color: var(--yellow); }
.stat-sub { font-size: 0.75rem; color: var(--text-muted); }

/* Charts */
.charts-row { display: grid; grid-template-columns: 2fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.chart-container { position: relative; height: 250px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.5rem 1rem; border: none; border-radius: 6px; font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: all .15s; font-family: var(--font); }
.btn-cyan { background: rgba(0,240,255,0.15); color: var(--cyan); border: 1px solid rgba(0,240,255,0.3); }
.btn-cyan:hover { background: rgba(0,240,255,0.25); }
.btn-green { background: rgba(16,185,129,0.15); color: var(--green); border: 1px solid rgba(16,185,129,0.3); }
.btn-green:hover { background: rgba(16,185,129,0.25); }
.btn-red { background: rgba(244,63,94,0.15); color: var(--red); border: 1px solid rgba(244,63,94,0.3); }
.btn-red:hover { background: rgba(244,63,94,0.25); }
.btn-purple { background: rgba(139,92,246,0.15); color: var(--purple); border: 1px solid rgba(139,92,246,0.3); }
.btn-purple:hover { background: rgba(139,92,246,0.25); }
.btn-yellow { background: rgba(245,158,11,0.15); color: var(--yellow); border: 1px solid rgba(245,158,11,0.3); }
.btn-yellow:hover { background: rgba(245,158,11,0.25); }
.btn-sm { padding: 0.3rem 0.7rem; font-size: 0.75rem; }
.btn-group { display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* Tables */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
th { text-align: left; padding: 0.7rem; color: var(--text-dim); font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 1px solid var(--border); }
td { padding: 0.7rem; border-bottom: 1px solid rgba(255,255,255,0.03); }
tr:hover td { background: rgba(255,255,255,0.02); }
.badge { padding: 0.2rem 0.5rem; border-radius: 4px; font-size: 0.7rem; font-weight: 600; }
.badge-green { background: rgba(16,185,129,0.15); color: var(--green); }
.badge-red { background: rgba(244,63,94,0.15); color: var(--red); }
.badge-yellow { background: rgba(245,158,11,0.15); color: var(--yellow); }
.badge-cyan { background: rgba(0,240,255,0.15); color: var(--cyan); }
.badge-purple { background: rgba(139,92,246,0.15); color: var(--purple); }

/* Session Viewer */
.session-viewer { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.screenshot-container { background: #000; border-radius: 8px; overflow: hidden; position: relative; min-height: 400px; display: flex; align-items: center; justify-content: center; }
.screenshot-container img { max-width: 100%; max-height: 500px; object-fit: contain; cursor: pointer; transition: transform 0.3s ease; }
.screenshot-container img:hover { transform: scale(1.02); }
.screenshot-container img.fullscreen { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 9999; max-width: 100vw; max-height: 100vh; background: rgba(0,0,0,0.9); object-fit: contain; }
.screenshot-placeholder { color: var(--text-muted); text-align: center; }
.screenshot-placeholder i { font-size: 3rem; display: block; margin-bottom: 0.5rem; }
.session-info-panel { display: flex; flex-direction: column; gap: 1rem; }
.session-detail { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.session-detail-label { color: var(--text-dim); font-size: 0.8rem; }
.session-detail-value { font-weight: 600; font-size: 0.85rem; }
.action-log { background: #0a0a12; border-radius: 6px; padding: 0.8rem; font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; max-height: 300px; overflow-y: auto; }
.log-entry { padding: 0.2rem 0; color: var(--text-dim); }
.log-entry .time { color: var(--text-muted); margin-right: 0.5rem; }
.log-entry.success { color: var(--green); }
.log-entry.error { color: var(--red); }
.log-entry.info { color: var(--cyan); }

/* Progress Steps */
.steps { display: flex; gap: 0; margin: 1rem 0; }
.step { flex: 1; text-align: center; padding: 0.5rem; font-size: 0.7rem; color: var(--text-muted); position: relative; border-bottom: 2px solid var(--border); }
.step.active { color: var(--cyan); border-bottom-color: var(--cyan); }
.step.done { color: var(--green); border-bottom-color: var(--green); }

/* Forms */
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.8rem; color: var(--text-dim); margin-bottom: 0.3rem; }
.form-control { width: 100%; padding: 0.5rem 0.8rem; background: var(--bg); border: 1px solid var(--border); border-radius: 6px; color: var(--text); font-size: 0.85rem; font-family: var(--font); }
.form-control:focus { outline: none; border-color: var(--cyan); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; font-family: 'JetBrains Mono', monospace; }

/* Adaptation Level */
.adapt-bar { display: flex; gap: 2px; margin: 0.5rem 0; }
.adapt-segment { flex: 1; height: 6px; border-radius: 3px; background: var(--border); }
.adapt-segment.active.green { background: var(--green); }
.adapt-segment.active.yellow { background: var(--yellow); }
.adapt-segment.active.red { background: var(--red); }

/* Toggle */
.toggle { position: relative; display: inline-block; width: 40px; height: 22px; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background: var(--border); border-radius: 22px; transition: .2s; }
.toggle-slider:before { content: ''; position: absolute; height: 16px; width: 16px; left: 3px; bottom: 3px; background: var(--text-dim); border-radius: 50%; transition: .2s; }
.toggle input:checked + .toggle-slider { background: var(--cyan); }
.toggle input:checked + .toggle-slider:before { transform: translateX(18px); background: white; }

/* Responsive */
@media (max-width: 768px) {
  .sidebar { transform: translateX(-100%); }
  .sidebar.open { transform: translateX(0); }
  .main { margin-left: 0; padding: 1rem; }
  .session-viewer { grid-template-columns: 1fr; }
  .charts-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .mobile-toggle { display: block !important; }
  .grid-2 { grid-template-columns: 1fr; }
  .modal { width: 95vw; margin: 1rem; }
  .geo-grid { grid-template-columns: 1fr; }
  .toggle-grid { grid-template-columns: 1fr; }
  .btn-group { flex-wrap: wrap; }
  .table-wrap { font-size: 0.75rem; }
  th, td { padding: 0.4rem; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .btn-group .btn { padding: 0.4rem 0.6rem; font-size: 0.7rem; }
  .chart-container { height: 200px !important; }
  .settings-content.active { padding: 1rem; }
  .settings-header { padding: 1rem; }
  .settings-header h3 { font-size: 0.9rem; }
}
.mobile-toggle { display: none; position: fixed; top: 1rem; left: 1rem; z-index: 200; background: var(--card); border: 1px solid var(--border); color: var(--text); width: 36px; height: 36px; border-radius: 8px; cursor: pointer; font-size: 1.2rem; }

/* Misc */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.mt-1 { margin-top: 1rem; }
.mb-1 { margin-bottom: 1rem; }
.text-cyan { color: var(--cyan); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.text-dim { color: var(--text-dim); }
.text-sm { font-size: 0.8rem; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.gap-1 { gap: 1rem; }
.empty-state { text-align: center; padding: 3rem; color: var(--text-muted); }
.empty-state i { font-size: 2.5rem; margin-bottom: 0.5rem; display: block; }
.pulse { animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.spin { animation: spin 1s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Toggle Switch Styles */
.toggle-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 0.75rem; padding: 0.5rem 0; }
.toggle-item { display: flex; justify-content: space-between; align-items: center; padding: 0.75rem 1rem; background: var(--bg); border-radius: 8px; border: 1px solid var(--border); }
.toggle-info { display: flex; flex-direction: column; gap: 0.15rem; flex: 1; margin-right: 1rem; }
.toggle-label { font-weight: 500; font-size: 0.9rem; }
.toggle-desc { font-size: 0.75rem; color: var(--text-dim); }
.toggle-switch { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider-sw { position: absolute; cursor: pointer; inset: 0; background: #333; border-radius: 24px; transition: 0.3s; }
.toggle-slider-sw:before { content: ""; position: absolute; height: 18px; width: 18px; left: 3px; bottom: 3px; background: #888; border-radius: 50%; transition: 0.3s; }
.toggle-switch input:checked + .toggle-slider-sw { background: var(--cyan); }
.toggle-switch input:checked + .toggle-slider-sw:before { transform: translateX(20px); background: #fff; }
.toggle-input { width: 90px !important; text-align: center; }
.toggle-category .card-header { border-bottom: 1px solid var(--border); padding-bottom: 0.75rem; margin-bottom: 0.5rem; }

/* Modal */
.modal-overlay { position: fixed; inset: 0; z-index: 9998; display: none; align-items: center; justify-content: center; background: rgba(5,5,10,0.85); backdrop-filter: blur(10px); }
.modal { background: var(--card); border: 1px solid var(--border); border-radius: 12px; width: 600px; max-width: 90vw; max-height: 90vh; overflow-y: auto; }
.modal-header { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem; border-bottom: 1px solid var(--border); }
.modal-header h3 { margin: 0; font-size: 1.2rem; }
.modal-body { padding: 1.5rem; }
.modal-footer { padding: 1.5rem; border-top: 1px solid var(--border); display: flex; gap: 1rem; justify-content: flex-end; }

/* GEO Checkboxes */
.geo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0.5rem; }
.geo-checkbox { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; cursor: pointer; padding: 0.3rem 0; }
.geo-checkbox input[type="checkbox"] { margin: 0; }

/* Confirmation Dialog */
.confirm-dialog { background: var(--card); border: 1px solid var(--red); border-radius: 8px; padding: 1.5rem; text-align: center; max-width: 400px; }
.confirm-dialog h4 { margin-bottom: 0.5rem; color: var(--red); }
.confirm-dialog p { margin-bottom: 1rem; color: var(--text-dim); }
.confirm-dialog .btn-group { justify-content: center; }

/* Toast Notifications */
.toast-container { position: fixed; top: 20px; right: 20px; z-index: 10000; }
.toast { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 1rem; margin-bottom: 0.5rem; min-width: 300px; opacity: 0; transform: translateX(100%); transition: all 0.3s ease; }
.toast.show { opacity: 1; transform: translateX(0); }
.toast-success { border-color: var(--green); }
.toast-error { border-color: var(--red); }
.toast-info { border-color: var(--cyan); }
.toast-content { display: flex; align-items: center; gap: 0.7rem; }
.toast-success .toast-content i { color: var(--green); }
.toast-error .toast-content i { color: var(--red); }
.toast-info .toast-content i { color: var(--cyan); }

/* Settings Accordion */
.settings-container { display: flex; flex-direction: column; gap: 1rem; }
.settings-section { background: var(--card); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.settings-header { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.5rem; cursor: pointer; transition: background 0.2s; border-bottom: 1px solid transparent; outline: none; }
.settings-header:hover, .settings-header:focus { background: rgba(255,255,255,0.02); }
.settings-header:focus { box-shadow: inset 0 0 0 2px var(--cyan); }
.settings-header h3 { margin: 0; font-size: 1rem; display: flex; align-items: center; gap: 0.7rem; }
.settings-header h3 i { font-size: 1.1rem; color: var(--cyan); }
.expand-icon { transition: transform 0.3s ease; color: var(--text-dim); }
.settings-header.active { border-bottom-color: var(--border); }
.settings-header.active .expand-icon { transform: rotate(180deg); }
.settings-content { padding: 0; max-height: 0; overflow: hidden; transition: all 0.3s ease; }
.settings-content.active { padding: 1.5rem; max-height: 1000px; }

/* Settings Form Elements */
.checkbox-group { display: flex; flex-wrap: wrap; gap: 1rem; }
.checkbox-item { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; }
.checkbox-item input[type="checkbox"] { margin: 0; }
.photo-status { background: var(--bg); border-radius: 6px; padding: 1rem; margin: 1rem 0; text-align: center; }
.photo-count { font-size: 0.9rem; color: var(--text-dim); }
.photo-count strong { color: var(--cyan); font-size: 1.1rem; }

/* ═══════════════════════════════════════
   Fingerprint & Session Check Styles
   ═══════════════════════════════════════ */

.fingerprint-status { margin-bottom: 1.5rem; }
.fingerprint-overall { display: flex; align-items: center; gap: 1.5rem; padding: 1.5rem; }
.status-icon { font-size: 3rem; }
.status-icon i.text-green { color: var(--green); }
.status-icon i.text-yellow { color: var(--yellow); }
.status-icon i.text-red { color: var(--red); }
.status-icon i.text-dim { color: var(--text-dim); }
.status-info { flex: 1; }
.status-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.3rem; }
.status-subtitle { color: var(--text-dim); font-size: 0.9rem; }
.fingerprint-checks { }
.fingerprint-details { }

.check-list { display: flex; flex-direction: column; gap: 0.8rem; }
.check-item { display: flex; align-items: center; gap: 1rem; padding: 0.8rem; background: var(--bg); border-radius: 8px; border: 1px solid var(--border); transition: border-color 0.2s; }
.check-item.pass { border-color: rgba(16,185,129,0.3); background: rgba(16,185,129,0.05); }
.check-item.fail { border-color: rgba(244,63,94,0.3); background: rgba(244,63,94,0.05); }
.check-item.warn { border-color: rgba(245,158,11,0.3); background: rgba(245,158,11,0.05); }
.check-icon { font-size: 1.4rem; width: 24px; text-align: center; flex-shrink: 0; }
.check-icon i.text-green { color: var(--green); }
.check-icon i.text-red { color: var(--red); }
.check-icon i.text-yellow { color: var(--yellow); }
.check-icon i.text-dim { color: var(--text-dim); }
.check-content { flex: 1; }
.check-title { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.2rem; }
.check-detail { font-size: 0.8rem; color: var(--text-dim); }

/* ═══════════════════════════════════════
   Proxy Panel Styles
   ═══════════════════════════════════════ */

.proxy-config { }
.proxy-config .form-group { margin-bottom: 1rem; }

.progress-bar { width: 100%; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--cyan), var(--purple)); border-radius: 3px; transition: width 0.3s ease; }

.connection-test { }
.test-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 0.8rem; margin-bottom: 1rem; }
.test-item { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; padding: 0.8rem; background: var(--bg); border-radius: 8px; border: 1px solid var(--border); text-align: center; }
.test-item.testing { border-color: var(--cyan); background: rgba(0,240,255,0.05); }
.test-item.pass { border-color: var(--green); background: rgba(16,185,129,0.05); }
.test-item.fail { border-color: var(--red); background: rgba(244,63,94,0.05); }
.test-geo { font-size: 1rem; font-weight: 600; }
.test-status { font-size: 0.8rem; }
.test-ip { font-size: 0.75rem; color: var(--text-dim); font-family: 'JetBrains Mono', monospace; }

.locations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(80px, 1fr)); gap: 0.5rem; max-height: 200px; overflow-y: auto; }
.location-item { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; padding: 0.5rem; background: var(--bg); border-radius: 6px; border: 1px solid var(--border); text-align: center; font-size: 0.8rem; }
.location-flag { font-size: 1.2rem; }
.location-code { font-size: 0.7rem; color: var(--text-dim); }

.input-group { display: flex; }
.input-group .form-control { border-radius: 6px 0 0 6px; border-right: none; }
.input-group .btn { border-radius: 0 6px 6px 0; }

/* ═══════════════════════════════════════
   Enhanced Campaign Wizard Styles
   ═══════════════════════════════════════ */

.campaign-wizard { }
.wizard-steps { display: flex; justify-content: space-between; margin-bottom: 2rem; position: relative; }
.wizard-steps::before { content: ''; position: absolute; top: 15px; left: 25px; right: 25px; height: 2px; background: var(--border); z-index: 1; }
.wizard-step { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; position: relative; z-index: 2; background: var(--card); padding: 0 10px; }
.wizard-step-number { width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 0.8rem; color: var(--text-dim); background: var(--card); }
.wizard-step.active .wizard-step-number { border-color: var(--cyan); color: var(--cyan); background: rgba(0,240,255,0.1); }
.wizard-step.completed .wizard-step-number { border-color: var(--green); color: var(--green); background: rgba(16,185,129,0.1); }
.wizard-step.completed .wizard-step-number::before { content: '✓'; }
.wizard-step-title { font-size: 0.8rem; font-weight: 500; color: var(--text-dim); text-align: center; }
.wizard-step.active .wizard-step-title { color: var(--cyan); }
.wizard-step.completed .wizard-step-title { color: var(--green); }

.wizard-content { min-height: 400px; }
.wizard-section { display: none; }
.wizard-section.active { display: block; animation: slideIn 0.3s ease; }
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

.wizard-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }

.geo-selector { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 0.8rem; }
.geo-option { display: flex; align-items: center; gap: 0.8rem; padding: 0.8rem; background: var(--bg); border: 2px solid var(--border); border-radius: 8px; cursor: pointer; transition: all 0.2s; }
.geo-option:hover { border-color: rgba(0,240,255,0.3); }
.geo-option.selected { border-color: var(--cyan); background: rgba(0,240,255,0.05); }
.geo-flag { font-size: 1.5rem; }
.geo-info { flex: 1; }
.geo-name { font-weight: 600; font-size: 0.9rem; }
.geo-payout { font-size: 0.8rem; color: var(--text-dim); }

.traffic-preview { background: var(--bg); border-radius: 8px; padding: 1.5rem; margin-top: 1rem; }
.preview-item { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.preview-item:last-child { border-bottom: none; }
.preview-label { color: var(--text-dim); }
.preview-value { font-weight: 600; color: var(--cyan); }
