/* ==========================================
   模板 09 - Web3 / AI 科技赛博毛玻璃风 CSS
   ========================================== */

:root {
  --_gm_bg_dark: #020617;
  --_gm_glass_bg: rgba(30, 41, 59, 0.45);
  --_gm_glass_border: rgba(255, 255, 255, 0.08);
  --_gm_glass_border_hover: rgba(255, 255, 255, 0.2);
  --_gm_accent_cyan: #06b6d4;
  --_gm_accent_purple: #8b5cf6;
  --_gm_text_main: #f8fafc;
  --_gm_text_sub: #94a3b8;
  --_gm_font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* 全局重置与极暗背景 */
html, body._gm_body_901 {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 100vh;
  background-color: var(--_gm_bg_dark);
  color: var(--_gm_text_main);
  font-family: var(--_gm_font);
  line-height: 1.6;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
}

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

._gm_shell_901 {
  width: 100% !important;
  margin: 0 auto !important;
  display: block;
  position: relative;
}

/* 核心居中容器：1140px 锁定 */
._gm_container_901 {
  width: 100% !important;
  max-width: 1140px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  position: relative;
  z-index: 10;
}

/* 1. 毛玻璃 Header */
._gm_header_901 {
  width: 100% !important;
  background: rgba(2, 6, 23, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--_gm_glass_border);
  position: sticky;
  top: 0;
  z-index: 100;
}

._gm_hdr_in_901 {
  height: 68px;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

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

._gm_logo_orb_901 {
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, var(--_gm_accent_cyan), var(--_gm_accent_purple));
  border-radius: 50%;
  box-shadow: 0 0 12px var(--_gm_accent_cyan);
}

._gm_brand_901 h1 {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.2px;
  margin: 0;
}

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

._gm_nav_a_901 {
  color: var(--_gm_text_sub);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

._gm_nav_a_901:hover {
  color: var(--_gm_text_main);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

/* 2. Hero 搜索区与底层发光效果 */
._gm_hero_sec_901 {
  position: relative;
  width: 100% !important;
  padding: 56px 0 64px;
  border-bottom: 1px solid var(--_gm_glass_border);
  overflow: hidden;
}

/* 纯CSS背景光晕 */
._gm_glow_bg_1, ._gm_glow_bg_2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.4;
}

._gm_glow_bg_1 {
  width: 400px;
  height: 400px;
  background: var(--_gm_accent_cyan);
  top: -150px;
  left: -100px;
}

._gm_glow_bg_2 {
  width: 350px;
  height: 350px;
  background: var(--_gm_accent_purple);
  bottom: -150px;
  right: -50px;
}

._gm_hero_center_901 {
  text-align: center;
}

._gm_pill_tag_901 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: var(--_gm_text_main);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
}

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

._gm_hero_ttl_901 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 16px 0;
  line-height: 1.25;
}

._gm_hero_sub_901 {
  font-size: 0.95rem;
  color: var(--_gm_text_sub);
  max-width: 660px;
  margin: 0 auto 32px;
}

._gm_search_form_901 {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

._gm_search_ipt_901 {
  width: 100%;
  height: 52px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 0 130px 0 20px;
  font-size: 0.92rem;
  color: #ffffff;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

._gm_search_ipt_901:focus {
  border-color: var(--_gm_accent_cyan);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.2);
}

._gm_search_btn_901 {
  position: absolute;
  right: 6px;
  top: 6px;
  bottom: 6px;
  background: linear-gradient(135deg, var(--_gm_accent_cyan), #0284c7);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 0 20px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}

._gm_search_btn_901:hover {
  opacity: 0.9;
}

/* 3. 主体内容与 Flex 双栏 */
._gm_main_wrap_901 {
  width: 100% !important;
  padding: 48px 0 64px;
}

._gm_layout_flex_901 {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
}

/* 左侧强制 68% 宽度, order: 1 */
._gm_main_col_901 {
  order: 1 !important;
  flex: 0 0 68% !important;
  width: 68% !important;
  max-width: 68% !important;
}

/* 右侧强制 28% 宽度, order: 2 */
._gm_side_col_901 {
  order: 2 !important;
  flex: 0 0 28% !important;
  width: 28% !important;
  max-width: 28% !important;
}

/* 主打毛玻璃卡片 */
._gm_lead_card_901 {
  background: var(--_gm_glass_bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--_gm_glass_border);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 36px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

._gm_lead_hd_901 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

._gm_badge_glow_901 {
  background: rgba(6, 182, 212, 0.15);
  color: var(--_gm_accent_cyan);
  border: 1px solid rgba(6, 182, 212, 0.3);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
}

._gm_lead_code_901 {
  font-size: 0.75rem;
  color: var(--_gm_text_sub);
  font-family: monospace;
}

._gm_lead_ttl_901 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 12px 0;
  line-height: 1.35;
  color: #ffffff;
}

._gm_lead_desc_901 {
  font-size: 0.92rem;
  color: var(--_gm_text_sub);
  margin-bottom: 24px;
  line-height: 1.65;
}

._gm_btn_primary_901 {
  display: inline-block;
  background: #ffffff;
  color: var(--_gm_bg_dark);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

._gm_btn_primary_901:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* 栏目标题 */
._gm_sec_bar_901 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--_gm_glass_border);
  padding-bottom: 10px;
  margin-bottom: 24px;
}

._gm_bar_ttl_901 {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0;
  color: #ffffff;
}

._gm_bar_sub_901 {
  font-size: 0.75rem;
  color: var(--_gm_text_sub);
  font-family: monospace;
}

/* 列表行排版防错位 */
._gm_card_list_901 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

._gm_card_item_901 {
  background: rgba(30, 41, 59, 0.3);
  backdrop-filter: blur(12px);
  border: 1px solid var(--_gm_glass_border);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: border-color 0.2s, background 0.2s;
}

._gm_card_item_901:hover {
  border-color: var(--_gm_glass_border_hover);
  background: rgba(30, 41, 59, 0.5);
}

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

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

._gm_tag_glass_901 {
  background: rgba(255, 255, 255, 0.05);
  color: var(--_gm_text_sub);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}

._gm_item_ttl_901 {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}

._gm_item_desc_901 {
  font-size: 0.88rem;
  color: var(--_gm_text_sub);
  margin: 0;
  line-height: 1.6;
}

._gm_item_side_901 {
  flex-shrink: 0;
}

._gm_link_btn_901 {
  color: var(--_gm_accent_cyan);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}

/* 右侧 Widget 侧边栏 */
._gm_side_col_901 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

._gm_widget_box_901 {
  background: var(--_gm_glass_bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--_gm_glass_border);
  border-radius: 12px;
  padding: 24px;
}

._gm_widget_glow_901 {
  background: rgba(6, 182, 212, 0.05);
  border-color: rgba(6, 182, 212, 0.2);
}

._gm_widget_ttl_901 {
  font-size: 0.95rem;
  font-weight: 800;
  border-bottom: 1px solid var(--_gm_glass_border);
  padding-bottom: 10px;
  margin: 0 0 16px 0;
  color: #ffffff;
}

._gm_widget_list_901 {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
}

._gm_widget_list_901 li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

._gm_lbl_901 {
  color: var(--_gm_text_sub);
}

._gm_val_901 {
  font-weight: 700;
  color: #ffffff;
}

._gm_widget_desc_901 {
  font-size: 0.85rem;
  color: var(--_gm_text_sub);
  margin-bottom: 16px;
}

._gm_widget_btn_901 {
  display: block;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

._gm_widget_btn_901:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* 友链毛玻璃矩阵 */
._gm_link_sec_901 {
  margin-top: 48px;
}

._gm_link_box_901 {
  background: var(--_gm_glass_bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--_gm_glass_border);
  border-radius: 12px;
  padding: 24px;
}

._gm_link_ttl_901 {
  font-size: 0.9rem;
  font-weight: 800;
  margin: 0 0 14px 0;
  color: #ffffff;
}

._gm_link_group_901 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

._gm_link_a_901 {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--_gm_glass_border);
  color: var(--_gm_text_sub);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
}

._gm_link_a_901:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* 页脚 */
._gm_footer_901 {
  width: 100% !important;
  border-top: 1px solid var(--_gm_glass_border);
  padding: 28px 0;
  margin-top: 48px;
}

._gm_ft_in_901 {
  text-align: center;
  font-size: 0.82rem;
  color: var(--_gm_text_sub);
}

/* 响应式适配 */
@media (max-width: 868px) {
  ._gm_main_col_901, ._gm_side_col_901 {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  ._gm_side_col_901 {
    margin-top: 24px;
  }
  ._gm_card_item_901 {
    flex-direction: column;
    align-items: flex-start;
  }
  ._gm_hdr_in_901 {
    flex-direction: column;
    height: auto;
    padding: 12px 0;
    gap: 12px;
  }
}

/* 伪动效无意义 Keyframes */
@keyframes _gm_ghost_kf_901 {
  0% { transform: scale(1); }
  100% { transform: scale(1); }
}