/* 
  Mini Vault Protocol 
*/

:root {
  /* Core Colors */
  --bg-dark: #090a0f;
  --bg-panel: rgba(20, 21, 26, 0.6);
  --bg-input: rgba(0, 0, 0, 0.4);
  --border-light: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(99, 102, 241, 0.5);

  /* Accent Colors */
  --primary: #4f46e5;
  --primary-hover: #4338ca;
  --secondary: rgba(255, 255, 255, 0.1);
  --secondary-hover: rgba(255, 255, 255, 0.15);
  --danger: #ef4444;
  --danger-hover: #dc2626;
  --success: #10b981;
  --warning: #f59e0b;

  /* Accents specific for icons */
  --eth-color: #627eea;
  --vault-color: #a855f7;
  --owner-color: #fca5a5;
  --status-color: #34d399;

  /* Typography */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --font-sans: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  /* Shadows & Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-panel: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(79, 70, 229, 0.3);
}

/* ── Reset & Base ── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Noise Overlay (Frosted Glass Grain) ── */
.bg-noise {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.015;
}

/* ── Background Orbs  ── */
.bg-orbs {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  animation: float 20s infinite ease-in-out alternate;
}

.orb-1 {
  top: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.4) 0%, rgba(9, 10, 15, 0) 70%);
}

.orb-2 {
  bottom: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, rgba(9, 10, 15, 0) 70%);
  animation-delay: -5s;
}

.orb-3 {
  top: 40%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(9, 10, 15, 0) 70%);
  animation-delay: -10s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(30px, -50px) scale(1.1);
  }
}

/* ── Typography & Utils ── */
a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  opacity: 0.8;
}

.mono-text {
  font-family: var(--font-mono);
  font-size: 0.9em;
  letter-spacing: 0.5px;
}

.text-muted {
  color: var(--text-muted);
}

.text-secondary {
  color: var(--text-secondary);
  line-height: 1.6;
}

.text-red {
  color: var(--danger);
}

.text-sm {
  font-size: 0.875rem;
}

.text-xs {
  font-size: 0.75rem;
}

.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 8px;
}

.mt-3 {
  margin-top: 12px;
}

.mt-4 {
  margin-top: 16px;
}

.mb-4 {
  margin-bottom: 16px;
}

.flex-1 {
  flex: 1;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.gap-4 {
  gap: 16px;
}

.flex-wrap {
  flex-wrap: wrap;
}

.max-w-lg {
  max-width: 600px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ── Layout Containers ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* ── Panels  ── */
.glass-panel {
  background: var(--bg-panel);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-panel);
}

/* ── Headers ── */
.glass-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  margin-bottom: 32px;
  background: rgba(20, 21, 26, 0.4);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.header-logo i {
  color: var(--primary);
  font-size: 1.5rem;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.network-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(56, 189, 248, 0.1);
  color: #38bdf8;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.network-badge .dot,
.network-dot {
  width: 8px;
  height: 8px;
  background-color: #38bdf8;
  border-radius: 50%;
  box-shadow: 0 0 8px #38bdf8;
}

.address-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-input);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}

.address-badge.interactive {
  cursor: pointer;
  transition: all 0.2s ease;
}

.address-badge.interactive:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--primary);
}

/* ── Connect Screen ── */
.connect-wrapper {
  max-width: 480px;
  margin: 80px auto;
  padding: 48px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.logo-icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.4);
}

.connect-logo h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.connect-logo p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.connect-card {
  background: rgba(0, 0, 0, 0.2);
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.network-info {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  margin-bottom: 20px;
}

.connect-card h2 {
  margin-bottom: 8px;
  font-weight: 600;
}

.connect-card p {
  margin-bottom: 24px;
  font-size: 0.9rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn:active {
  transform: scale(0.97);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #6366f1 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, #4f46e5 100%);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.6);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  background: var(--secondary-hover);
}

.btn-danger {
  background: rgba(239, 68, 68, 0.1);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.btn-danger:hover {
  background: rgba(239, 68, 68, 0.2);
}

.btn-full {
  width: 100%;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
  border-radius: 12px;
}

/* Tracking / Glow Button Effect */
.tracking-btn {
  position: relative;
  background: var(--bg-panel);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  overflow: hidden;
}

.tracking-btn::before {
  content: "";
  position: absolute;
  top: var(--y, 50%);
  left: var(--x, 50%);
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

.tracking-btn:hover::before {
  opacity: 1;
}

/* ── Educational Warning Badge ── */
.edu-badge {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: rgba(15, 15, 20, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-left: 4px solid var(--danger);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 320px;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(239, 68, 68, 0.15);
}

.edu-icon {
  color: var(--danger);
  font-size: 1.5rem;
  margin-top: 2px;
}

.edu-text strong {
  display: block;
  font-size: 0.85rem;
  color: #fca5a5;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.edu-text p {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.tracking-btn span,
.tracking-btn i {
  position: relative;
  z-index: 1;
}

.btn-primary.tracking-btn {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.8) 0%, rgba(99, 102, 241, 0.5) 100%);
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.btn-primary.tracking-btn:hover {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.9) 0%, rgba(99, 102, 241, 0.7) 100%);
}

.btn-group {
  display: flex;
  gap: 12px;
}

/* GSAP Pre-init Classes */
.anim-enter {
  opacity: 0;
  transform: translateY(20px);
}

.anim-stagger {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
}

.anim-fadeup {
  opacity: 0;
  transform: translateY(20px);
}

.anim-tab {
  opacity: 0;
}

/* Glow Float Animation */
.glow-float {
  animation: glowFloat 6s ease-in-out infinite alternate;
}

@keyframes glowFloat {
  0% {
    transform: translateY(0);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
  }

  100% {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.5);
  }
}

/* Spinner */
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* ── Stats Grid ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  padding: 24px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
}

.stat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.stat-icon {
  font-size: 1.5rem;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-primary);
}

.eth-color {
  color: var(--eth-color);
}

.vault-color {
  color: var(--vault-color);
}

.owner-color {
  color: var(--owner-color);
}

.status-color {
  color: var(--status-color);
}

.owner-badge {
  background: rgba(24ca, 165, 165, 0.15);
  color: #fca5a5;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ── Empty State ── */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  border: 1px dashed var(--border-light);
}

.empty-icon-wrap {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2.2rem;
  color: var(--text-secondary);
}

.empty-state h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.empty-state p {
  max-width: 400px;
  margin: 0 auto 32px;
  font-size: 1.1rem;
}

/* ── Vault Dashboard ── */
#vault-section {
  flex-direction: column;
  width: 100%;
}

#no-vault-section {
  flex-direction: column;
  align-items: center;
}

.vault-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  margin-bottom: 24px;
}

.vault-address-info h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--text-secondary);
}

.address-link-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
}

.mono-link {
  color: var(--text-primary);
  transition: color 0.2s;
}

.mono-link:hover {
  color: var(--primary);
}

.pause-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
}

.pause-status.active,
.badge-active {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.pause-status.paused {
  background: rgba(245, 158, 11, 0.1);
  color: var(--warning);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

/* ── Tabs ── */
.tabs-wrapper {
  margin-bottom: 24px;
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

.tabs-container {
  display: flex;
  width: 100%;
  background: var(--bg-panel);
  padding: 6px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.tab-btn {
  flex: 1;
  justify-content: center;
  background: transparent;
  color: var(--text-secondary);
  border: none;
  padding: 12px 24px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: calc(var(--radius-md) - 4px);
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tab-btn:hover {
  color: var(--text-primary);
}

.tab-btn.active {
  color: white;
}

.tab-indicator {
  position: absolute;
  top: 6px;
  left: 6px;
  height: calc(100% - 12px);
  background: var(--primary);
  border-radius: calc(var(--radius-md) - 4px);
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 2px 10px rgba(79, 70, 229, 0.5);
}

.tab-content {
  display: none;
  animation: fadeUp 0.4s ease forwards;
}

.tab-content.active {
  display: block;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Cards & Forms ── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .tabs-wrapper {
    overflow-x: auto;
    padding-bottom: 8px;
    justify-content: flex-start;
  }

  .tabs-container {
    white-space: nowrap;
  }
}

.card {
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-title i {
  color: var(--primary);
  font-size: 1.4rem;
}

.danger-zone .card-title i {
  color: var(--danger);
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon i {
  position: absolute;
  left: 16px;
  color: var(--text-muted);
  font-size: 1.2rem;
}

input[type="text"],
input[type="number"] {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-light);
  color: white;
  padding: 14px 16px 14px 44px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 1rem;
  transition: all 0.2s ease;
}

input:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

input::placeholder {
  color: #475569;
}

.input-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.divider {
  height: 1px;
  background: var(--border-light);
  margin: 24px 0;
}

.footer-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.accent-link {
  color: #a855f7;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}

.line-relaxed {
  line-height: 1.8;
}

/* ── Toasts ── */
.toast-wrapper {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.toast {
  background: rgba(20, 21, 26, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  padding: 16px 20px;
  border-radius: 12px;
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideInRight 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards, fadeOut 0.4s 3.6s forwards;
}

.toast-icon-wrap {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.toast.success .toast-icon-wrap {
  background: rgba(16, 185, 129, 0.2);
  color: var(--success);
}

.toast.error .toast-icon-wrap {
  background: rgba(239, 68, 68, 0.2);
  color: var(--danger);
}

.toast.info .toast-icon-wrap {
  background: rgba(99, 102, 241, 0.2);
  color: var(--primary);
}

@keyframes slideInRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ── Footer ── */
.app-footer {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px dashed var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 600px) {
  .app-footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

.creator-info {
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.glow-heart {
  animation: pulse-heart 1.5s infinite;
}

@keyframes pulse-heart {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
    filter: drop-shadow(0 0 5px rgba(239, 68, 68, 0.6));
  }

  100% {
    transform: scale(1);
  }
}

.creator-name {
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #a855f7 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-panel);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-size: 1.3rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-4px) scale(1.05);
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.5);
}