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

.block-fdc4:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.tabs_98e1,
header,
.focus_f68f,
.frame-21a5,
.header-complex-ed70,
.hero_83de,
.iron-3acd,
.wrapper-small-1dac,
.middle-8d58 {
  max-width: none;
}

/* 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_98e1 {
  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);
}

.banner-focused-c498 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

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

.hover_easy_2f4f {
  flex: 1;
}

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

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

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

.tiny-d80c.fn-active-b458 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.caption-large-f0ac {
  position: relative;
}

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

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

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

.feature-39c5 {
  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;
}

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

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

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

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

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

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

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

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

.dropdown_bronze_d1bd svg {
  flex-shrink: 0;
}

/* Header Download Button */
.purple-785a {
  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;
}

.purple-785a: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);
}

.purple-785a svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .hover_easy_2f4f {
    display: none;
  }
  
  .carousel_1ea8 {
    display: flex;
  }
  
  .green_8e89 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .dropdown_bronze_d1bd,
  .purple-785a {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .caption-large-f0ac {
    position: relative;
  }
  
  .feature-39c5 {
    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;
  }
  
  .upper_0fdc[aria-expanded="true"] + .feature-39c5 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .steel_601c {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .component_focused_5160 {
    gap: 8px;
  }
  
  .dropdown_bronze_d1bd {
    display: none;
  }
  
  .purple-785a {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .image_smooth_10d7 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.title_c01c svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.heading-hovered-4cf5 {
  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;
}

.stale-80ba {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stale-80ba strong {
  font-weight: 600;
  color: var(--color-text);
}

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

.breadcrumb-dirty-c52e {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.widget-4a9d {
  position: relative;
  text-align: center;
}

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

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

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

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

.form-small-639c {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

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

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

@media (max-width: 968px) {
  .simple_878f {
    grid-template-columns: 1fr;
  }
  
  .element_rough_a19e {
    font-size: 1.75rem;
  }
  
  .gallery_middle_5be0 {
    order: -1;
    max-width: 100%;
  }
  
  .widget-4a9d {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .element_rough_a19e {
    font-size: 1.5rem;
  }
  
  .block-dc0b {
    font-size: 1rem;
  }
  
  .cool_a9b1 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .widget-4a9d {
    max-width: 250px;
  }
}

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

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

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

.row-wide-4eb7 {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.row-wide-4eb7:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.link-right-8e2d {
  list-style: none;
  counter-reset: toc-counter;
}

.link-right-8e2d li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.link-right-8e2d 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);
}

.link-right-8e2d 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;
}

.link-right-8e2d li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

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

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

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

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

.first-1d91 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slider-under-440f {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.slider-under-440f 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) {
  .layout_inner_5641 {
    grid-template-columns: 1fr;
  }
  
  .first-1d91 {
    font-size: 1.75rem;
  }
  
  .container_short_0161 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .first-1d91 {
    font-size: 1.5rem;
  }
  
  .container_short_0161 h3 {
    font-size: 1.375rem;
  }
  
  .container_short_0161 h4 {
    font-size: 1.125rem;
  }
}

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

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

.wood-ed72 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.white-63e7 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.medium-1fa8 {
  flex-shrink: 0;
}

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

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

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

.status-lite-3a0f,
.pressed_fd1c,
.border_full_b241 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.status-lite-3a0f thead,
.pressed_fd1c thead {
  background: var(--color-primary);
  color: white;
}

.status-lite-3a0f th,
.status-lite-3a0f td,
.pressed_fd1c th,
.pressed_fd1c td,
.border_full_b241 th,
.border_full_b241 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .status-lite-3a0f th,
  .status-lite-3a0f td,
  .pressed_fd1c th,
  .pressed_fd1c td,
  .border_full_b241 th,
  .border_full_b241 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .status-lite-3a0f,
  .pressed_fd1c,
  .border_full_b241 {
    min-width: 600px;
  }
}

.status-lite-3a0f th,
.pressed_fd1c th,
.border_full_b241 th {
  font-weight: 600;
}

.status-lite-3a0f tbody tr:hover,
.pressed_fd1c tbody tr:hover,
.border_full_b241 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.soft_4ea9 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

.title-3e01 {
  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);
}

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

.detail-117e {
  font-weight: 600;
  color: white;
}

.overlay-85d1 {
  list-style: none;
  padding: 0;
}

.overlay-85d1 li {
  padding: var(--space-xs) 0;
}

.link-4e2c {
  color: #4caf50;
}

.row-d85e {
  color: #ff9800;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .hidden-east-52a5 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

.header-first-5bf9 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

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

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

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

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

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

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

.hidden-6f6b {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.liquid_1a0f .summary_active_edc0 {
  width: 100%;
  background: white;
}

.alert-current-e238 .summary_active_edc0 {
  color: #667eea;
}

.steel-f815 .summary_active_edc0 {
  color: #f5576c;
}

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

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

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

.tiny-2db1 {
  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);
}

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

.left-43e5 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .south_2b2e {
    padding: var(--space-md);
  }
  
  .left-43e5 {
    padding: var(--space-md);
  }
  
  .title_a08e {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.shade_middle_5416,
.content_f88a,
.notification-99cb,
.prev_6e77 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.content-north-25df {
  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) {
  .content-north-25df {
    font-size: 0.625rem;
  }
}

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

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

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

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

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

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

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

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

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

.hero-mini-4139 {
  border-color: var(--color-success);
}

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

.container-wood-27b4 {
  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);
}

.hero-mini-4139 .container-wood-27b4 {
  background: #e8f5e9;
  color: var(--color-success);
}

.text_hard_6762 .container-wood-27b4 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.box-upper-5140 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.next-96b2 {
  margin-top: var(--space-xxl);
}

.notification-1ad7 {
  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);
}

.out-48ee {
  text-align: center;
}

.silver-9eb5 {
  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);
}

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

.silver-9eb5 .detail-117e {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.chip-white-37d1 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer-9e14 {
  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;
}

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

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

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

.content-4f28 {
  text-align: right;
}

.content-4f28 .carousel_72da {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.preview-ba4f {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

.section-mini-843b strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

.caption-hard-5895 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.highlight_lower_fd48[aria-expanded="true"] .caption-hard-5895 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.hot-5f03 {
  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);
}

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

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

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

.item-cad3,
.progress_next_f084 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.item-cad3 h4,
.progress_next_f084 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.item-cad3 ul,
.progress_next_f084 ul {
  list-style: none;
  padding: 0;
}

.item-cad3 li,
.progress_next_f084 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.fluid-50e6 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Footer variant: footer-content (subpages) */
.breadcrumb-7d67 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.popup-right-c0cd {
  list-style: none;
  padding: 0;
  margin: 0;
}

.popup-right-c0cd li {
  margin-bottom: var(--space-xs);
}

.popup-right-c0cd a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.popup-right-c0cd a:hover {
  color: white;
}

.mini-a325 {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.mini-a325 a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid #424242;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.mini-a325 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.carousel_7755 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.carousel_7755 a {
  color: #808080;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.carousel_7755 a:hover {
  color: white;
}

.last-fb1f > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

@media (max-width: 768px) {
  .narrow-8c68,
  .breadcrumb-7d67 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.in_397b .up_0d33 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.section_f632 a:hover {
  color: white;
}

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

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

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

.icon_b7e2 a:hover {
  color: white;
}

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

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

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

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

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

.texture_0ea9 a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.texture_0ea9 a:hover {
  color: white;
}

/* Element selectors: survive CMS class obfuscation on deploy */
footer > div > div:last-child > div:last-child a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

footer > div > div:last-child > div:last-child a:hover {
  color: white;
}

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

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

@media (max-width: 768px) {
  .last-fb1f {
    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;
  }
  
  .element_rough_a19e {
    font-size: 2rem;
  }
  
  .first-1d91 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .simple_878f,
  .layout_inner_5641 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .hidden-east-52a5,
  .up-26ef,
  .widget-cool-c49a,
  .outline_center_8a43,
  .button-795f,
  .hidden-black-d691,
  .paper-4c0c,
  .narrow-8c68,
  .breadcrumb-7d67 {
    grid-template-columns: 1fr;
  }
  
  .west_74a0 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .iron-3acd {
    padding: var(--space-lg) 0;
  }
  
  .link-right-8e2d li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .link-right-8e2d li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .summary_active_edc0 {
    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;
  }
  
  .west_74a0 {
    grid-template-columns: 1fr;
  }
  
  .breadcrumb-dirty-c52e,
  .stone_5b84,
  .item_advanced_b93d {
    flex-direction: column;
    width: 100%;
  }
  
  .tooltip_outer_ea47,
  .black_a6fb,
  .breadcrumb-dirty-c52e .summary_active_edc0,
  .stone_5b84 .summary_active_edc0 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .element_rough_a19e {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .first-1d91 {
    font-size: 1.375rem;
  }
  
  .lower_338e {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .input_next_b331,
  .shade-1b42,
  .table-c029,
  .lite-408b,
  .status_02a3 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .content-north-25df {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .widget_light_6912 {
    gap: var(--space-xs);
  }
  
  .title_c01c {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .title-3e01 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .silver-9eb5 {
    width: 150px;
    height: 150px;
  }
  
  .label_fb71 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .tabs_98e1,
  .focus_f68f,
  .breadcrumb-dirty-c52e,
  .element_tall_2100,
  .wrapper-small-1dac,
  .middle-8d58,
  .carousel_1ea8 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .iron-3acd {
    page-break-inside: avoid;
  }
}

/* css-noise: 8c7c */
.phantom-card-b2 {
  padding: 0.4rem;
  font-size: 13px;
  line-height: 1.3;
}
