/* ── Auth Fullscreen Overlay (Verification / Onboarding over Feed with blur) ── */
.auth-fullscreen-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px) saturate(0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

/* ── Auth Gate (Login / Register Modal) ── */
#auth-gate {
  display: none;
}

.auth-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.auth-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 40px 36px;
  border-radius: 20px;
  background: rgba(18, 18, 23, 0.95);
  border: 1px solid var(--glass-border);
}

.auth-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  transition: background 0.2s, border-color 0.2s;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-close:hover {
  background: #1a1a1a;
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.auth-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
}

.auth-logo-icon {
  color: var(--accent);
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 8px var(--accent-glow));
}

.auth-logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-main);
}

.auth-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-main);
}

.auth-subtitle {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* ── Form toggle ── */
.auth-form { display: none; }
.auth-form.active { display: block; }

/* ── Fields ── */
.auth-field {
  margin-bottom: 16px;
}

.auth-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-dim);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.auth-field input,
.auth-field select {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--text-main);
  font-family: var(--font-main);
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.auth-field input::placeholder {
  color: var(--text-faint);
}

.auth-field input:focus,
.auth-field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.auth-field select {
  cursor: pointer;
  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='%239898b4' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.auth-field select option {
  background: #1a1a24;
  color: var(--text-main);
}

/* ── Password toggle (hold to reveal) ── */
.auth-password-wrap {
  position: relative;
}

.auth-password-wrap input {
  width: 100%;
  padding-right: 42px;
}

.auth-pw-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-faint);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
  user-select: none;
}

.auth-pw-toggle:hover {
  color: var(--text-dim);
}

.auth-hint {
  font-weight: 400;
  color: var(--text-faint);
  font-size: 0.75rem;
}

/* ── Error message ── */
.auth-error {
  color: var(--error);
  font-size: 0.82rem;
  min-height: 20px;
  margin-bottom: 8px;
}

/* ── Buttons ── */
.auth-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 12px var(--accent-glow);
}

.auth-btn:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
}

.auth-btn:active {
  transform: translateY(0);
}

.auth-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.auth-btn.secondary {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-dim);
  box-shadow: none;
}

.auth-btn.secondary:hover {
  background: var(--glass-hover);
  color: var(--text-main);
}

/* ── Switch link ── */
.auth-switch {
  text-align: center;
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.auth-switch a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.auth-switch a:hover {
  text-decoration: underline;
}

/* ── Forgot password link ── */
.auth-forgot-link {
  text-align: center;
  margin-top: 8px;
}
.auth-forgot-link a {
  color: #a78bfa;
  font-size: 0.8rem;
  text-decoration: none;
}
.auth-forgot-link a:hover {
  color: #c4b5fd;
  text-decoration: underline;
}
.auth-forgot-back {
  text-align: center;
  margin-top: 12px;
}
.auth-forgot-back a {
  color: #8b949e;
  font-size: 0.8rem;
  text-decoration: none;
}
.auth-forgot-back a:hover {
  color: #e6edf3;
}
.auth-modal-desc {
  font-size: 0.84rem;
  color: var(--text-dim);
  margin-bottom: 16px;
  text-align: center;
  line-height: 1.5;
}
.auth-modal-desc strong {
  color: var(--accent, #a78bfa);
  font-weight: 600;
}

/* ── Forgot password form layout ── */
#auth-form-forgot .auth-title {
  text-align: center;
  margin-bottom: 8px;
}
#auth-form-forgot .auth-field {
  margin-bottom: 16px;
}
#auth-form-forgot .auth-field label {
  margin-bottom: 6px;
  display: block;
}
#auth-form-forgot .auth-btn {
  margin-top: 8px;
}
#auth-form-forgot .auth-error {
  text-align: center;
  margin-bottom: 8px;
}

/* ── Privacy link in auth modal ── */
.auth-privacy-link {
  text-align: center;
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  opacity: 0.7;
}
.auth-privacy-link a {
  color: var(--text-dim);
  text-decoration: none;
}
.auth-privacy-link a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* ── Onboarding Step 2 ── */
.onboarding-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  padding: 24px;
}

.onboarding-card {
  max-width: 680px;
  width: 100%;
  padding: 44px 40px;
  border-radius: 24px;
  background: rgba(18, 18, 23, 0.95);
  border: 1px solid var(--glass-border);
}

.onboarding-header {
  text-align: center;
  margin-bottom: 32px;
}

.onboarding-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.onboarding-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.onboarding-subtitle {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.5;
  max-width: 380px;
  margin: 0 auto;
}

.onboarding-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
  margin-bottom: 28px;
}

.onboarding-grid .full-width {
  grid-column: 1 / -1;
}

.onboarding-actions {
  display: flex;
  gap: 12px;
}

.onboarding-actions .auth-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.onboarding-note {
  text-align: center;
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--text-faint);
}

/* ── User info in sidebar ── */
.user-info {
  margin-bottom: 12px;
}

.user-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.user-nickname {
  font-size: 0.85rem;
  color: var(--text-main);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 160px;
}

.user-logout {
  color: var(--text-faint);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.user-logout:hover {
  color: var(--error);
}

/* ── Sidebar auth (between logo and nav) ── */
.sidebar-auth {
  margin-bottom: 12px;
  margin-top: -16px;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.auth-login-link-sidebar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 0;
  transition: opacity 0.2s;
  white-space: nowrap;
  overflow: hidden;
}
.sidebar.expanded .auth-login-link-sidebar { justify-content: flex-start; padding: 8px 12px; gap: 8px; }

.auth-login-link-sidebar:hover {
  opacity: 0.8;
}

.sidebar-user-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 6px 0;
  border-radius: 10px;
  background: transparent;
  border: none;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
}
.sidebar.expanded .sidebar-user-card {
  justify-content: flex-start;
  padding: 10px 12px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  gap: 10px;
}
.sidebar-user-icon {
  width: 24px;
  height: 24px;
  color: var(--text-dim);
  flex-shrink: 0;
}
.sidebar.expanded .sidebar-user-icon { display: none; }
.sidebar-user-expanded {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.sidebar-user-name {
  font-size: 0.85rem;
  color: var(--text-main);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}

/* ── Chat inline login form ── */
.chat-login-switch {
  text-align: center;
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.chat-login-switch a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.chat-login-switch a:hover {
  text-decoration: underline;
}

#chat-login-overlay .auth-field {
  margin-bottom: 12px;
  width: 100%;
}

#chat-login-overlay .auth-field input {
  padding: 9px 12px;
  font-size: 0.85rem;
  width: 100%;
}

#chat-login-overlay #chat-login-form,
#chat-login-overlay #chat-register-form {
  width: 100%;
  padding: 0 12px;
}

/* ── Verification Screen ── */
.verify-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  padding: 24px;
}

.verify-card {
  max-width: 460px;
  width: 100%;
  padding: 48px 40px;
  border-radius: 24px;
  background: rgba(18, 18, 23, 0.95);
  border: 1px solid var(--glass-border);
  text-align: center;
}

.verify-icon-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(124, 58, 237, 0.05));
  border: 2px solid rgba(124, 58, 237, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: verify-pulse 2s ease-in-out infinite;
}

.verify-icon-ring i {
  width: 32px;
  height: 32px;
  color: var(--accent);
}

@keyframes verify-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.2); }
  50% { box-shadow: 0 0 0 12px rgba(124, 58, 237, 0); }
}

.verify-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
  text-align: center;
}

.verify-subtitle {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-bottom: 6px;
  line-height: 1.5;
  text-align: center;
}

.verify-email {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  text-align: center;
}

.verify-digits {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

.verify-digit {
  width: 50px;
  height: 60px;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text-main);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  caret-color: var(--accent);
}

.verify-digit:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  background: rgba(124, 58, 237, 0.05);
}

.verify-digit:not(:placeholder-shown) {
  border-color: rgba(124, 58, 237, 0.4);
  background: rgba(124, 58, 237, 0.05);
}

.verify-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  margin-top: 4px;
}

.verify-btn i {
  width: 18px;
  height: 18px;
}

.verify-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
}

.verify-footer p {
  font-size: 0.82rem;
  color: var(--text-faint);
  margin-bottom: 8px;
}

.verify-resend-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: opacity 0.2s;
}

.verify-resend-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.verify-resend-status {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
  min-height: 18px;
}

.verify-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 16px;
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 10px;
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: left;
  line-height: 1.4;
}

.verify-hint i {
  flex-shrink: 0;
  color: var(--accent);
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .auth-wrapper { padding: 16px; }
  .auth-card { padding: 28px 24px; }
  .onboarding-grid { grid-template-columns: 1fr; }
  .verify-card { padding: 32px 20px; }
  .verify-digit { width: 42px; height: 52px; font-size: 22px; }
  .verify-digits { gap: 6px; }
}

/* ── OAuth Buttons ── */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: rgba(255,255,255,0.35);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

.auth-linkedin-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  background: #0A66C2;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
}
.auth-linkedin-btn:hover {
  background: #004182;
  transform: translateY(-1px);
}
.auth-linkedin-btn:active {
  transform: translateY(0);
}
.auth-linkedin-btn svg {
  flex-shrink: 0;
}

.auth-google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  background: #ffffff;
  color: #1f1f1f;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
}
.auth-google-btn:hover {
  background: #f3f4f6;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
}
.auth-google-btn:active {
  transform: translateY(0);
}
.auth-google-btn svg {
  flex-shrink: 0;
}

/* ── Privacy Footer Bar — fixed, single line ── */
.privacy-footer {
  position: fixed;
  bottom: 0;
  left: 260px;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(13, 13, 20, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 11px;
}
@media (max-width: 768px) {
  .privacy-footer { left: 0; flex-wrap: wrap; }
}
.privacy-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.privacy-footer-link:hover {
  color: var(--accent, #7c4dff);
}
.privacy-footer-sep {
  color: rgba(255,255,255,0.2);
}
.privacy-footer-copy {
  color: rgba(255,255,255,0.25);
}

/* ── Privacy Policy Modal (Fullscreen) ── */
.privacy-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.privacy-modal {
  background: #0a0a0a;
  border: 1px solid var(--glass-border, rgba(255,255,255,0.08));
  border-radius: 16px;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 40px rgba(124,77,255,0.08);
}
.privacy-modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.privacy-modal-header i { color: var(--accent, #7c4dff); }
.privacy-modal-header h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}
.privacy-modal-header span {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.privacy-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  scroll-behavior: smooth;
}
.privacy-modal-body h2 {
  color: var(--accent, #7c4dff);
  font-size: 16px;
  margin: 32px 0 12px;
  font-weight: 700;
}
.privacy-modal-body h2:first-child { margin-top: 0; }
.privacy-modal-body p { margin: 8px 0; }
.privacy-modal-body ul { padding-left: 20px; }
.privacy-modal-body li { margin: 4px 0; }
.privacy-modal-body::-webkit-scrollbar { width: 6px; }
.privacy-modal-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }
.privacy-modal-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 24px;
  flex-shrink: 0;
}
.privacy-scroll-hint {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 12px;
  transition: opacity 0.3s;
}
.privacy-consent-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(124,77,255,0.06);
  border: 1px solid rgba(124,77,255,0.15);
  border-radius: 10px;
  margin-bottom: 16px;
  opacity: 0.3;
  pointer-events: none;
  transition: opacity 0.3s, pointer-events 0.3s;
}
.privacy-consent-box.enabled {
  opacity: 1;
  pointer-events: auto;
}
.privacy-consent-box input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent, #7c4dff);
  flex-shrink: 0;
}
.privacy-consent-box label {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
}
.privacy-consent-box label strong { color: #fff; }
.privacy-modal-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.privacy-modal-actions .privacy-copyright {
  font-size: 11px;
}
.privacy-btn-decline {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border: 1px solid rgba(255,100,100,0.3);
  border-radius: 10px;
  background: rgba(255,100,100,0.08);
  color: #ff6b6b;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.privacy-btn-decline:hover { background: rgba(255,100,100,0.15); transform: translateY(-1px); }
.privacy-btn-accept {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  font-weight: 600;
  cursor: not-allowed;
  transition: all 0.3s;
}
.privacy-btn-accept.active {
  background: rgba(124,77,255,0.15);
  border-color: rgba(124,77,255,0.4);
  color: var(--accent, #7c4dff);
  cursor: pointer;
}
.privacy-btn-accept.active:hover { transform: translateY(-1px); }

/* ── Post-Login Bootstrap Overlay ── */
.bootstrap-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #0a0a0f;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.bootstrap-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

.bootstrap-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: bootstrapPulse 2s ease-in-out infinite;
}

.bootstrap-logo svg {
  width: 32px;
  height: 32px;
  color: var(--accent, #7c3aed);
  filter: drop-shadow(0 0 12px rgba(124, 58, 237, 0.5));
}

.bootstrap-logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
}

.bootstrap-logo-text .accent {
  color: var(--accent, #7c3aed);
}

.bootstrap-status {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.bootstrap-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}

.bootstrap-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent, #7c3aed), #a855f7);
  border-radius: 3px;
  transition: width 0.3s ease;
  box-shadow: 0 0 8px rgba(124, 58, 237, 0.4);
}

.bootstrap-text {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.5px;
}

@keyframes bootstrapPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
