.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-normal);
  border: 1px solid transparent;
  background-clip: padding-box; /* Prevents background bleed through transparent borders */
  background-repeat: no-repeat;
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--text-primary);
  box-shadow: var(--glow-primary);
  border: none;
  padding: 15px 29px; /* Compensate for the 1px transparent border on .btn to maintain exact size */
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--text-secondary);
  transform: translateY(-2px);
}

/* Feedback Notifications */
.notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  box-shadow: var(--shadow-lg);
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-normal);
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 12px;
}

.notification.active {
  transform: translateY(0);
  opacity: 1;
}

.notification-success {
  border-color: rgba(16, 185, 129, 0.3);
}

.notification-icon-success {
  color: var(--color-success);
}

@media (max-width: 768px) {
  .notification {
    left: 24px; /* Center toast on small screens */
    right: 24px;
    bottom: 16px;
    justify-content: center;
  }
}
