@charset "UTF-8";

/*
 * modern-design.red_b895
 * 说明：
 * - 该文件曾意外变为空（1 字节），导致 index-new.layout_brown_fdca / bonus.layout_brown_fdca / app.layout_brown_fdca 等“新模板”几乎无样式。
 * - 这里采用“复用现有样式 + 补齐新模板关键组件”的方式快速恢复：
 *   - 复用：shared.red_b895（基础/按钮/网格/工具类）、inner-pages.red_b895（feature cards 等）、index.red_b895（部分 section 标题/卡片）
 *   - 补齐：navbar/hero/section/card/footer/faq 等 index-new 模板依赖的关键类
 */

@import url("shared.red_b895");
@import url("inner-pages.red_b895");
@import url("index.red_b895");

:root{
  /* Color system (index-new.layout_brown_fdca 中大量引用) */
  --color-bg: #0D1117;
  --color-surface: rgba(255,255,255,0.06);
  --color-surface-2: rgba(255,255,255,0.08);
  --color-border: rgba(255,255,255,0.12);
  --color-text: #E6EDF3;
  --color-text-secondary: rgba(230,237,243,0.82);
  --color-text-muted: rgba(230,237,243,0.62);
  /* New theme (去咖啡色)：蓝紫科技风 */
  --color-accent: #3B82F6;   /* blue */
  --color-accent-2: #A855F7; /* purple */

  /* Bonus / 表格会用到的语义色与渐变（补齐 bonus.layout_brown_fdca 变量依赖） */
  --color-bg-card: rgba(255,255,255,0.06);
  --color-primary: var(--color-accent);
  --color-success: #4caf50;
  --color-warning: #fbbf24;
  --color-danger: #ef4444;
  --gradient-primary: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-2) 100%);

  /* Spacing / radius */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 32px;
  --space-8: 40px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  /* Typography */
  --text-xs: 12px;
  --text-sm: 14px;
  --text-md: 16px;
  --text-lg: 18px;
  --text-xl: 22px;
  --text-2xl: 28px;
  --text-3xl: 34px;

  /* Override shared.red_b895 “coffee” bootstrap-like tokens */
  --bs-primary: #111827; /* neutral dark */
  --bs-blue: var(--color-accent);
  --bs-indigo: #6366F1;
  --bs-purple: var(--color-accent-2);
}

/* Base */
html, body { height: 100%; }
body{
  background: var(--color-bg);
  color: var(--color-text);
}

/* =========================================================
   Theme override layer: eliminate coffee/brown from legacy CSS
   Applies to pages that still load shared.red_b895 / inner-pages.red_b895
   ========================================================= */

/* Legacy inner-pages/index content gradient (was brown) */
.shadow_hovered_8ce4{
  background: radial-gradient(900px 600px at 15% 0%, rgba(59,130,246,0.18), transparent 60%),
              radial-gradient(800px 520px at 85% 20%, rgba(168,85,247,0.18), transparent 60%),
              linear-gradient(135deg, rgba(17,24,39,0.95) 0%, rgba(15,23,42,0.92) 50%, rgba(2,6,23,0.95) 100%) !important;
}

/* Legacy hero-section background (was brown tint) */
.row_fast_f6cc{
  background: rgba(59,130,246,0.08) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
}

/* Legacy utility: shared.red_b895 defines .text-9729 as coffee (#4E342E).
   Force it to the new blue-purple theme site-wide. */
.text-9729{
  background: var(--gradient-primary) !important;
}

/* Footer (was coffee rgba(78,52,46,0.7)) */
footer{
  background: rgba(13,17,23,0.88) !important;
  border-top: 1px solid rgba(255,255,255,0.10) !important;
}

/* Legacy nav-menu (coffee) – keep layout but neutralize theme */
.purple-a7bf{
  background: rgba(13,17,23,0.98) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  box-shadow: 0 10px 28px rgba(0,0,0,0.35) !important;
}
.purple-a7bf .hero-eb07{
  background: rgba(13,17,23,0.98) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45) !important;
}
.purple-a7bf .hero-eb07::before{ display: none !important; }
.purple-a7bf .secondary-new-4a18::before{
  background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-accent-2) 100%) !important;
}

/* =========================================================
   Anti-coffee inline overrides
   Some pages use inline styles with hard-coded brown colors.
   Use !important to override those inline backgrounds globally.
   ========================================================= */

/* Override any inline background gradients/solids that contain legacy brown tokens */
body [style*="#5D4037"],
body [style*="#4E342E"],
body [style*="#6D4C41"],
body [style*="#8D6E63"],
body [style*="#3E2723"],
body [style*="rgba(93, 64, 55"],
body [style*="rgba(109, 76, 65"],
body [style*="rgba(78, 52, 46"],
body [style*="rgba(141, 110, 99"]{
  background: radial-gradient(900px 600px at 15% 0%, rgba(59,130,246,0.18), transparent 60%),
              radial-gradient(800px 520px at 85% 20%, rgba(168,85,247,0.18), transparent 60%),
              rgba(13,17,23,0.72) !important;
  border-color: rgba(255,255,255,0.12) !important;
}

/* Common FAQ containers use rounded cards — keep the look but remove brown */
body details[style*="#5D4037"],
body details[style*="#4E342E"],
body details[style*="#6D4C41"],
body details[style*="#8D6E63"]{
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
}

/* New-template utilities */
.surface-cc10{ margin-top: var(--space-6); }
.thick-6bc6{ margin-top: var(--space-4); }
.input_dirty_862d{ margin-bottom: var(--space-4); }
.upper_db43{
  background: radial-gradient(900px 600px at 20% 0%, rgba(255, 215, 0, 0.10), transparent 60%),
              radial-gradient(700px 500px at 80% 20%, rgba(255, 111, 0, 0.12), transparent 55%),
              rgba(255,255,255,0.02);
}

/* Buttons (new template) */
.cold_7577{
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  box-shadow: none;
}
.cold_7577:hover{
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.20);
  color: var(--color-text);
}
.silver_b9d6{
  background: linear-gradient(135deg, var(--color-accent) 0%, #fdd835 100%);
  color: #111;
  box-shadow: 0 10px 28px rgba(255, 215, 0, 0.25);
}
.silver_b9d6:hover{
  background: linear-gradient(135deg, #fdd835 0%, var(--color-accent) 100%);
  color: #111;
}
.motion-47a0{
  background: rgba(255,255,255,0.08);
  color: var(--color-text);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: none;
}
.motion-47a0:hover{
  background: rgba(255,255,255,0.12);
  color: var(--color-text);
}

/* Navbar */
.right-ef39{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(13, 17, 23, 0.88);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.right-ef39 .plasma_eee7{ padding-top: 14px; padding-bottom: 14px; }
.primary-5f8d{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.light-d503{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.light-d503 img{ border-radius: 10px; }
.primary-efee{
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.out-0d82{
  display: inline-flex;
  align-items: center;
  color: var(--color-text);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}
.out-0d82:hover{
  background: rgba(255,255,255,0.08);
  color: var(--color-text);
}
.sort_right_b924{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.shade-north-ab53{
  display: none;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: var(--color-text);
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
}
.gas-50b0{ position: relative; }
/* Dropdown indicator (match index-new.layout_brown_fdca) */
.gas-50b0 > .out-0d82::after{
  content: " ▼";
  font-size: 0.7em;
  margin-left: 6px;
  opacity: 0.75;
}
.gas-50b0.fn-active-cf83 > .out-0d82::after{
  content: " ▲";
}
.menu-98ae{
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 6px;
  min-width: 220px;
  background: rgba(13,17,23,0.98);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 6px 0;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}
.gas-50b0:hover .menu-98ae{ display: block; }
.secondary-new-4a18{
  display: block;
  padding: 10px 14px;
  color: var(--color-text);
  text-decoration: none;
  font-size: 15px;
}
.secondary-new-4a18:hover{ background: rgba(255,255,255,0.08); }

/* Mobile navbar */
@media (max-width: 768px){
  .shade-north-ab53{ display: inline-flex; }
  .sort_right_b924{ display: none; }
  .primary-efee{
    position: fixed;
    top: 73px;
    left: 0; right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 14px;
    background: rgba(13,17,23,0.98);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    max-height: calc(100vh - 73px);
    overflow: auto;
  }
  .primary-efee.fn-active-cf83{ display: flex; }
  .out-0d82{ width: 100%; justify-content: center; }
  .gas-50b0:hover .menu-98ae{ display: none; }
  .menu-98ae{
    position: static;
    margin-top: 0;
    border-radius: 10px;
    width: 100%;
    box-shadow: none;
    background: rgba(255,255,255,0.06);
  }
  .gas-50b0.fn-active-cf83 .menu-98ae{ display: block; }
}

/* Section + cards */
.simple-223e{
  padding: 56px 0;
}
.media_0adb{
  text-align: center;
  margin-bottom: 28px;
}
.button_thick_168b{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  color: var(--color-text);
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 12px;
}
.gas-bfae{
  max-width: 850px;
  margin: 0 auto;
  color: var(--color-text-secondary);
}

.main-dynamic-cffc{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
}
.box-eae6{
  background: radial-gradient(600px 300px at 25% 0%, rgba(255,215,0,0.14), transparent 60%),
              rgba(255,255,255,0.06);
  border-color: rgba(255,215,0,0.22);
  box-shadow: 0 18px 55px rgba(255,215,0,0.08);
}

/* Game cards (index-new.layout_brown_fdca) - 内容居中 */
.frame-white-c66b{
  text-align: center;
}
.gradient_152a{
  margin: 14px 0 10px;
}
.orange-a987{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.video_copper_29b5{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--color-text-secondary);
  font-size: 13px;
}
.over_c46e{
  margin: 0 auto 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 48ch;
}
.sidebar_pink_da41{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.component_f02b{
  position: relative;
  display: flex;
  justify-content: center;
}
.component_f02b img{
  display: block;
}
.huge_180b{
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(13, 17, 23, 0.75);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--color-text);
  font-size: 13px;
  font-weight: 800;
}

/* Hero (new template) */
.soft_072e{
  padding: 92px 0 38px;
}
.table_wide_986e{
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.filter_slow_3643{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--color-text);
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}
.article-yellow-8454{
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.12;
  margin: 0 0 var(--space-4) 0;
  letter-spacing: -0.3px;
}
.action_1731{
  color: var(--color-text-secondary);
  font-size: var(--text-lg);
  line-height: 1.7;
  margin: 0 auto var(--space-5);
  max-width: 980px;
}
.info_bronze_7b87{
  display: flex;
  justify-content: center;
  margin: var(--space-5) 0;
}
.info_bronze_7b87 img{
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.progress_gold_e48b{
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-4);
}
.row-e98e{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: var(--space-7);
}
.column_north_11a9{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 14px 12px;
}
.middle_0ca1{
  display: block;
  color: var(--color-accent);
  font-weight: 900;
  font-size: 20px;
}
.status_e693{
  display: block;
  color: var(--color-text-muted);
  font-size: 13px;
  margin-top: 4px;
}
@media (max-width: 900px){
  .row-e98e{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Simple grids used across pages */
.icon_d142{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.paragraph_902f{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 16px 14px;
  text-align: center;
}
.carousel-wood-9eb8{
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: var(--color-accent);
}
.mask_dim_f4c8{
  display: block;
  margin-top: 6px;
  color: var(--color-text-secondary);
  font-size: 13px;
}
.fixed_9508{
  display: block;
  margin-top: 6px;
  color: var(--color-text-muted);
  font-size: 12px;
}
@media (max-width: 900px){
  .icon_d142{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* FAQ accordion */
.box-stale-76fb{ max-width: 980px; margin: 0 auto; }
.module_07ab{
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  margin-bottom: 12px;
}
.iron_0c03{
  width: 100%;
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: none;
  color: var(--color-text);
  padding: 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 800;
  font-size: 16px;
}
.status_down_000d{ opacity: 0.75; }
.list_b5a4{
  display: none;
  padding: 0 16px 16px;
  color: var(--color-text-secondary);
}
.module_07ab.fn-active-cf83 .list_b5a4{ display: block; }
.center_0723 p{ margin: 10px 0; }
.center_0723 ul{ margin: 10px 0 0 18px; }
.center_0723 li{ margin: 6px 0; }

/* Footer */
.primary_active_1c58{
  border-top: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.02);
  padding: 42px 0;
}
.hot-1fb3{
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 18px;
}
.chip-slow-7a9e h4{
  margin: 0 0 10px 0;
  color: var(--color-text);
}
.focused-30c3{
  list-style: none;
  padding: 0;
  margin: 0;
}
.focused-30c3 li{ margin: 8px 0; }
.focused-30c3 a{
  color: var(--color-text-secondary);
  text-decoration: none;
}
.focused-30c3 a:hover{ color: var(--color-text); }
.tooltip-over-1a3e{
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--color-text-muted);
}
.card-tiny-aa55{ display: inline-flex; gap: 10px; }
.pressed_b3bb{
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  text-decoration: none;
}
@media (max-width: 900px){
  .hot-1fb3{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px){
  .hot-1fb3{ grid-template-columns: 1fr; }
}

/* ==============================
 * Bonus page components
 * - testimonials-grid / testimonial-card
 * - transparency-grid / transparency-card
 * - responsive tables
 * ============================== */

.thick_1e58{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 1000px){
  .thick_1e58{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .thick_1e58{ grid-template-columns: 1fr; }
}

.breadcrumb-8ed6{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 16px 16px;
}
.row-over-7dcc{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.shadow_a5cb{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #111;
  background: var(--gradient-primary);
  flex: 0 0 auto;
}
.text_e7a1{ flex: 1 1 auto; min-width: 0; }
.nav-wood-dedf{
  margin: 0;
  font-size: 15px;
  font-weight: 900;
  color: var(--color-text);
}
.logo-tall-254f{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
  color: var(--color-text-muted);
  font-size: 12px;
}
.info-south-eb98{
  color: rgba(76,175,80,0.95);
  font-weight: 800;
}
.nav-e445{
  color: var(--color-accent);
  font-weight: 900;
  letter-spacing: 1px;
  flex: 0 0 auto;
}
.simple-8d47{
  margin: 0;
  color: var(--color-text-secondary);
  line-height: 1.7;
}
.fluid-f268{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  color: var(--color-text-muted);
  font-size: 12px;
}

.blue_6b9f{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 820px){
  .blue_6b9f{ grid-template-columns: 1fr; }
}
.frame_74a3{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 18px 16px;
}
.full-aae5{
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 900;
  color: var(--color-text);
}
.item_9d92{
  margin: 0 0 10px 0;
  color: var(--color-text-secondary);
  line-height: 1.7;
}
.menu_narrow_871a{
  margin: 0;
  padding-left: 18px;
  color: var(--color-text-secondary);
}
.menu_narrow_871a li{ margin: 6px 0; }

/* ==============================
 * E-E-A-T Components for cadastro.layout_brown_fdca
 * - expertise-card, authority-card, trust-card
 * - verification-notice, compliance-banner
 * ============================== */

.image-8061, .north_7010, .huge_96ed {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}
@media (max-width: 1024px) {
  .image-8061, .north_7010, .huge_96ed { 
    grid-template-columns: repeat(2, minmax(0, 1fr)); 
  }
}
@media (max-width: 640px) {
  .image-8061, .north_7010, .huge_96ed { 
    grid-template-columns: 1fr; 
  }
}

.heading-under-3564, .hidden_049e, .blue-dcca {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 24px;
  transition: all 0.3s ease;
}
.heading-under-3564:hover, .hidden_049e:hover, .blue-dcca:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 235, 59, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.tall_9498, .hero-c734 {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.orange-61c1, .blue-dcca h3 {
  margin: 0 0 12px 0;
  font-size: 20px;
  font-weight: 900;
  color: var(--color-text);
}

.highlight_870e, .outline_complex_d531, .overlay-4489 {
  color: var(--color-text-secondary);
  line-height: 1.7;
}
.highlight_870e p, .outline_complex_d531 p, .overlay-4489 p {
  margin-bottom: 12px;
}
.highlight_870e ul, .outline_complex_d531 ul, .overlay-4489 ul {
  margin: 12px 0;
  padding-left: 20px;
}
.highlight_870e ul li, .outline_complex_d531 ul li, .overlay-4489 ul li {
  margin: 8px 0;
}

.glass-661a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  margin-top: 8px;
}
.accordion-b3c9 {
  color: var(--color-text-muted);
  font-size: 13px;
}
.mini-7ffc {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 14px;
}

.content_350b {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(33, 150, 243, 0.2));
  border-radius: 12px;
  margin-bottom: 16px;
}
.upper-c605 {
  font-size: 60px;
  margin-bottom: 8px;
}
.content_350b h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  color: var(--color-accent);
}
.overlay-4489 h4 {
  margin: 0 0 12px 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--color-text);
}
.next_5ae2 {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.panel-pink-1724 {
  font-size: 12px;
  color: var(--color-text-muted);
  font-family: monospace;
}

.red_e6d4 {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(76, 175, 80, 0.2);
  border-left: 4px solid #4CAF50;
  border-radius: 8px;
  color: var(--color-text);
  font-size: 14px;
}

.frame_1608, .box_901c, .search-easy-9c14, .form-current-4a87 {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: rgba(33, 150, 243, 0.15);
  border: 2px solid rgba(33, 150, 243, 0.3);
  border-radius: 16px;
  margin-top: 32px;
}
.info_f53b, .article_pressed_73ce, .top-74d7, .huge_5fa0 {
  font-size: 48px;
  flex-shrink: 0;
}
.current_7df7 h3, .focused_cdcf strong, .medium-a355 h3, .overlay-over-4cad h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 900;
  color: var(--color-text);
}
.current_7df7 p, .focused_cdcf, .medium-a355 p, .overlay-over-4cad p {
  margin: 0;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.shade_a2d1 {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(76, 175, 80, 0.2);
  border: 1px solid rgba(76, 175, 80, 0.4);
  border-radius: 8px;
  font-size: 12px;
  color: #4CAF50;
  font-weight: 600;
}

/* Tables (bonus.layout_brown_fdca 比较表) */
table{ color: var(--color-text); }
table th, table td{ border-color: rgba(255,255,255,0.10); }

/* css-noise: cf52 */
.shadow-element-u2 {
  padding: 0.4rem;
  font-size: 13px;
  line-height: 1.1;
}
