/* xx8 模板本地样式 */

::where([class^="ri-"])::before {
  content: "\f3c2";
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563EB, #38BDF8);
  transition: width 0.2s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.btn-primary {
  background-image: linear-gradient(135deg, #2563EB, #38BDF8);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
  transition: all 0.18s ease-out;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.45);
}

.btn-outline {
  transition: all 0.18s ease-out;
}

.btn-outline:hover {
  background-color: rgba(15, 23, 42, 0.03);
}

.blur-card {
  backdrop-filter: blur(14px);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.76));
}

