/* ============================================
   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)
   ============================================ */
.container-5af0 {
  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;
}

.container-5af0:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.focus_white_8845):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. */
.focus_white_8845,
header,
.outer-1b18,
.popup_tiny_ae7f,
.current_bb5a,
.list_dim_b57b,
.middle_74b9,
.element-huge-6d5a,
.thumbnail_selected_c0fa {
  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
   ============================================ */
.focus_white_8845 {
  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);
}

.west-70d4 {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.focus_white_8845.column-369a {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.outline-9b30 img {
  height: 36px;
  width: auto;
  display: block;
}

.description_fresh_d616 {
  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;
}

.input_motion_638c {
  flex: 1;
}

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

.search-e9d5 {
  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);
}

.search-e9d5:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.search-e9d5.banner-ac1a {
  background: var(--color-primary);
  color: white;
}

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

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

.widget-black-d474 svg {
  transition: transform 0.2s ease;
}

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

.breadcrumb-huge-59c6 {
  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;
}

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

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

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

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

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

.focus-easy-312c {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Header Login Button */
.accordion_4f88 {
  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;
}

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

.accordion_4f88 svg {
  flex-shrink: 0;
}

/* Header Download Button */
.tag-5b6e {
  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;
}

.tag-5b6e: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);
}

.tag-5b6e svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.photo-under-2c04[aria-expanded="true"] .aside_pro_0e64:nth-child(2) {
  opacity: 0;
}

.photo-under-2c04[aria-expanded="true"] .aside_pro_0e64:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Menu */
@media (max-width: 1100px) {
  .input_motion_638c {
    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 */
  }

  .input_motion_638c::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .input_motion_638c.element_db14 {
    display: block;
    right: 0;
  }
  
  .shadow_upper_5320 {
    flex-direction: column;
    gap: 0;
  }
  
  .search-e9d5 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .input_motion_638c::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;
  }
  
  .input_motion_638c.element_db14::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .input_motion_638c {
    display: none;
  }
  
  .photo-under-2c04 {
    display: flex;
  }
  
  .description_fresh_d616 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .accordion_4f88,
  .tag-5b6e {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .label_glass_805c {
    position: relative;
  }
  
  .breadcrumb-huge-59c6 {
    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;
  }
  
  .widget-black-d474[aria-expanded="true"] + .breadcrumb-huge-59c6 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .menu-5573 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .focus-easy-312c {
    gap: 8px;
  }
  
  .accordion_4f88 {
    display: none;
  }
  
  .tag-5b6e {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .outline-9b30 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.action_cccd svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.rough-1e47 a {
  color: var(--color-primary);
  text-decoration: none;
}

.rough-1e47 a:hover {
  text-decoration: underline;
}

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

.header-5bd3 {
  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) {
  .header-5bd3 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .header-5bd3 {
    font-size: 1.5rem;
  }
}

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

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

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

.down-a0c4 {
  display: flex;
  gap: var(--space-sm);
}

.modal_7da1 {
  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;
}

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

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

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

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

.huge-3fdc {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown-594a {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .fixed-4d2d {
    grid-template-columns: 1fr;
  }
  
  .header-5bd3 {
    font-size: 1.75rem;
  }
  
  .huge-3fdc {
    order: -1;
    max-width: 100%;
  }
  
  .dropdown-594a {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .header-5bd3 {
    font-size: 1.5rem;
  }
  
  .wide_c818 {
    font-size: 1rem;
  }
  
  .rough-1e47 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .dropdown-594a {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.feature_7f7d {
  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;
}

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

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

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

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

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

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

.label_static_2699 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

.progress_b502 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.progress_b502 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);
}

.progress_b502 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;
}

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

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

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

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

.outline_3b3d {
  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);
}

.liquid_6b15 {
  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);
}

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

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

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

.wood-bdcb {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.wood-bdcb img {
  max-width: 100%;
  height: auto;
  display: block;
}

.wood-bdcb pre,
.wood-bdcb code {
  overflow-x: auto;
  max-width: 100%;
}

.wood-bdcb 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);
}

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

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

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

.wood-bdcb ul,
.wood-bdcb ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.wood-bdcb li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

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

.wood-bdcb a {
  color: var(--color-primary);
  text-decoration: underline;
}

.wood-bdcb a:hover {
  color: var(--color-primary-dark);
}

.backdrop-4b16 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.backdrop-4b16 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-79ab {
    grid-template-columns: 1fr;
  }
  
  .liquid_6b15 {
    font-size: 1.75rem;
  }
  
  .wood-bdcb {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .liquid_6b15 {
    font-size: 1.5rem;
  }
  
  .wood-bdcb h3 {
    font-size: 1.375rem;
  }
  
  .wood-bdcb h4 {
    font-size: 1.125rem;
  }
}

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

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

.up-c5bf {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.content-4bd5 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.wide_7f1e {
  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;
}

.progress-liquid-f19e {
  flex-shrink: 0;
}

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

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

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

.container-0beb,
.component_16ec,
.wide-41e6 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.container-0beb thead,
.component_16ec thead {
  background: var(--color-primary);
  color: white;
}

.container-0beb th,
.container-0beb td,
.component_16ec th,
.component_16ec td,
.wide-41e6 th,
.wide-41e6 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .container-0beb th,
  .container-0beb td,
  .component_16ec th,
  .component_16ec td,
  .wide-41e6 th,
  .wide-41e6 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .container-0beb,
  .component_16ec,
  .wide-41e6 {
    min-width: 600px;
  }
}

.container-0beb th,
.component_16ec th,
.wide-41e6 th {
  font-weight: 600;
}

.container-0beb tbody tr:hover,
.component_16ec tbody tr:hover,
.wide-41e6 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.description_small_84e4 h4 {
  color: white;
}

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

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

.advanced_8ef3:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

.photo_44a7 {
  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);
}

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

.banner-static-77c3 {
  font-weight: 600;
  color: white;
}

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

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

.modal-561e {
  color: #4caf50;
}

.shade_70a6 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

.border-top-1f3e:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.tooltip-focused-a349 {
  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;
}

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

.border-top-1f3e p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

.banner-static-77c3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.photo-up-ed13 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

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

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

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

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

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

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

.label-b1ad {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.inner_31f2 .feature_7f7d {
  width: 100%;
  background: white;
}

.stone-4516 .feature_7f7d {
  color: #667eea;
}

.icon_gas_1722 .feature_7f7d {
  color: #f5576c;
}

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

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

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

.full_ef58 {
  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);
}

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

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

@media (max-width: 768px) {
  .banner_action_2cde {
    padding: var(--space-md);
  }
  
  .media_static_a5b4 {
    padding: var(--space-md);
  }
  
  .section-middle-bb18 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.popup-cb49 ol,
.popup-cb49 ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.popup-cb49 li {
  margin-bottom: var(--space-sm);
}

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

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

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

.section-middle-bb18 {
  margin-top: var(--space-lg);
  text-align: center;
}

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

.header_02ce,
.thumbnail_bright_9a7a,
.old_198f,
.prev-7f96 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.module-775e {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.disabled-basic-ee6d {
  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) {
  .disabled-basic-ee6d {
    font-size: 0.625rem;
  }
}

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

.media-bronze-12ca:hover {
  background: var(--color-primary-dark);
}

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

.title-208a h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.main-13c4 {
  border-color: var(--color-success);
}

.paragraph_right_f8e2 {
  border-color: var(--color-warning);
}

.table_3192 {
  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);
}

.main-13c4 .table_3192 {
  background: #e8f5e9;
  color: var(--color-success);
}

.paragraph_right_f8e2 .table_3192 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.solid-60af {
  margin: var(--space-xxl) 0;
}

.solid-60af h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-md);
}

.solid-60af > p {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

.brown_2a14 {
  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);
}

.message_266a {
  text-align: center;
}

.hovered_32e1 {
  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);
}

.orange-a97e {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.hovered_32e1 .banner-static-77c3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.surface-lite-10ac {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.accordion-dark-0a67 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.upper-7441 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.chip-9b3f {
  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;
}

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

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

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

.focus-2878 {
  text-align: right;
}

.focus-2878 .video-4a64 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.yellow_d304 {
  background: #e8f5e9;
  color: #2e7d32;
}

.row-2b9d {
  background: #e3f2fd;
  color: #1565c0;
}

.article-5a12 {
  background: #fff3e0;
  color: #e65100;
}

.header-fixed-d183 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

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

.bottom_ccec {
  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);
}

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

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

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

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

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

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

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

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

.component-bronze-63c5 {
  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);
}

.component-bronze-63c5:hover {
  background: var(--color-bg-alt);
}

.texture-b535 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.component-bronze-63c5[aria-expanded="true"] .texture-b535 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.logo_gold_b317 {
  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);
}

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

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

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

.hard_9af6,
.accent-red-9923 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.hard_9af6 h4,
.accent-red-9923 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.hard_9af6 ul,
.accent-red-9923 ul {
  list-style: none;
  padding: 0;
}

.hard_9af6 li,
.accent-red-9923 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.left-faf6 {
  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);
}

.component-b4df {
  font-style: italic;
}

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

.left-e510 {
  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;
}

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

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

.section-3a28 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

/* ============================================
   22. RELATED CONTENT
   ============================================ */
.element-huge-6d5a {
  padding: var(--space-xxl) 0;
  background: var(--color-bg-section);
}

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

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

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

.sidebar-rough-9950 {
  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);
}

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

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

.sidebar-rough-9950 h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.sidebar-rough-9950 p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

.item-502f .down-a0c4 {
  color: #4caf50;
  font-size: 0.875rem;
}

.in-d5fd {
  list-style: none;
  padding: 0;
}

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

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

.in-d5fd a:hover {
  color: white;
}

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

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

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

.info_complex_39a6 a:hover {
  color: white;
}

.item-first-3802 {
  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);
}

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

.silver_359c a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

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

@media (max-width: 768px) {
  .item-first-3802 {
    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;
  }
  
  .header-5bd3 {
    font-size: 2rem;
  }
  
  .liquid_6b15 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .fixed-4d2d,
  .tag-79ab {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .old-ddbd,
  .green_6761,
  .liquid_233b,
  .red_1f06,
  .form-0d83,
  .pink-06fd,
  .search_dynamic_859d,
  .component_fa61 {
    grid-template-columns: 1fr;
  }
  
  .selected_0030 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .middle_74b9 {
    padding: var(--space-lg) 0;
  }
  
  .progress_b502 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .progress_b502 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .feature_7f7d {
    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;
  }
  
  .selected_0030 {
    grid-template-columns: 1fr;
  }
  
  .easy-a72d,
  .section-3a28,
  .motion_61c2 {
    flex-direction: column;
    width: 100%;
  }
  
  .label_static_2699,
  .paragraph_4829,
  .easy-a72d .feature_7f7d,
  .section-3a28 .feature_7f7d {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .header-5bd3 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .liquid_6b15 {
    font-size: 1.375rem;
  }
  
  .motion_48d2 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .video-d0c8,
  .border-top-1f3e,
  .dirty-eca6,
  .texture-de87,
  .preview-9fe3 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .disabled-basic-ee6d {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .breadcrumb_6820 {
    gap: var(--space-xs);
  }
  
  .action_cccd {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .photo_44a7 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .hovered_32e1 {
    width: 150px;
    height: 150px;
  }
  
  .orange-a97e {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .focus_white_8845,
  .outer-1b18,
  .easy-a72d,
  .left-e510,
  .element-huge-6d5a,
  .thumbnail_selected_c0fa,
  .photo-under-2c04 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .middle_74b9 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 4b9b */
.phantom-card-s2 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}
