/* ELITE WHITE-PURPLE DESIGN SYSTEM - NAMESPACE .vlt- */
.vlt-wrapper {
  margin-left: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
}

.vlt-glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* HEADER */
.vlt-header { display: flex; justify-content: space-between; align-items: center; padding: 24px 32px; }
.vlt-title { margin: 0; font-size: 28px; font-weight: 800; letter-spacing: 1px; background: linear-gradient(135deg, #fff, #c084fc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-transform: uppercase; }
.vlt-subtitle { margin: 4px 0 0; color: #a1a1aa; font-size: 14px; }
.vlt-header-right { display: flex; gap: 16px; align-items: center; }
.vlt-stat-chip { display: flex; align-items: center; gap: 8px; background: rgba(0,0,0,0.3); padding: 8px 16px; border-radius: 12px; font-size: 13px; font-weight: 700; border: 1px solid rgba(255,255,255,0.05); text-transform: uppercase; }

/* HERO */
.vlt-hero { padding: 48px; display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; overflow: hidden; }
.vlt-hero-icon { font-size: 80px; margin-bottom: 24px; transition: all 0.5s; }
.vlt-hero-unprotected .vlt-hero-icon { color: #ef5350; filter: drop-shadow(0 0 20px rgba(239,83,80,0.4)); }
.vlt-hero-protected .vlt-hero-icon { color: #06b6d4; filter: drop-shadow(0 0 30px rgba(6,182,212,0.6)); animation: vltPulseIcon 3s infinite; }
.vlt-hero-title { font-size: 32px; font-weight: 800; margin: 0 0 12px; }
.vlt-hero-desc { font-size: 16px; color: #a1a1aa; max-width: 600px; line-height: 1.6; margin-bottom: 32px; }
.vlt-hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* GRID PANELS */
.vlt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 24px; }
.vlt-panel { padding: 24px; }
.vlt-panel-title { font-size: 16px; font-weight: 700; margin: 0 0 20px; display: flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: 1px; color: #e4e4e7; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 12px; }
.vlt-health-stat { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 14px; color: #a1a1aa; }
.vlt-details-list { padding-left: 20px; margin: 0; font-size: 14px; color: #e4e4e7; line-height: 2; }
.vlt-details-list b { color: #c084fc; }

/* MODALS & WIZARD */
.vlt-modal { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.8); backdrop-filter: blur(8px); display: none; justify-content: center; align-items: center; z-index: 2000; }
.vlt-modal.active { display: flex; animation: vltFadeIn 0.3s forwards; }
.vlt-modal-card { width: 100%; max-width: 550px; padding: 32px; position: relative; display: flex; flex-direction: column; }
.vlt-wizard-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.vlt-wizard-header h3 { font-size: 20px; font-weight: 800; margin: 0; display: flex; align-items: center; gap: 8px; }
.vlt-btn-close { background: transparent; border: none; color: #a1a1aa; font-size: 24px; cursor: pointer; transition: color 0.3s; }
.vlt-btn-close:hover { color: #ef5350; }

.vlt-wizard-progress { width: 100%; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; margin-bottom: 24px; overflow: hidden; }
.vlt-wizard-progress-fill { height: 100%; background: #c084fc; width: 20%; transition: width 0.4s ease; }
.vlt-wizard-step { display: none; animation: vltSlideUp 0.3s; flex-direction: column; }
.vlt-wizard-step.active { display: flex; }
.vlt-wizard-footer { display: flex; justify-content: space-between; margin-top: 32px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1); }

/* WIZARD ELEMENTS */
.vlt-warning-box { background: rgba(251,191,36,0.1); border: 1px solid rgba(251,191,36,0.3); padding: 20px; border-radius: 12px; border-left: 4px solid #fbbf24; }
.vlt-warning-box h4 { color: #fbbf24; margin: 0 0 12px; font-size: 15px; }
.vlt-warning-box ul { margin: 0; padding-left: 20px; color: #e4e4e7; font-size: 13px; line-height: 1.6; }
.vlt-checkbox-label { display: flex; align-items: center; gap: 12px; font-size: 14px; color: #e4e4e7; cursor: pointer; }
.vlt-checkbox-label input { width: 16px; height: 16px; accent-color: #a855f7; cursor: pointer; }

.vlt-input { width: 100%; background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.2); color: #fff; padding: 14px 16px; border-radius: 8px; outline: none; font-family: 'Inter'; font-size: 16px; transition: border-color 0.3s; }
.vlt-input:focus { border-color: #c084fc; box-shadow: 0 0 10px rgba(168,85,247,0.2); }
.vlt-icon-btn { background: transparent; border: none; color: #a1a1aa; font-size: 16px; cursor: pointer; padding: 4px; }
.vlt-icon-btn:hover { color: #fff; }

.vlt-strength-meter { margin-top: 8px; }
.vlt-strength-bar { width: 100%; height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; }
.vlt-strength-fill { height: 100%; width: 0%; background: #ef5350; transition: all 0.3s; }
.vlt-strength-label { font-size: 12px; color: #a1a1aa; margin-top: 6px; text-align: right; font-weight: 600; }

.vlt-recovery-box { background: #000; border: 1px solid rgba(255,255,255,0.1); padding: 20px; border-radius: 8px; font-family: monospace; font-size: 15px; color: #06b6d4; line-height: 1.6; text-align: center; word-spacing: 8px; user-select: all; }

.vlt-progress-screen, .vlt-success-screen { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 32px 0; }
.vlt-pulsing-vault { font-size: 64px; color: #c084fc; animation: vltPulseIcon 2s infinite; margin-bottom: 24px; }
.vlt-confetti { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; overflow: hidden; }
.vlt-particle { position: absolute; width: 8px; height: 8px; opacity: 0; }

/* BUTTONS */
.vlt-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; border-radius: 8px; font-weight: 700; font-size: 13px; cursor: pointer; transition: all 0.3s; border: none; font-family: 'Inter'; text-transform: uppercase; letter-spacing: 0.5px; }
.vlt-btn-primary { background: #a855f7; color: #fff; }
.vlt-btn-primary:hover:not(:disabled) { background: #c084fc; box-shadow: 0 0 20px rgba(168,85,247,0.4); }
.vlt-btn-primary:disabled { background: rgba(255,255,255,0.1); color: #a1a1aa; cursor: not-allowed; }
.vlt-btn-outline { background: rgba(255,255,255,0.05); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.vlt-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.vlt-btn-ghost { background: transparent; color: #a1a1aa; border: 1px solid transparent; }
.vlt-btn-ghost:hover { color: #fff; }
.vlt-btn-danger { background: rgba(239,83,80,0.1); color: #ef5350; border: 1px solid rgba(239,83,80,0.4); }
.vlt-btn-danger:hover { background: #ef5350; color: #fff; box-shadow: 0 0 20px rgba(239,83,80,0.4); }

/* ANIMATIONS */
@keyframes vltFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes vltSlideUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes vltPulseIcon { 0% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(currentColor, 0.4)); } 50% { transform: scale(1.05); filter: drop-shadow(0 0 30px rgba(currentColor, 0.8)); } 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(currentColor, 0.4)); } }
@keyframes vltConfettiFall { 0% { transform: translateY(-10vh) rotate(0deg); opacity: 1; } 100% { transform: translateY(110vh) rotate(720deg); opacity: 0; } }