/* 用户操作区域样式 - CTA卡片设计 */
.user-actions {
  padding: 16px;
  border-bottom: 1px solid rgba(250, 140, 50, 0.2);
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: linear-gradient(135deg, rgba(255, 248, 225, 0.9), rgba(255, 224, 178, 0.7));
  border-radius: 12px;
  margin: 12px 16px 16px;
  box-shadow: 0 2px 8px rgba(250, 140, 50, 0.1);
  border: 1px solid rgba(250, 140, 50, 0.15);
}

/* 订阅区域布局 */
.subscription-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 2px;
}

/* 订阅标题区域 */
.subscribe-header {
  text-align: center;
}

.subscribe-trust {
  margin: 0;
  font-size: 13px;
  color: #059669;
  font-weight: 600;
  line-height: 1.4;
}

/* 内联订阅表单 */
.subscribe-form-inline {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.subscribe-form-inline input {
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 14px;
  background: white;
  transition: all 0.2s ease;
  outline: none;
}

.subscribe-form-inline input:focus {
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.subscribe-form-inline input::placeholder {
  color: #9ca3af;
}

.btn-subscribe-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  border: none;
  border-radius: 12px;
  background: #16a34a;
  color: white;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-subscribe-submit:hover {
  background: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.35);
}

.btn-subscribe-submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.3);
}

.btn-subscribe-submit:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* 状态消息 */
.subscribe-status {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  padding: 8px;
  border-radius: 8px;
  margin-top: 4px;
  min-height: 20px;
}

.subscribe-status.success {
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
  border: 1px solid rgba(22, 163, 74, 0.2);
}

.subscribe-status.error {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.subscribe-status.loading {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.2);
}


/* 移动端响应式设计 */
@media (max-width: 480px) {
  .subscription-section {
    gap: 12px;
  }
  
  .subscribe-trust {
    font-size: 12px;
  }
  
  .subscribe-form-inline input {
    padding: 12px 14px;
    font-size: 16px; /* 防止iOS缩放 */
  }
  
  .btn-subscribe-submit {
    padding: 14px 20px;
    font-size: 14px;
  }
  
  .subscribe-status {
    font-size: 13px;
  }
}

/* 主按钮样式 - 订阅按钮 */
.primary-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border: none;
  border-radius: 14px;
  background: #16A34A;
  color: white;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25);
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 46px;
  text-align: center;
}

.primary-btn:hover {
  background: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.35);
}

.primary-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.3);
}

/* 侧边栏底部登录按钮区域 - 仅桌面端使用absolute定位 */
@media (min-width: 769px) {
  .sidebar-bottom-actions {
    position: absolute;
    bottom: 20px; /* 与原sidebar padding保持一致 */
    left: 20px;   /* 与原sidebar padding保持一致 */
    right: 20px;  /* 与原sidebar padding保持一致 */
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(255, 248, 225, 0.95), rgba(255, 224, 178, 0.8));
    border-top: 1px solid rgba(250, 140, 50, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(250, 140, 50, 0.1);
  }

  /* 为底部按钮预留空间，不覆盖原有侧边栏样式 */
  .sidebar nav {
    margin-bottom: 80px; /* 为底部按钮预留空间 */
  }
}

/* 次按钮样式 - 登录按钮 */
.secondary-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  border: 2px solid #3B82F6;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.05);
  color: #3B82F6;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  position: relative;
  height: 40px;
}

.secondary-btn:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: #2563eb;
  color: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(59, 130, 246, 0.15);
}

.secondary-btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(59, 130, 246, 0.2);
}

/* 禁用和加载状态 */
.primary-btn:disabled,
.secondary-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.primary-btn.loading,
.secondary-btn.loading {
  position: relative;
  color: transparent;
}

.primary-btn.loading::after,
.secondary-btn.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.secondary-btn.loading::after {
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-top: 2px solid #3B82F6;
}

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

/* 成功状态 */
.primary-btn.success {
  background: #10B981 !important;
  transform: scale(1.02);
}

.secondary-btn.success {
  background: rgba(16, 185, 129, 0.1) !important;
  border-color: #10B981 !important;
  color: #10B981 !important;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .user-actions {
    padding: 14px;
    margin: 12px 14px 16px;
    gap: 8px;
  }
  
  .primary-btn {
    height: 42px;
    font-size: 13px;
    padding: 12px 18px;
  }
  
  .secondary-btn {
    height: 38px;
    font-size: 12px;
    padding: 9px 14px;
  }
  
  .subscribe-subtitle {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .user-actions {
    padding: 12px;
    margin: 8px 12px 12px;
    gap: 6px;
  }
  
  .primary-btn {
    height: 40px;
    font-size: 12px;
    padding: 10px 16px;
    gap: 6px;
  }
  
  .secondary-btn {
    height: 36px;
    font-size: 11px;
    padding: 8px 12px;
    gap: 4px;
  }
  
  .subscribe-subtitle {
    font-size: 10px;
    line-height: 1.2;
  }
}

/* 暗色模式 */
@media (prefers-color-scheme: dark) {
  .user-actions {
    background: linear-gradient(135deg, rgba(55, 65, 81, 0.9), rgba(75, 85, 99, 0.7));
    border-color: rgba(156, 163, 175, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }
  
  .subscribe-subtitle {
    color: #9CA3AF;
  }
  
  .primary-btn {
    background: #059669;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
  }
  
  .primary-btn:hover {
    background: #047857;
    box-shadow: 0 6px 16px rgba(5, 150, 105, 0.35);
  }
  
  .secondary-btn {
    background: rgba(59, 130, 246, 0.1);
    border-color: #60A5FA;
    color: #60A5FA;
  }
  
  .secondary-btn:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: #3B82F6;
    color: #3B82F6;
  }
}

/* 可访问性增强 */
.primary-btn:focus-visible,
.secondary-btn:focus-visible {
  outline: 2px solid #3B82F6;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .primary-btn,
  .secondary-btn,
  .user-actions {
    transition: none;
  }
  
  .primary-btn.loading::after,
  .secondary-btn.loading::after {
    animation: none;
  }
}

/* 管理员按钮样式 */
.admin-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  border: 2px solid #6366F1;
  border-radius: 10px;
  background: rgba(99, 102, 241, 0.05);
  color: #6366F1;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  position: relative;
  height: 36px;
}

.admin-btn:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: #4F46E5;
  color: #4F46E5;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(99, 102, 241, 0.15);
}

.admin-btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(99, 102, 241, 0.2);
}

.admin-btn:focus-visible {
  outline: 2px solid #6366F1;
  outline-offset: 2px;
}

/* 暗色模式管理员按钮 */
@media (prefers-color-scheme: dark) {
  .admin-btn {
    background: rgba(99, 102, 241, 0.1);
    border-color: #818CF8;
    color: #818CF8;
  }
  
  .admin-btn:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: #6366F1;
    color: #6366F1;
  }
}

/* 移动端管理员按钮 */
@media (max-width: 480px) {
  .admin-btn {
    height: 34px;
    font-size: 11px;
    padding: 7px 12px;
    gap: 4px;
  }
}

/* ===========================================
   用户认证模态框样式
   =========================================== */

/* 模态框基础样式 */
.user-action-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.3s ease-out;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 480px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
  animation: modalSlideIn 0.3s ease-out;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 0;
  border-bottom: 1px solid #f3f4f6;
  margin-bottom: 24px;
}

.modal-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #6b7280;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: all 0.2s ease;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: #f3f4f6;
  color: #374151;
}

.modal-body {
  padding: 0 24px 24px;
  max-height: calc(90vh - 120px);
  overflow-y: auto;
}

/* ===========================================
   社交登录按钮样式
   =========================================== */

.social-login-section {
  margin-bottom: 24px;
}

.social-login-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-oauth {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  background: white;
  color: #374151;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  height: 50px;
}

.btn-oauth:hover {
  border-color: #d1d5db;
  background: #f9fafb;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-oauth:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.btn-google:hover {
  border-color: #EA4335;
  background: #fef7f7;
}

.btn-github:hover {
  border-color: #24292e;
  background: #f6f8fa;
}

.btn-linkedin {
  border-color: #0077B5;
  color: #0077B5;
}

.btn-linkedin:hover {
  border-color: #0077B5;
  background: #f0f8ff;
}

/* ===========================================
   登录分割线样式
   =========================================== */

.login-divider {
  display: flex;
  align-items: center;
  margin: 24px 0;
  text-align: center;
}

.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}

.login-divider span {
  padding: 0 16px;
  color: #6b7280;
  font-size: 13px;
  font-weight: 500;
  background: white;
}

/* ===========================================
   邮箱登录区域样式
   =========================================== */

.email-login-section {
  margin-bottom: 20px;
}

.login-method-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  background: #f3f4f6;
  border-radius: 10px;
  padding: 4px;
}

.method-tab {
  flex: 1;
  background: none;
  border: none;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s ease;
}

.method-tab.active {
  background: white;
  color: #3b82f6;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.method-tab:hover:not(.active) {
  color: #374151;
}

.login-method-content {
  display: none;
}

.login-method-content.active {
  display: block;
}

/* 输入组样式 */
.input-group {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.input-group input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  background: #f9fafb;
  transition: all 0.2s ease;
}

.input-group input[type="email"]:focus {
  outline: none;
  border-color: #3b82f6;
  background: white;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.btn-send-code,
.btn-send-magic {
  background: #3b82f6;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  min-width: 100px;
}

.btn-send-code:hover,
.btn-send-magic:hover {
  background: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-send-code:disabled,
.btn-send-magic:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* 验证码输入区域 */
.verification-input {
  display: flex;
  gap: 8px;
  align-items: center;
}

.code-input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 3px;
  background: #f9fafb;
  transition: all 0.2s ease;
}

.code-input:focus {
  outline: none;
  border-color: #10b981;
  background: white;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.btn-verify {
  background: #10b981;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  min-width: 100px;
}

.btn-verify:hover {
  background: #059669;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Magic Link 成功状态 */
.magic-link-sent {
  text-align: center;
  padding: 20px;
}

.success-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.success-icon {
  font-size: 32px;
}

.success-message p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #10b981;
}

.success-message small {
  color: #6b7280;
  font-size: 13px;
}

/* ===========================================
   会员权益说明样式
   =========================================== */

.member-benefits {
  background: linear-gradient(135deg, #fef3e2, #fde68a);
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
}

.member-benefits h4 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: #92400e;
  display: flex;
  align-items: center;
  gap: 6px;
}

.member-benefits ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.member-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 13px;
  color: #b45309;
  font-weight: 500;
}

/* ===========================================
   Toast 消息样式
   =========================================== */

.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 10001;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.3s ease;
  max-width: 320px;
}

.toast.show {
  opacity: 1;
  transform: translateX(0);
}

.toast-success {
  background: #10b981;
  color: white;
}

.toast-error {
  background: #ef4444;
  color: white;
}

.toast-info {
  background: #3b82f6;
  color: white;
}

/* ===========================================
   响应式设计 - 移动端适配
   =========================================== */

@media (max-width: 768px) {
  .modal-content {
    max-width: 95%;
    margin: 20px;
  }
  
  .modal-header,
  .modal-body {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .modal-header h3 {
    font-size: 18px;
  }
  
  .btn-oauth {
    height: 46px;
    font-size: 13px;
    padding: 12px 16px;
  }
  
  .social-login-buttons {
    gap: 10px;
  }
  
  .input-group {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn-send-code,
  .btn-send-magic,
  .btn-verify {
    width: 100%;
    min-width: auto;
  }
  
  .verification-input {
    flex-direction: column;
  }
  
  .member-benefits {
    padding: 16px;
    margin-top: 16px;
  }
  
  .toast {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .modal-content {
    border-radius: 12px;
  }
  
  .modal-header,
  .modal-body {
    padding-left: 16px;
    padding-right: 16px;
  }
  
  .modal-header {
    padding-top: 20px;
    margin-bottom: 20px;
  }
  
  .modal-body {
    padding-bottom: 20px;
  }
  
  .btn-oauth {
    height: 42px;
    font-size: 12px;
    gap: 8px;
  }
  
  .login-divider {
    margin: 20px 0;
  }
  
  .method-tab {
    font-size: 12px;
    padding: 8px 10px;
  }
  
  .input-group input[type="email"],
  .code-input {
    font-size: 16px; /* 防止iOS缩放 */
  }
  
  .member-benefits {
    padding: 14px;
  }
  
  .member-benefits h4 {
    font-size: 15px;
  }
  
  .member-benefits li {
    font-size: 12px;
  }
}

/* ===========================================
   暗色模式支持
   =========================================== */

@media (prefers-color-scheme: dark) {
  .modal-content {
    background: #1f2937;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  }
  
  .modal-header {
    border-color: #374151;
  }
  
  .modal-header h3 {
    color: #f9fafb;
  }
  
  .modal-close {
    color: #9ca3af;
  }
  
  .modal-close:hover {
    background: #374151;
    color: #f3f4f6;
  }
  
  .btn-oauth {
    background: #374151;
    border-color: #4b5563;
    color: #f9fafb;
  }
  
  .btn-oauth:hover {
    background: #4b5563;
    border-color: #6b7280;
  }
  
  .login-divider::before,
  .login-divider::after {
    background: #4b5563;
  }
  
  .login-divider span {
    background: #1f2937;
    color: #9ca3af;
  }
  
  .login-method-tabs {
    background: #374151;
  }
  
  .method-tab {
    color: #9ca3af;
  }
  
  .method-tab.active {
    background: #4b5563;
    color: #60a5fa;
  }
  
  .input-group input[type="email"],
  .code-input {
    background: #374151;
    border-color: #4b5563;
    color: #f9fafb;
  }
  
  .input-group input[type="email"]:focus,
  .code-input:focus {
    background: #4b5563;
    border-color: #3b82f6;
  }
  
  .member-benefits {
    background: linear-gradient(135deg, #451a03, #78350f);
  }
  
  .member-benefits h4 {
    color: #fbbf24;
  }
  
  .member-benefits li {
    color: #f59e0b;
  }
}

/* ===========================================
   动画效果
   =========================================== */

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* 加载状态按钮动画 */
.btn-send-code.loading,
.btn-send-magic.loading,
.btn-verify.loading {
  position: relative;
  color: transparent;
}

.btn-send-code.loading::after,
.btn-send-magic.loading::after,
.btn-verify.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* ===========================================
   可访问性增强
   =========================================== */

.btn-oauth:focus-visible,
.btn-send-code:focus-visible,
.btn-send-magic:focus-visible,
.btn-verify:focus-visible,
.method-tab:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

.input-group input[type="email"]:focus-visible,
.code-input:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* 减少动画效果（用户偏好） */
@media (prefers-reduced-motion: reduce) {
  .user-action-modal,
  .modal-content,
  .btn-oauth,
  .btn-send-code,
  .btn-send-magic,
  .btn-verify,
  .toast {
    animation: none;
    transition: none;
  }
  
  .btn-oauth:hover,
  .btn-send-code:hover,
  .btn-send-magic:hover,
  .btn-verify:hover {
    transform: none;
  }
}

/* 打印样式 */
@media print {
  .user-actions,
  .user-action-modal,
  .toast {
    display: none;
  }
}