/* ==========================================================================
   WMNET.NET - Bright Modern Commercial Theme (Light Red / Gray / Black)
   风格参考：ywopc.com 极简明亮风 + 外贸红、灰、黑核心色彩规范
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Noto+Sans+SC:wght@300;400;500;600;700;900&display=swap');

:root {
  --color-brand-red: #DC2626;
  --color-brand-red-hover: #B91C1C;
  --color-brand-red-light: #FEE2E2;
  --color-text-primary: #0F172A;
  --color-text-secondary: #475569;
  --color-text-muted: #94A3B8;
  --color-bg-page: #F8FAFC;
  --color-bg-card: #FFFFFF;
  --color-border-subtle: #E2E8F0;
  --color-border-hover: #DC2626;
}

body {
  font-family: 'Noto Sans SC', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--color-bg-page);
  color: var(--color-text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Scrollbar (Clean Gray & Red) */
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
::-webkit-scrollbar-track {
  background: #F1F5F9;
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #DC2626;
}

/* Light Card Style with subtle border and crisp elevation */
.card-clean {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 1rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.04), 0 1px 2px -1px rgba(0, 0, 0, 0.04);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-clean:hover {
  border-color: #F87171;
  box-shadow: 0 10px 25px -5px rgba(220, 38, 38, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

/* Primary Action Button (Red) */
.btn-red {
  background-color: #DC2626;
  color: #FFFFFF;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.25);
}

.btn-red:hover {
  background-color: #B91C1C;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.35);
  transform: translateY(-1px);
}

/* Secondary Button (Black/Dark Slate) */
.btn-black {
  background-color: #0F172A;
  color: #FFFFFF;
  font-weight: 600;
  border: 1px solid #0F172A;
  transition: all 0.2s ease;
}

.btn-black:hover {
  background-color: #1E293B;
  transform: translateY(-1px);
}

/* Neutral Gray Outline Button */
.btn-gray-outline {
  background-color: #FFFFFF;
  color: #1E293B;
  border: 1px solid #CBD5E1;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-gray-outline:hover {
  background-color: #F1F5F9;
  border-color: #94A3B8;
  color: #0F172A;
}

/* Badges */
.badge-red {
  background-color: #FEF2F2;
  color: #DC2626;
  border: 1px solid #FECACA;
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.badge-black {
  background-color: #0F172A;
  color: #FFFFFF;
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  font-weight: 600;
}

.badge-gray {
  background-color: #F1F5F9;
  color: #475569;
  border: 1px solid #E2E8F0;
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  font-weight: 500;
}

/* Accent Glow for Light Background */
.light-red-glow {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.05) 0%, rgba(248, 250, 252, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

/* Nav Item Active State */
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #DC2626;
}

.nav-link.active {
  color: #DC2626 !important;
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2.5px;
  background-color: #DC2626;
  border-radius: 9999px;
}

/* Typecho Pagination Component (.page-navigator) */
.page-navigator {
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 auto !important;
}

.page-navigator li {
  display: inline-flex !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.page-navigator li a,
.page-navigator li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  height: 2.35rem;
  padding: 0 0.85rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #334155;
  background-color: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 0.625rem;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
}

.page-navigator li a:hover {
  border-color: #DC2626;
  color: #DC2626;
  background-color: #FEF2F2;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(220, 38, 38, 0.12);
}

.page-navigator li.current a,
.page-navigator li.current span {
  background-color: #DC2626 !important;
  border-color: #DC2626 !important;
  color: #FFFFFF !important;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.28);
}

.page-navigator li.prev a,
.page-navigator li.next a {
  padding: 0 1rem;
  font-weight: 600;
}

