/* ==========================================
   模板 41 - 新拟态软雕塑风 (Neumorphism / Soft 3D UI)
   ========================================== */

:root {
  --_nm_bg_410: #e0e5ec;            /* 经典新拟态灰蓝色 */
  --_nm_text_dark_410: #334155;
  --_nm_text_muted_410: #64748b;
  --_nm_accent_410: #6366f1;        /* 柔和靛紫 */
  
  /* 阴影变量核心 */
  --_nm_shadow_out_410: 9px 9px 16px rgba(163,177,198,0.6), -9px -9px 16px rgba(255,255,255, 0.7);
  --_nm_shadow_out_sm_410: 4px 4px 8px rgba(163,177,198,0.5), -4px -4px 8px rgba(255,255,255, 0.8);
  --_nm_shadow_in_410: inset 6px 6px 10px 0 rgba(163,177,198, 0.5), inset -6px -6px 10px 0 rgba(255,255,255, 0.8);
  --_nm_shadow_in_deep_410: inset 4px 4px 6px 0 rgba(163,177,198, 0.6), inset -4px -4px 6px 0 rgba(255,255,255, 0.9);
  
  --_nm_font_410: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html, body._nm_body_410 {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 100vh;
  background-color: var(--_nm_bg_410);
  color: var(--_nm_text_dark_410);
  font-family: var(--_nm_font_410);
  line-height: 1.6;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
}

*, *::before, *::after {
  box-sizing: border-box !important;
}

._nm_shell_410 {
  width: 100% !important;
  margin: 0 auto !important;
  display: block;
}

._nm_container_410 {
  width: 100% !important;
  max-width: 1160px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

/* 1. Header */
._nm_header_410 {
  width: 100% !important;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  background: var(--_nm_bg_410);
}

._nm_hdr_in_410 {
  height: 64px;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  background: var(--_nm_bg_410);
  border-radius: 24px;
  padding: 0 28px;
  box-shadow: var(--_nm_shadow_out_410);
}

._nm_brand_410 {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--_nm_text_dark_410);
}

._nm_logo_soft_410 {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--_nm_bg_410);
  box-shadow: var(--_nm_shadow_out_sm_410);
  position: relative;
}

._nm_logo_soft_410::after {
  content: '';
  position: absolute;
  top: 6px; left: 6px; right: 6px; bottom: 6px;
  background: var(--_nm_accent_410);
  border-radius: 50%;
}

._nm_brand_410 h1 {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.3px;
}

._nm_nav_ul_410 {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

._nm_nav_a_410 {
  color: var(--_nm_text_muted_410);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 0.2s;
}

._nm_nav_a_410:hover {
  color: var(--_nm_accent_410);
}

._nm_btn_soft_410 {
  background: var(--_nm_bg_410);
  color: var(--_nm_accent_410);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 10px 24px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: var(--_nm_shadow_out_sm_410);
  transition: all 0.2s ease;
}

._nm_btn_soft_410:active {
  box-shadow: var(--_nm_shadow_in_410);
}

/* 2. Hero Section */
._nm_hero_sec_410 {
  width: 100% !important;
  padding: 60px 0 80px;
}

._nm_hero_card_410 {
  background: var(--_nm_bg_410);
  border-radius: 40px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: var(--_nm_shadow_out_410);
}

._nm_badge_inset_410 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--_nm_bg_410);
  color: var(--_nm_text_muted_410);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 99px;
  margin-bottom: 24px;
  box-shadow: var(--_nm_shadow_in_deep_410);
}

._nm_pill_dot_410 {
  width: 8px;
  height: 8px;
  background: var(--_nm_accent_410);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--_nm_accent_410);
}

._nm_hero_ttl_410 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--_nm_text_dark_410);
  margin: 0 0 20px 0;
  line-height: 1.2;
}

._nm_hero_sub_410 {
  font-size: 1.1rem;
  color: var(--_nm_text_muted_410);
  max-width: 640px;
  margin: 0 auto 40px;
}

._nm_search_inset_410 {
  display: flex;
  max-width: 580px;
  margin: 0 auto;
  background: var(--_nm_bg_410);
  border-radius: 99px;
  padding: 6px;
  box-shadow: var(--_nm_shadow_in_410);
}

._nm_search_ipt_410 {
  flex: 1;
  height: 48px;
  background: transparent;
  border: none;
  padding: 0 20px;
  font-size: 0.95rem;
  color: var(--_nm_text_dark_410);
  outline: none;
}

._nm_search_btn_410 {
  background: var(--_nm_bg_410);
  color: var(--_nm_accent_410);
  border: none;
  border-radius: 99px;
  padding: 0 28px;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--_nm_shadow_out_sm_410);
  transition: all 0.2s ease;
}

._nm_search_btn_410:active {
  box-shadow: var(--_nm_shadow_in_410);
}

/* 3. Main Content */
._nm_main_wrap_410 {
  width: 100% !important;
  padding: 20px 0 80px;
}

._nm_sec_block_410 {
  margin-bottom: 64px;
}

._nm_sec_hd_410 {
  text-align: center;
  margin-bottom: 40px;
}

._nm_sec_ttl_410 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 12px 0;
  color: var(--_nm_text_dark_410);
}

._nm_sec_line_410 {
  width: 60px;
  height: 6px;
  background: var(--_nm_bg_410);
  margin: 0 auto;
  border-radius: 99px;
  box-shadow: var(--_nm_shadow_in_deep_410);
}

/* Feature Grid (Neumorphic Cards) */
._nm_feature_flex_410 {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 32px !important;
}

._nm_feat_card_410 {
  flex: 1 1 calc(33.333% - 32px) !important;
  min-width: 280px;
  background: var(--_nm_bg_410);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: var(--_nm_shadow_out_410);
  text-align: center;
  transition: transform 0.2s ease;
}

._nm_icon_circle_410 {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--_nm_bg_410);
  box-shadow: var(--_nm_shadow_out_sm_410);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

._nm_feat_ttl_410 {
  font-size: 1.2rem !important;
  font-weight: 800 !important;
  margin: 0 0 12px 0 !important;
}

._nm_card_a_410 {
  color: var(--_nm_text_dark_410) !important;
  text-decoration: none !important;
}

._nm_card_a_410:hover {
  color: var(--_nm_accent_410) !important;
}

._nm_feat_desc_410 {
  font-size: 0.95rem;
  color: var(--_nm_text_muted_410);
  margin: 0;
  line-height: 1.6;
}

/* Stream List (Inset Grooves) */
._nm_stream_list_410 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

._nm_stream_card_410 {
  background: var(--_nm_bg_410);
  border-radius: 20px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--_nm_shadow_in_410);
}

._nm_stream_main_410 {
  flex: 1;
  min-width: 0;
}

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

._nm_stream_badge_410 {
  background: var(--_nm_bg_410);
  color: var(--_nm_accent_410);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 99px;
  box-shadow: var(--_nm_shadow_out_sm_410);
}

._nm_stream_date_410 {
  font-size: 0.85rem;
  color: var(--_nm_text_muted_410);
  font-weight: 600;
}

._nm_stream_ttl_410 {
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  margin: 0 0 6px 0 !important;
}

._nm_ttl_a_410 {
  color: var(--_nm_text_dark_410) !important;
  text-decoration: none !important;
}

._nm_ttl_a_410:hover {
  color: var(--_nm_accent_410) !important;
}

._nm_stream_desc_410 {
  font-size: 0.95rem;
  color: var(--_nm_text_muted_410);
  margin: 0;
}

._nm_stream_side_410 {
  flex-shrink: 0;
}

._nm_btn_soft_circle_410 {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--_nm_bg_410);
  box-shadow: var(--_nm_shadow_out_sm_410);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--_nm_accent_410);
  font-size: 1.2rem;
  font-weight: 800;
  text-decoration: none;
  transition: box-shadow 0.2s;
}

._nm_btn_soft_circle_410:active {
  box-shadow: var(--_nm_shadow_in_deep_410);
}

/* Links */
._nm_link_sec_410 {
  margin-top: 56px;
}

._nm_link_box_410 {
  background: var(--_nm_bg_410);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--_nm_shadow_out_410);
  text-align: center;
}

._nm_link_ttl_410 {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 24px 0;
}

._nm_link_group_410 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

._nm_link_pill_410 {
  background: var(--_nm_bg_410);
  color: var(--_nm_text_muted_410);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: var(--_nm_shadow_out_sm_410);
  transition: all 0.2s;
}

._nm_link_pill_410:active {
  box-shadow: var(--_nm_shadow_in_deep_410);
  color: var(--_nm_accent_410);
}

/* Footer */
._nm_footer_410 {
  width: 100% !important;
  padding: 40px 0;
}

._nm_ft_in_410 {
  text-align: center;
  font-size: 0.9rem;
  color: var(--_nm_text_muted_410);
  font-weight: 600;
}

@media (max-width: 868px) {
  ._nm_hdr_in_410 {
    flex-direction: column;
    height: auto;
    padding: 16px 20px;
    gap: 16px;
  }
  ._nm_nav_ul_410 {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  ._nm_feat_card_410 {
    flex: 1 1 100% !important;
  }
  ._nm_stream_card_410 {
    flex-direction: column;
    text-align: center;
  }
}