/* ==========================================
   模板 35 - 毛玻璃质感视界风 (Glassmorphism Vision UI)
   ========================================== */

:root {
  --_gm_bg_color_350: #f4f6fc;      /* 极浅蓝灰底色 */
  --_gm_text_dark_350: #1e293b;
  --_gm_text_muted_350: #475569;
  
  /* 毛玻璃参数 */
  --_gm_glass_bg_350: rgba(255, 255, 255, 0.65);
  --_gm_glass_border_350: rgba(255, 255, 255, 0.5);
  --_gm_glass_shadow_350: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
  --_gm_glass_hover_350: rgba(255, 255, 255, 0.85);

  --_gm_font_350: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html, body._gm_body_350 {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 100vh;
  background-color: var(--_gm_bg_color_350);
  color: var(--_gm_text_dark_350);
  font-family: var(--_gm_font_350);
  line-height: 1.6;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

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

/* --- 背景流体光晕 (营造玻璃通透感) --- */
._gm_ambient_bg_350 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

._gm_blob_350 {
  position: absolute;
  filter: blur(80px);
  opacity: 0.6;
  border-radius: 50%;
  animation: _gm_float_350 20s infinite alternate ease-in-out;
}

._gm_blob_350._blob_1 {
  width: 500px; height: 500px;
  background: #bfdbfe; /* 浅蓝 */
  top: -100px; left: -100px;
}

._gm_blob_350._blob_2 {
  width: 600px; height: 600px;
  background: #fbcfe8; /* 浅粉 */
  bottom: -150px; right: -100px;
  animation-delay: -5s;
}

._gm_blob_350._blob_3 {
  width: 400px; height: 400px;
  background: #e9d5ff; /* 浅紫 */
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -10s;
}

@keyframes _gm_float_350 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 30px) scale(1.1); }
  100% { transform: translate(-30px, -50px) scale(0.9); }
}

/* --- 基础容器 --- */
._gm_shell_350 {
  width: 100% !important;
  margin: 0 auto !important;
  display: block;
  position: relative;
  z-index: 1;
}

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

/* 1. Header (毛玻璃悬浮) */
._gm_header_350 {
  width: 100% !important;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--_gm_glass_border_350);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

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

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

._gm_logo_icon_350 {
  font-size: 1.4rem;
}

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

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

._gm_nav_a_350 {
  color: var(--_gm_text_muted_350);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s;
}

._gm_nav_a_350:hover {
  color: #000000;
}

/* 全局毛玻璃按钮 */
._gm_btn_glass_350 {
  background: var(--_gm_glass_bg_350);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--_gm_glass_border_350);
  color: var(--_gm_text_dark_350);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 99px; /* 圆润质感 */
  text-decoration: none;
  box-shadow: var(--_gm_glass_shadow_350);
  transition: all 0.3s ease;
}

._gm_btn_glass_350:hover {
  background: var(--_gm_glass_hover_350);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

._gm_btn_glass_sm_350 {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--_gm_glass_border_350);
  color: var(--_gm_text_dark_350);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 99px;
  text-decoration: none;
  transition: background 0.2s;
}

._gm_btn_glass_sm_350:hover {
  background: #ffffff;
}

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

._gm_hero_center_350 {
  text-align: center;
}

._gm_badge_glass_350 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--_gm_glass_border_350);
  color: var(--_gm_text_dark_350);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 99px;
  margin-bottom: 24px;
  box-shadow: var(--_gm_glass_shadow_350);
}

._gm_pill_dot_350 {
  width: 8px;
  height: 8px;
  background: #3b82f6;
  border-radius: 50%;
}

._gm_hero_ttl_350 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: var(--_gm_text_dark_350);
  margin: 0 0 16px 0;
  line-height: 1.15;
  letter-spacing: -1px;
}

._gm_hero_sub_350 {
  font-size: 1.1rem;
  color: var(--_gm_text_muted_350);
  max-width: 680px;
  margin: 0 auto 40px;
}

._gm_search_glass_350 {
  display: flex;
  align-items: center;
  max-width: 640px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--_gm_glass_border_350);
  border-radius: 99px;
  padding: 6px 6px 6px 20px;
  box-shadow: var(--_gm_glass_shadow_350);
  transition: background 0.3s;
}

._gm_search_glass_350:focus-within {
  background: rgba(255, 255, 255, 0.7);
}

._gm_search_icon_350 {
  font-size: 1.2rem;
  color: var(--_gm_text_muted_350);
  margin-right: 8px;
}

._gm_search_ipt_350 {
  flex: 1;
  height: 48px;
  background: transparent;
  border: none;
  font-size: 1rem;
  color: var(--_gm_text_dark_350);
  outline: none;
}

._gm_search_btn_350 {
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 99px;
  padding: 0 28px;
  height: 48px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}

._gm_search_btn_350:hover {
  opacity: 0.8;
}

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

._gm_sec_block_350 {
  margin-bottom: 64px;
}

._gm_sec_hd_350 {
  text-align: center;
  margin-bottom: 32px;
}

._gm_sec_ttl_350 {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0;
  color: var(--_gm_text_dark_350);
  letter-spacing: -0.5px;
}

/* Feature Grid (Glass Cards) */
._gm_feature_flex_350 {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 24px !important;
}

._gm_glass_card_350 {
  flex: 1 1 calc(33.333% - 24px) !important;
  min-width: 280px;
  background: var(--_gm_glass_bg_350);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--_gm_glass_border_350);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: var(--_gm_glass_shadow_350);
  transition: transform 0.3s ease, background 0.3s;
}

._gm_glass_card_350:hover {
  transform: translateY(-4px);
  background: var(--_gm_glass_hover_350);
}

._gm_card_icon_350 {
  font-size: 2rem;
  margin-bottom: 16px;
  display: inline-block;
}

._gm_feat_ttl_350 {
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  margin: 0 0 10px 0 !important;
}

._gm_card_a_350 {
  color: var(--_gm_text_dark_350) !important;
  text-decoration: none !important;
}

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

/* Stream List (Glass Rows) */
._gm_stream_list_350 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

._gm_glass_row_350 {
  background: var(--_gm_glass_bg_350);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--_gm_glass_border_350);
  border-radius: 20px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--_gm_glass_shadow_350);
  transition: background 0.2s, transform 0.2s;
}

._gm_glass_row_350:hover {
  background: var(--_gm_glass_hover_350);
  transform: scale(1.01);
}

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

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

._gm_stream_badge_350 {
  background: rgba(0,0,0,0.05);
  color: var(--_gm_text_dark_350);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 99px;
}

._gm_stream_time_350 {
  font-size: 0.8rem;
  color: var(--_gm_text_muted_350);
}

._gm_stream_ttl_350 {
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  margin: 0 0 6px 0 !important;
  line-height: 1.3 !important;
}

._gm_ttl_a_350 {
  color: var(--_gm_text_dark_350) !important;
  text-decoration: none !important;
}

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

._gm_stream_side_350 {
  flex-shrink: 0;
}

/* Links Box */
._gm_link_sec_350 {
  margin-top: 48px;
}

._gm_glass_box_350 {
  background: var(--_gm_glass_bg_350);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--_gm_glass_border_350);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--_gm_glass_shadow_350);
  text-align: center;
}

._gm_link_ttl_350 {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 20px 0;
}

._gm_link_group_350 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

._gm_link_pill_350 {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: var(--_gm_text_dark_350);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 99px;
  text-decoration: none;
  transition: all 0.2s;
}

._gm_link_pill_350:hover {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Footer */
._gm_footer_350 {
  width: 100% !important;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--_gm_glass_border_350);
  padding: 32px 0;
  position: relative;
  z-index: 10;
}

._gm_ft_in_350 {
  text-align: center;
  font-size: 0.9rem;
  color: var(--_gm_text_muted_350);
  font-weight: 500;
}

@media (max-width: 868px) {
  ._gm_hdr_in_350 {
    flex-direction: column;
    height: auto;
    padding: 16px 0;
    gap: 16px;
  }
  ._gm_nav_ul_350 {
    flex-wrap: wrap;
    justify-content: center;
  }
  ._gm_feat_card_350 {
    flex: 1 1 100% !important;
  }
  ._gm_glass_row_350 {
    flex-direction: column;
    align-items: flex-start;
  }
}