/* ============================================
   Modern CSS for SEO-Optimized Content Site
   Based on Google 2026 Best Practices
   ============================================ */

/* ============================================
   1. CSS RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --color-primary: #1976d2;
  --color-primary-dark: #115293;
  --color-primary-light: #4791db;
  --color-secondary: #424242;
  --color-accent: #ff6b6b;
  --color-success: #4caf50;
  --color-warning: #ff9800;
  --color-danger: #f44336;
  
  /* Neutrals */
  --color-text: #212121;
  --color-text-light: #666666;
  --color-text-lighter: #999999;
  --color-border: #e0e0e0;
  --color-border-light: #f5f5f5;
  --color-bg: #ffffff;
  --color-bg-alt: #fafafa;
  --color-bg-section: #f8f9fa;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Merriweather', Georgia, serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  /* Do NOT set overflow-x here: combined with body's overflow-x: hidden
     it makes <html> its own scroll container and breaks the sticky header. */
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}

/* ============================================
   2. SKIP LINK (Accessibility)
   ============================================ */
.first_d707 {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 10000;
  border-radius: 0 0 4px 0;
}

.first_d707:focus {
  top: 0;
}

/* ============================================
   3. CONTAINER & LAYOUT
   ============================================ */
.aside_next_041c {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .aside_next_041c {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .aside_next_041c {
    padding: 0 12px;
  }
}

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.list-narrow-5d7f):not(header) {
  max-width: 100%;
}

/* Allow specific elements to exceed container.
   html/body are excluded on purpose: releasing their max-width removes the
   last guard against a horizontally scrollable page. */
.list-narrow-5d7f,
header,
.panel_2452,
.component-9bc0,
.medium-ff0f,
.tooltip-cec5,
.menu_medium_90b8,
.status-2949,
.text-d95e {
  max-width: none;
}

/* overflow-x stays off <html>: pairing it with body's hidden turns <html>
   into its own scroll container and breaks the sticky header. */
html,
body {
  width: 100%;
  max-width: 100%;
}

/* Critical mobile fix: prevent any overflow */
section,
article,
div,
main {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Ensure images never cause overflow */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure SVG icons don't cause issues */
svg {
  max-width: 100%;
  height: auto;
}

/* ============================================
   4. HEADER & NAVIGATION
   ============================================ */
.list-narrow-5d7f {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-base);
}

.title_14b7 {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Scrolled state */
.list-narrow-5d7f.texture-selected-19df {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

.form-f51a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  gap: var(--space-md);
}

.tooltip_0a2a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.form_light_9ffa img {
  height: 36px;
  width: auto;
  display: block;
}

.pattern-62f5 {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: #e8f5e9;
  color: var(--color-success);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 12px;
  white-space: nowrap;
}

.selected_f834 {
  flex: 1;
}

.heading-2413 {
  display: flex;
  list-style: none;
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
}

.tag-middle-30a6 {
  display: block;
  padding: 8px 16px;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.tag-middle-30a6:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.tag-middle-30a6.menu-red-1aa8 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.input_upper_d213 {
  position: relative;
}

.breadcrumb_dynamic_a3cc {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.breadcrumb_dynamic_a3cc svg {
  transition: transform 0.2s ease;
}

/* 鼠标悬停时箭头旋转（桌面）；点击展开时箭头旋转（移动端） */
.input_upper_d213:hover .breadcrumb_dynamic_a3cc svg,
.breadcrumb_dynamic_a3cc[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.footer_2b7f {
  position: absolute;
  top: calc(100% + 8px); /* 距离父元素8px，更自然 */
  left: 0;
  min-width: 200px;
  width: max-content; /* 自动适应内容宽度 */
  max-width: 300px; /* 最大宽度限制 */
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.08);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1001;
  /* 关键：确保没有overflow，内容完全可见 */
  overflow: visible;
  max-height: none;
  height: auto;
}

/* 鼠标悬停父元素时，立即显示下拉菜单 */
.input_upper_d213:hover .footer_2b7f {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* 在下拉菜单上方添加一个不可见的桥接区域，防止鼠标移动时菜单消失 */
.footer_2b7f::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}

.slider_steel_7c08 {
  display: block;
  padding: 10px 20px;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.slider_steel_7c08:hover {
  background: var(--color-primary);
  color: white;
  padding-left: 24px; /* 悬停时轻微缩进 */
}

/* 当前页面在下拉菜单中的样式 */
.slider_steel_7c08[aria-current="page"] {
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 600;
}

.warm_9ca8 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Header Login Button */
.shade-pink-827f {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.shade-pink-827f:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
  transform: translateY(-1px);
}

.shade-pink-827f svg {
  flex-shrink: 0;
}

/* Header Download Button */
.button_out_44f0 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.3);
  white-space: nowrap;
}

.button_out_44f0:hover {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, #0d47a1 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.4);
}

.button_out_44f0 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.cold-a3c8 {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.full_d404 {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

/* Hamburger animation when active */
.cold-a3c8[aria-expanded="true"] .full_d404:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.cold-a3c8[aria-expanded="true"] .full_d404:nth-child(2) {
  opacity: 0;
}

.cold-a3c8[aria-expanded="true"] .full_d404:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Menu */
@media (max-width: 1100px) {
  .selected_f834 {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    padding: 80px 0 20px;
    transition: right 0.3s ease-out;
    z-index: 999;
    overflow-y: auto; /* 移动端菜单内容过多时可滚动 */
    overflow-x: visible; /* 水平方向不滚动，确保下拉菜单可见 */
    /* 隐藏滚动条外观，但保留可滚动能力，视觉上更自然 */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }

  .selected_f834::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .selected_f834.slider-hot-f846 {
    display: block;
    right: 0;
  }
  
  .heading-2413 {
    flex-direction: column;
    gap: 0;
  }
  
  .tag-middle-30a6 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .selected_f834::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-out;
  }
  
  .selected_f834.slider-hot-f846::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .selected_f834 {
    display: none;
  }
  
  .cold-a3c8 {
    display: flex;
  }
  
  .pattern-62f5 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .shade-pink-827f,
  .button_out_44f0 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .input_upper_d213 {
    position: relative;
  }
  
  .footer_2b7f {
    position: static; /* 移动端不浮动，直接堆叠 */
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--color-primary);
    padding-left: 20px;
    margin-top: 0;
    /* 用 max-height 过渡实现自然展开/收起，而不是生硬的 display 切换 */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
  }
  
  .breadcrumb_dynamic_a3cc[aria-expanded="true"] + .footer_2b7f {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .slider_steel_7c08 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .warm_9ca8 {
    gap: 8px;
  }
  
  .shade-pink-827f {
    display: none;
  }
  
  .button_out_44f0 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .form_light_9ffa img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .button_out_44f0 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .button_out_44f0 svg {
    width: 14px;
    height: 14px;
  }
  
  .form-f51a {
    gap: var(--space-sm);
  }
}

/* ============================================
   5. ARTICLE META BANNER
   ============================================ */
.panel_2452 {
  background: var(--color-bg-section);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-sm) 0;
}

.title-out-80c7 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.video_33ba {
  display: flex;
  align-items: center;
  gap: 6px;
}

.video_33ba svg {
  flex-shrink: 0;
}

.video_33ba a {
  color: var(--color-primary);
  text-decoration: none;
}

.video_33ba a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .title-out-80c7 {
    font-size: 0.8125rem;
    gap: var(--space-sm);
  }
}

/* ============================================
   6. HERO SECTION
   ============================================ */
.component-9bc0 {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.simple-fef9 {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-xl);
  align-items: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .simple-fef9 {
    grid-template-columns: 1fr 350px;
    gap: var(--space-lg);
  }
}

.filter-be9a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.filter-be9a a {
  color: var(--color-primary);
  text-decoration: none;
}

.filter-be9a a:hover {
  text-decoration: underline;
}

.card_2ca2 {
  color: var(--color-text-lighter);
}

.fluid-efe6 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

@media (max-width: 1024px) {
  .fluid-efe6 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .fluid-efe6 {
    font-size: 1.5rem;
  }
}

.thick_5e08 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.tag-wood-715c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
  .tag-wood-715c {
    grid-template-columns: 1fr;
  }
}

.sidebar-872d {
  display: flex;
  gap: var(--space-sm);
}

.carousel_cd77 {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--color-primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.simple_d174 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.simple_d174 strong {
  font-weight: 600;
  color: var(--color-text);
}

.simple_d174 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.center_c068 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.video_left_40da {
  display: flex;
  align-items: center;
  justify-content: center;
}

.shade_purple_f2df {
  position: relative;
  text-align: center;
}

.shade_purple_f2df img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.button-d546 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.text-d17f {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.first_47ed {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.tooltip-8248 {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

.main_pressed_3bff {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.header_center_e006 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .simple-fef9 {
    grid-template-columns: 1fr;
  }
  
  .fluid-efe6 {
    font-size: 1.75rem;
  }
  
  .video_left_40da {
    order: -1;
    max-width: 100%;
  }
  
  .shade_purple_f2df {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .fluid-efe6 {
    font-size: 1.5rem;
  }
  
  .thick_5e08 {
    font-size: 1rem;
  }
  
  .filter-be9a {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .shade_purple_f2df {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.accordion-up-7fee {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  line-height: 1.5;
}

.carousel_thick_a0e3 {
  background: var(--color-primary);
  color: white;
}

.carousel_thick_a0e3:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.focused-0b4c {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.focused-0b4c:hover {
  background: var(--color-primary);
  color: white;
}

.accordion_large_1a4f {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.accordion_large_1a4f:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.mask-4f25 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.full_339a {
  padding: 20px 40px;
  font-size: 1.25rem;
}

/* ============================================
   8. STATS SECTION
   ============================================ */
.medium-ff0f {
  padding: var(--space-xl) 0;
  background: white;
}

.search-0c5e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
}

.next_e61f {
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.next_e61f:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.inner_a132 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.outline_basic_1730 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.background_first_e4e6 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* ============================================
   9. TABLE OF CONTENTS
   ============================================ */
.tooltip-cec5 {
  padding: var(--space-xl) 0;
  background: var(--color-bg-section);
}

.icon-hard-4116 {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.up_122c {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.blue-6f0a {
  list-style: none;
  counter-reset: toc-counter;
}

.blue-6f0a li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.blue-6f0a li a {
  display: flex;
  align-items: center;
  padding: var(--space-sm);
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.blue-6f0a li a:before {
  content: counter(toc-counter);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-primary-light);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  margin-right: var(--space-sm);
  flex-shrink: 0;
}

.blue-6f0a li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.menu_medium_90b8 {
  padding: var(--space-xxl) 0;
}

.thumbnail_outer_87a2 {
  background: var(--color-bg-section);
}

.wood-f003 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.module_d47d {
  display: inline-block;
  padding: 6px 16px;
  background: var(--color-primary-light);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: var(--space-md);
}

.tooltip_basic_3b8f {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.red_9b00 {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.tag-pressed-fe74 {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: var(--space-xl);
  width: 100%;
}

@media (max-width: 1200px) {
  .tag-pressed-fe74 {
    grid-template-columns: 1fr 300px;
  }
}

.element-fresh-c4ad {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.element-fresh-c4ad img {
  max-width: 100%;
  height: auto;
  display: block;
}

.element-fresh-c4ad pre,
.element-fresh-c4ad code {
  overflow-x: auto;
  max-width: 100%;
}

.element-fresh-c4ad h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin: var(--space-xl) 0 var(--space-md);
  color: var(--color-text);
}

.element-fresh-c4ad h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-text);
}

.element-fresh-c4ad h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.element-fresh-c4ad p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.element-fresh-c4ad ul,
.element-fresh-c4ad ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.element-fresh-c4ad li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.element-fresh-c4ad strong {
  font-weight: 600;
  color: var(--color-text);
}

.element-fresh-c4ad a {
  color: var(--color-primary);
  text-decoration: underline;
}

.element-fresh-c4ad a:hover {
  color: var(--color-primary-dark);
}

.tag_stale_6a41 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

.tag_stale_6a41 li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: var(--space-md);
}

.tag_stale_6a41 li:before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

@media (max-width: 968px) {
  .tag-pressed-fe74 {
    grid-template-columns: 1fr;
  }
  
  .tooltip_basic_3b8f {
    font-size: 1.75rem;
  }
  
  .element-fresh-c4ad {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .tooltip_basic_3b8f {
    font-size: 1.5rem;
  }
  
  .element-fresh-c4ad h3 {
    font-size: 1.375rem;
  }
  
  .element-fresh-c4ad h4 {
    font-size: 1.125rem;
  }
}

/* ============================================
   11. INFO BOXES
   ============================================ */
.solid-d65e {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
  border-left: 4px solid;
}

.wide_57ce {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.plasma-568e {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.hidden-d258 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.background-a08d strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.component_3a93 {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: #f1f8ff;
  border: 2px solid #0366d6;
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
}

.box_wide_8551 {
  flex-shrink: 0;
}

.bright_c45c strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

/* ============================================
   13. TABLES
   ============================================ */
.link_yellow_15e9 {
  overflow-x: auto;
  margin: var(--space-lg) 0;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .link_yellow_15e9 {
    margin-left: calc(-1 * var(--space-sm));
    margin-right: calc(-1 * var(--space-sm));
    width: calc(100% + 2 * var(--space-sm));
    border-radius: 0;
  }
}

.form-c1e7,
.red-7e7f,
.dark-da43 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.form-c1e7 thead,
.red-7e7f thead {
  background: var(--color-primary);
  color: white;
}

.form-c1e7 th,
.form-c1e7 td,
.red-7e7f th,
.red-7e7f td,
.dark-da43 th,
.dark-da43 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .form-c1e7 th,
  .form-c1e7 td,
  .red-7e7f th,
  .red-7e7f td,
  .dark-da43 th,
  .dark-da43 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .form-c1e7,
  .red-7e7f,
  .dark-da43 {
    min-width: 600px;
  }
}

.form-c1e7 th,
.red-7e7f th,
.dark-da43 th {
  font-weight: 600;
}

.form-c1e7 tbody tr:hover,
.red-7e7f tbody tr:hover,
.dark-da43 tbody tr:hover {
  background: var(--color-bg-alt);
}

.nav-thick-ebc0 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: var(--space-sm);
}

/* ============================================
   14. SIDEBAR
   ============================================ */
.article_old_126b {
  position: sticky;
  top: 80px;
  align-self: start;
}

.form-e2f4 {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
}

.form-e2f4 h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.modal_e3fc {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.modal_e3fc h4 {
  color: white;
}

.hidden-f941 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.breadcrumb-north-f37b {
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border-light);
}

.breadcrumb-north-f37b:last-child {
  border-bottom: none;
}

.breadcrumb-north-f37b dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.breadcrumb-north-f37b dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

.badge_focused_40e7 {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

.texture_solid_d677 {
  display: inline-flex;
  align-items: center;
  margin-top: var(--space-md);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.texture_solid_d677:hover {
  text-decoration: underline;
}

.container-f0f5 {
  text-align: center;
  margin-bottom: var(--space-md);
}

.thumbnail_a45c {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-sm);
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

.thumbnail_a45c span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.caption_8148 {
  font-weight: 600;
  color: white;
}

.steel_7265 {
  list-style: none;
  padding: 0;
}

.steel_7265 li {
  padding: var(--space-xs) 0;
}

.highlight_short_b90b {
  color: #4caf50;
}

.simple-4116 {
  color: #ff9800;
}

.backdrop_yellow_2946 {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.grid_tiny_c285 {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  align-items: center;
  gap: var(--space-sm);
}

.red_1d18 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.complex-b4c4 {
  height: 8px;
  background: var(--color-border-light);
  border-radius: 4px;
  overflow: hidden;
}

.west_3735 {
  height: 100%;
  background: linear-gradient(90deg, #4caf50 0%, #8bc34a 100%);
  transition: width var(--transition-slow);
}

.hero_slow_885a {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

/* ============================================
   15. FEATURE GRID
   ============================================ */
.gold_8a96 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (max-width: 768px) {
  .gold_8a96 {
    grid-template-columns: 1fr;
  }
}

.item_left_f60c {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  position: relative;
}

.item_left_f60c:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.filter-south-8b85 {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 48px;
  height: 48px;
  background: var(--color-primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  opacity: 0.3;
}

.item_left_f60c h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.item_left_f60c p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.header-803a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.caption_8148 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.photo-fast-21eb {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

.article_7b3d {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: #f1f8ff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.article_7b3d h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

/* ============================================
   16. COMPARISON & DECISION HELPER
   ============================================ */
.slider-silver-5d76 {
  max-width: 900px;
  margin: 0 auto;
}

.hovered_85ec {
  text-align: center;
  margin-bottom: var(--space-xl);
  font-size: 1.125rem;
  color: var(--color-text-light);
}

.purple-60f6 {
  margin: var(--space-xl) 0;
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .purple-60f6 {
    margin-left: calc(-1 * var(--space-sm));
    margin-right: calc(-1 * var(--space-sm));
    width: calc(100% + 2 * var(--space-sm));
  }
}

.soft-b140 {
  margin-top: var(--space-xxl);
}

.soft-b140 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.green_51f9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (max-width: 768px) {
  .green_51f9 {
    grid-template-columns: 1fr;
  }
}

.hover-d70a {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.shadow_29a9 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.bright_1c6b {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.hover-d70a h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: white;
}

.hover-d70a ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.hover-d70a li {
  padding: var(--space-xs) 0;
  color: white;
}

.hover-d70a .accordion-up-7fee {
  width: 100%;
  background: white;
}

.shadow_29a9 .accordion-up-7fee {
  color: #667eea;
}

.bright_1c6b .accordion-up-7fee {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.heading-aa0a {
  max-width: 900px;
  margin: 0 auto;
}

.status_black_95c2 {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-xl);
  overflow: hidden;
}

.frame_8162 {
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
}

.title_bright_17e4 {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.frame_8162 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.notice-ce5f {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .frame_8162 {
    padding: var(--space-md);
  }
  
  .notice-ce5f {
    padding: var(--space-md);
  }
  
  .in-c231 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.surface-complex-37e4 ol,
.surface-complex-37e4 ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.surface-complex-37e4 li {
  margin-bottom: var(--space-sm);
}

.surface-complex-37e4 code {
  background: var(--color-bg-alt);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
}

.description_649d {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #fff3e0;
  border-left: 4px solid var(--color-warning);
  border-radius: var(--radius-md);
}

.label_inner_19fa {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #ffebee;
  border-left: 4px solid var(--color-danger);
  border-radius: var(--radius-md);
}

.in-c231 {
  margin-top: var(--space-lg);
  text-align: center;
}

.in-c231 img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.chip_hot_8cbd,
.description-advanced-d17e,
.slider_c20b,
.info_493a {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.highlight-dynamic-a3c4 {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.background-45f1 {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.form-pressed-89ea {
  display: block;
  padding: var(--space-sm);
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
  overflow-wrap: break-word;
  margin: var(--space-sm) 0;
}

@media (max-width: 480px) {
  .form-pressed-89ea {
    font-size: 0.625rem;
  }
}

.article_4fd3 {
  padding: 8px 16px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
}

.article_4fd3:hover {
  background: var(--color-primary-dark);
}

.popup-e573 {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  text-align: center;
}

.popup-e573 h4 {
  margin-bottom: var(--space-md);
}

.aside_simple_a604 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

/* ============================================
   18. SECURITY SECTION
   ============================================ */
.column-wood-ce27 {
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  font-size: 1.125rem;
  text-align: center;
  color: var(--color-text-light);
}

.sort_f102 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (max-width: 768px) {
  .sort_f102 {
    grid-template-columns: 1fr;
  }
}

.dirty_1761 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid;
}

.rough_f06c {
  border-color: var(--color-success);
}

.first-61d5 {
  border-color: var(--color-warning);
}

.middle_1c8c {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.rough_f06c .middle_1c8c {
  background: #e8f5e9;
  color: var(--color-success);
}

.first-61d5 .middle_1c8c {
  background: #fff3e0;
  color: var(--color-warning);
}

.dirty_1761 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.dirty_1761 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.module_0e48 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.gradient-down-cd30 {
  margin: var(--space-xxl) 0;
}

.gradient-down-cd30 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-md);
}

.gradient-down-cd30 > p {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
}

.inner_7adb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .inner_7adb {
    grid-template-columns: 1fr;
  }
}

.content_047f {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.content_047f h4 {
  margin-bottom: var(--space-md);
  font-size: 1.125rem;
  color: var(--color-primary);
}

.focused-2570 {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

.focused-2570 input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 4px;
  cursor: pointer;
}

.hover-a682 {
  margin-top: var(--space-xxl);
}

.top_ebfa {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: var(--space-xl);
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.component_da58 {
  text-align: center;
}

.prev-066c {
  width: 180px;
  height: 180px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

.filter-6c92 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.prev-066c .caption_8148 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.gas_1418 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.right_63d4 p {
  margin-bottom: var(--space-md);
}

.left_9ad9 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .top_ebfa {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   19. REVIEW SECTION
   ============================================ */
.mask-large-5542 {
  max-width: 600px;
  margin: 0 auto var(--space-xxl);
}

.primary_next_248c {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.dark-45f2 {
  margin-bottom: var(--space-xl);
}

.hard_3028 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}

.thumbnail_inner_e34a {
  font-size: 2rem;
  color: #ffa000;
  letter-spacing: 4px;
  margin: var(--space-sm) 0;
}

.hard_fb34 {
  color: var(--color-text-light);
}

.shadow-18b1 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.outline-b999 {
  display: grid;
  grid-template-columns: 40px 1fr 50px;
  align-items: center;
  gap: var(--space-sm);
}

.active-4b11 {
  font-weight: 600;
  color: var(--color-text);
}

.frame-4821 {
  height: 12px;
  background: var(--color-border-light);
  border-radius: 6px;
  overflow: hidden;
}

.widget-26ed {
  height: 100%;
  background: linear-gradient(90deg, #ffa000 0%, #ff6f00 100%);
  transition: width var(--transition-slow);
}

.stale-0dcd {
  text-align: right;
  font-weight: 600;
  color: var(--color-text-light);
  font-size: 0.875rem;
}

.texture_7178 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.dynamic_3bbd {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-xl);
}

.rough_b9f6 {
  border: 2px solid #4caf50;
}

.outer_fbde {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
  gap: var(--space-md);
}

.photo_green_f1ae {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.blue_0334 {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.orange_c543 {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.primary_5db1 {
  display: inline-block;
  padding: 2px 8px;
  background: #4caf50;
  color: white;
  font-size: 0.75rem;
  border-radius: 10px;
  margin-left: 8px;
}

.progress-wood-a79b {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.carousel-easy-b773 {
  text-align: right;
}

.carousel-easy-b773 .secondary-074c {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.south_0848 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.easy-db80 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
  color: var(--color-text);
}

.easy-db80 p {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.fast_046e {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

.panel_f928 {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

.caption-6be7 {
  background: #e8f5e9;
  color: #2e7d32;
}

.slow_291e {
  background: #e3f2fd;
  color: #1565c0;
}

.footer_e623 {
  background: #fff3e0;
  color: #e65100;
}

.progress-fresh-4df7 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.progress-fresh-4df7 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.popup-0eee {
  padding: 6px 12px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.popup-0eee:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.detail-mini-8b19 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #f1f8ff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.orange_bcf5 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.orange_bcf5 strong {
  color: var(--color-primary);
}

.thumbnail-motion-440a {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.hovered_85be {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ============================================
   20. FAQ SECTION
   ============================================ */
.footer_3350 {
  max-width: 900px;
  margin: 0 auto;
}

.hot_3ed3 {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.badge_pink_58d3 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  transition: var(--transition-fast);
}

.badge_pink_58d3:hover {
  background: var(--color-bg-alt);
}

.cold-af8b {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.badge_pink_58d3[aria-expanded="true"] .cold-af8b {
  transform: rotate(180deg);
}

.element_west_0ed7 {
  display: none;
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-light);
  line-height: 1.7;
}

.element_west_0ed7 h5 {
  font-size: 1rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.element_west_0ed7 ul,
.element_west_0ed7 ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.element_west_0ed7 li {
  margin-bottom: var(--space-xs);
}

.item_prev_6a94 {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: #1e1e1e;
  color: #d4d4d4;
  border-radius: var(--radius-md);
  overflow-x: auto;
}

.shade-action-9fd6 {
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: #9cdcfe;
}

.item_prev_6a94 code {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ============================================
   21. CONCLUSION SECTION
   ============================================ */
.caption_e2ad {
  max-width: 800px;
  margin: 0 auto var(--space-xxl);
  text-align: center;
}

.pagination_5c28 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.right-a053 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

.left_9b48 {
  padding: 12px 24px;
  background: #4caf50;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.stone_f7cb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

@media (max-width: 768px) {
  .stone_f7cb {
    grid-template-columns: 1fr;
  }
}

.focus_eb57,
.accent_4d58 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.focus_eb57 {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.accent_4d58 {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.focus_eb57 h4,
.accent_4d58 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.focus_eb57 ul,
.accent_4d58 ul {
  list-style: none;
  padding: 0;
}

.focus_eb57 li,
.accent_4d58 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

.main_dim_f88a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

@media (max-width: 768px) {
  .main_dim_f88a {
    grid-template-columns: 1fr;
  }
}

.under-7452 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.table_down_8316 {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: white;
}

.action-7291 {
  background: linear-gradient(135deg, #f44336 0%, #e57373 100%);
  color: white;
}

.under-7452 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: white;
}

.under-7452 ul {
  list-style: none;
  padding: 0;
}

.under-7452 li {
  padding: var(--space-xs) 0;
  color: white;
}

.progress_1f42 {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

.progress_1f42 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.progress_1f42 p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
  line-height: 1.8;
}

.alert_center_97ff {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.right-165e {
  font-style: italic;
}

.breadcrumb_active_5ac6 {
  display: block;
  margin-top: var(--space-sm);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.warm-c36b {
  margin-top: var(--space-xxl);
  padding: var(--space-xxl);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-xl);
  text-align: center;
  color: white;
}

.warm-c36b h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: white;
}

.warm-c36b p {
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
  color: rgba(255,255,255,0.9);
}

.hero-8846 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

/* ============================================
   22. RELATED CONTENT
   ============================================ */
.status-2949 {
  padding: var(--space-xxl) 0;
  background: var(--color-bg-section);
}

.detail-hard-dff5 {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.label-plasma-bd63 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .label-plasma-bd63 {
    grid-template-columns: 1fr;
  }
}

.first-4b1d {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: var(--transition-base);
}

.first-4b1d:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.active_790a {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.first-4b1d h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.first-4b1d p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

/* ============================================
   23. FOOTER
   ============================================ */
.text-d95e {
  background: #212121;
  color: #e0e0e0;
  padding: var(--space-xxl) 0 var(--space-lg);
}

.new-7cf4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

@media (max-width: 768px) {
  .new-7cf4 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.image_down_5797 h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.block_over_7784 p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.description_5789 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.description_5789 .sidebar-872d {
  color: #4caf50;
  font-size: 0.875rem;
}

.new-3720 {
  list-style: none;
  padding: 0;
}

.new-3720 li {
  margin-bottom: var(--space-xs);
}

.new-3720 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.new-3720 a:hover {
  color: white;
}

.east_6325 {
  list-style: none;
  padding: 0;
}

.east_6325 li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: #b0b0b0;
}

.east_6325 a {
  color: #b0b0b0;
  text-decoration: none;
}

.east_6325 a:hover {
  color: white;
}

.fast-a840 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid #424242;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.highlight-south-2fea p {
  font-size: 0.875rem;
  color: #808080;
  margin-bottom: var(--space-xs);
}

.highlight-south-2fea a {
  color: #4caf50;
  text-decoration: none;
}

.out_11bc {
  font-size: 0.75rem;
  color: #666666;
}

.texture_68eb {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: #808080;
}

.thumbnail_8c80 {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.thumbnail_8c80:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .fast-a840 {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   24. RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 1200px) {
  :root {
    font-size: 15px;
  }
}

@media (max-width: 968px) {
  :root {
    --space-xxl: 3rem;
  }
  
  .fluid-efe6 {
    font-size: 2rem;
  }
  
  .tooltip_basic_3b8f {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .simple-fef9,
  .tag-pressed-fe74 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .gold_8a96,
  .sort_f102,
  .green_51f9,
  .inner_7adb,
  .stone_f7cb,
  .main_dim_f88a,
  .label-plasma-bd63,
  .new-7cf4 {
    grid-template-columns: 1fr;
  }
  
  .search-0c5e {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .menu_medium_90b8 {
    padding: var(--space-lg) 0;
  }
  
  .blue-6f0a li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .blue-6f0a li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .accordion-up-7fee {
    min-height: 44px;
  }
  
  /* Optimize images for mobile */
  img {
    height: auto;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 1.5rem;
    --space-xl: 1.75rem;
    --space-xxl: 2rem;
  }
  
  .search-0c5e {
    grid-template-columns: 1fr;
  }
  
  .center_c068,
  .hero-8846,
  .aside_simple_a604 {
    flex-direction: column;
    width: 100%;
  }
  
  .mask-4f25,
  .full_339a,
  .center_c068 .accordion-up-7fee,
  .hero-8846 .accordion-up-7fee {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .fluid-efe6 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .tooltip_basic_3b8f {
    font-size: 1.375rem;
  }
  
  .inner_a132 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .next_e61f,
  .item_left_f60c,
  .form-e2f4,
  .dynamic_3bbd,
  .status_black_95c2 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .form-pressed-89ea {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .title-out-80c7 {
    gap: var(--space-xs);
  }
  
  .video_33ba {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .thumbnail_a45c {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .prev-066c {
    width: 150px;
    height: 150px;
  }
  
  .filter-6c92 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .list-narrow-5d7f,
  .panel_2452,
  .center_c068,
  .warm-c36b,
  .status-2949,
  .text-d95e,
  .cold-a3c8 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .menu_medium_90b8 {
    page-break-inside: avoid;
  }
}

/* css-noise: eb39 */
.article_fluid_d2d8 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}

/* css-noise: 63c0 */
.phantom-card-t9 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.0;
}
