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

.widget_gas_6ebb:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.tabs-8405):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. */
.tabs-8405,
header,
.nav-wood-2731,
.fast-a96b,
.tabs-bc75,
.dirty_89f6,
.aside_east_9d0b,
.mini_79a2,
.sort_2486 {
  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
   ============================================ */
.tabs-8405 {
  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);
}

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

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

/* Scrolled state */
.tabs-8405.section_focused_1446 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.gallery-8249 {
  flex: 1;
}

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

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

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

.stale_27d9.status-basic-d1ea {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.preview_east_7756 svg {
  flex-shrink: 0;
}

/* Header Download Button */
.rough-1d1e {
  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;
}

.rough-1d1e: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);
}

.rough-1d1e svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .gallery-8249 {
    display: none;
  }
  
  .glass_04ee {
    display: flex;
  }
  
  .modal_db60 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .preview_east_7756,
  .rough-1d1e {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .secondary_e110 {
    position: relative;
  }
  
  .detail_f6d9 {
    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;
  }
  
  .liquid_e34d[aria-expanded="true"] + .detail_f6d9 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .main_inner_3a93 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .layout_advanced_ce96 {
    gap: 8px;
  }
  
  .preview_east_7756 {
    display: none;
  }
  
  .rough-1d1e {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .content_lower_a7f0 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .rough-1d1e {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .rough-1d1e svg {
    width: 14px;
    height: 14px;
  }
  
  .gallery-8326 {
    gap: var(--space-sm);
  }
}

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

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

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

.alert_tiny_6734 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.middle-99f8 {
  display: flex;
  gap: var(--space-sm);
}

.sidebar-bronze-5da7 {
  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;
}

.preview-hard-c6ad {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.preview-hard-c6ad strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .static_93da {
    grid-template-columns: 1fr;
  }
  
  .advanced_56c3 {
    font-size: 1.75rem;
  }
  
  .avatar_advanced_1aa5 {
    order: -1;
    max-width: 100%;
  }
  
  .icon_7674 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .advanced_56c3 {
    font-size: 1.5rem;
  }
  
  .surface_ad05 {
    font-size: 1rem;
  }
  
  .fresh_5633 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .icon_7674 {
    max-width: 250px;
  }
}

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

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

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

.widget-hovered-31ea {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.widget-hovered-31ea:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

.row-lower-9ef4:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

.banner-liquid-659f {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

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

.fixed-f707 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;
}

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

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

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

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

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

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

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

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

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

.gold-170f {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.gold-170f img {
  max-width: 100%;
  height: auto;
  display: block;
}

.gold-170f pre,
.gold-170f code {
  overflow-x: auto;
  max-width: 100%;
}

.gold-170f 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);
}

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

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

.gold-170f p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.gold-170f ul,
.gold-170f ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.gold-170f li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.gold-170f strong {
  font-weight: 600;
  color: var(--color-text);
}

.gold-170f a {
  color: var(--color-primary);
  text-decoration: underline;
}

.gold-170f a:hover {
  color: var(--color-primary-dark);
}

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

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

.hard_8510 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) {
  .light_5108 {
    grid-template-columns: 1fr;
  }
  
  .in-5836 {
    font-size: 1.75rem;
  }
  
  .gold-170f {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .in-5836 {
    font-size: 1.5rem;
  }
  
  .gold-170f h3 {
    font-size: 1.375rem;
  }
  
  .gold-170f h4 {
    font-size: 1.125rem;
  }
}

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

.primary-4ece {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.gas-7204 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.upper-476a {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.small_c61d {
  flex-shrink: 0;
}

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

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

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

.outline-glass-c1a7,
.column_0db8,
.notification-56da {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.outline-glass-c1a7 thead,
.column_0db8 thead {
  background: var(--color-primary);
  color: white;
}

.outline-glass-c1a7 th,
.outline-glass-c1a7 td,
.column_0db8 th,
.column_0db8 td,
.notification-56da th,
.notification-56da td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .outline-glass-c1a7 th,
  .outline-glass-c1a7 td,
  .column_0db8 th,
  .column_0db8 td,
  .notification-56da th,
  .notification-56da td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .outline-glass-c1a7,
  .column_0db8,
  .notification-56da {
    min-width: 600px;
  }
}

.outline-glass-c1a7 th,
.column_0db8 th,
.notification-56da th {
  font-weight: 600;
}

.outline-glass-c1a7 tbody tr:hover,
.column_0db8 tbody tr:hover,
.notification-56da tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.selected-bede h4 {
  color: white;
}

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

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

.stone-d95e:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

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

.complex-1b8a {
  list-style: none;
  padding: 0;
}

.complex-1b8a li {
  padding: var(--space-xs) 0;
}

.bottom_3eef {
  color: #4caf50;
}

.background_bright_45c1 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.section-5b80 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.outline_lower_0648 .dark-f173 {
  width: 100%;
  background: white;
}

.link_8e69 .dark-f173 {
  color: #667eea;
}

.secondary_6156 .dark-f173 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .hidden-8814 {
    padding: var(--space-md);
  }
  
  .backdrop_out_809a {
    padding: var(--space-md);
  }
  
  .border_c9fc {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.west_571e,
.backdrop-over-5e9d,
.narrow-939f,
.left-3690 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.notice-selected-e9ee {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

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

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

.gradient-stone-d4e8 {
  border-color: var(--color-warning);
}

.slider-blue-6e81 {
  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);
}

.alert_first_1f6d .slider-blue-6e81 {
  background: #e8f5e9;
  color: var(--color-success);
}

.gradient-stone-d4e8 .slider-blue-6e81 {
  background: #fff3e0;
  color: var(--color-warning);
}

.outline-static-3d25 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.outline-static-3d25 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

.outline-fe31 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

.image-new-6edc {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

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

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

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

.content-3b85 {
  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);
}

.label_1d1d {
  text-align: center;
}

.easy-d944 {
  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_old_ce0f {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.easy-d944 .thumbnail_3304 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.secondary-south-170b {
  color: var(--color-text-light);
}

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

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

.selected-0d05 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.texture-a143 {
  border: 2px solid #4caf50;
}

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

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

.text-first-485d {
  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;
}

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

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

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

.notification_73e1 {
  text-align: right;
}

.notification_73e1 .caption_f5b4 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

.info-inner-1fdf {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

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

.primary-0666 {
  background: #e3f2fd;
  color: #1565c0;
}

.grid-north-8241 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.thick-48e1 {
  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);
}

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

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

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

.texture-bronze-965a strong {
  color: var(--color-primary);
}

.slider-pro-6f5e {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.picture-next-07e8 {
  text-align: center;
  margin-top: var(--space-xl);
}

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

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

.summary-2ed7 {
  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);
}

.summary-2ed7:hover {
  background: var(--color-bg-alt);
}

.hover-north-133b {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.summary-2ed7[aria-expanded="true"] .hover-north-133b {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .row-yellow-620b {
    grid-template-columns: 1fr;
  }
}

.heading-924a,
.green_92d6 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.heading-924a h4,
.green_92d6 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.heading-924a ul,
.green_92d6 ul {
  list-style: none;
  padding: 0;
}

.heading-924a li,
.green_92d6 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .list-wide-7c16 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

.outline_4e6d {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.background-hot-69e2 {
  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);
}

.background-hot-69e2:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

.background-hot-69e2 h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.background-hot-69e2 p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

.stale_4101 .middle-99f8 {
  color: #4caf50;
  font-size: 0.875rem;
}

.modal-steel-6bdb {
  list-style: none;
  padding: 0;
}

.modal-steel-6bdb li {
  margin-bottom: var(--space-xs);
}

.modal-steel-6bdb a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.modal-steel-6bdb a:hover {
  color: white;
}

.row-right-689b {
  list-style: none;
  padding: 0;
}

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

.row-right-689b a {
  color: #b0b0b0;
  text-decoration: none;
}

.row-right-689b a:hover {
  color: white;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .description_5b0b {
    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;
  }
  
  .advanced_56c3 {
    font-size: 2rem;
  }
  
  .in-5836 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .static_93da,
  .light_5108 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .button_gold_ce6e,
  .orange_5ae6,
  .down_187e,
  .highlight_hard_0946,
  .row-yellow-620b,
  .list-wide-7c16,
  .icon_next_9737,
  .dropdown-liquid-e040 {
    grid-template-columns: 1fr;
  }
  
  .smooth_77ec {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .aside_east_9d0b {
    padding: var(--space-lg) 0;
  }
  
  .fixed-f707 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .fixed-f707 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .dark-f173 {
    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;
  }
  
  .smooth_77ec {
    grid-template-columns: 1fr;
  }
  
  .title_ba94,
  .pink_69d4,
  .media-motion-cac2 {
    flex-direction: column;
    width: 100%;
  }
  
  .basic_26ff,
  .column_7d43,
  .title_ba94 .dark-f173,
  .pink_69d4 .dark-f173 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .advanced_56c3 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .in-5836 {
    font-size: 1.375rem;
  }
  
  .feature_7b87 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .row-lower-9ef4,
  .warm-c1c9,
  .iron-4811,
  .focused_1160,
  .outline-3bd7 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .red_414e {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .aside_9e49 {
    gap: var(--space-xs);
  }
  
  .alert_tiny_6734 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .soft_156e {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .easy-d944 {
    width: 150px;
    height: 150px;
  }
  
  .filter_old_ce0f {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .tabs-8405,
  .nav-wood-2731,
  .title_ba94,
  .blue_7328,
  .mini_79a2,
  .sort_2486,
  .glass_04ee {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .aside_east_9d0b {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 5e20 */
.widget-item-j5 {
  padding: 0.1rem;
  font-size: 12px;
  line-height: 1.3;
}
