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

.red-3a0c:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.hard_f356,
header,
.button_c613,
.stone-80c8,
.pro_942f,
.up_98e4,
.full_dc4b,
.aside-feae,
.notification-77af {
  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
   ============================================ */
.hard_f356 {
  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);
}

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

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

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

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

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

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

.steel-6ed3 {
  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;
}

.icon-9795 {
  flex: 1;
}

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

.image-brown-b3fc {
  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);
}

.image-brown-b3fc:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.image-brown-b3fc.fn-active-cc3c {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

.aside-bronze-09ab {
  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;
}

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

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

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

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

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

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

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

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

.frame-lite-f4fb svg {
  flex-shrink: 0;
}

/* Header Download Button */
.component-green-49dd {
  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;
}

.component-green-49dd: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);
}

.component-green-49dd svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.prev-71cb[aria-expanded="true"] .image-selected-b550:nth-child(2) {
  opacity: 0;
}

.prev-71cb[aria-expanded="true"] .image-selected-b550:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .icon-9795::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .icon-9795.modal_silver_7430 {
    display: block;
    right: 0;
  }
  
  .module-c59b {
    flex-direction: column;
    gap: 0;
  }
  
  .image-brown-b3fc {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .icon-9795::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;
  }
  
  .icon-9795.modal_silver_7430::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .icon-9795 {
    display: none;
  }
  
  .prev-71cb {
    display: flex;
  }
  
  .steel-6ed3 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .frame-lite-f4fb,
  .component-green-49dd {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .pattern_c133 {
    position: relative;
  }
  
  .aside-bronze-09ab {
    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;
  }
  
  .progress_upper_31d0[aria-expanded="true"] + .aside-bronze-09ab {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .breadcrumb_wood_8b90 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .grid_889c {
    gap: 8px;
  }
  
  .frame-lite-f4fb {
    display: none;
  }
  
  .component-green-49dd {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .list_a541 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .component-green-49dd {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .component-green-49dd svg {
    width: 14px;
    height: 14px;
  }
  
  .layout-1018 {
    gap: var(--space-sm);
  }
}

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

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

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

.fresh_d656 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.list-b584 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

.hard-88ca {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .wide-5aed {
    grid-template-columns: 1fr;
  }
  
  .center_0660 {
    font-size: 1.75rem;
  }
  
  .hard-88ca {
    order: -1;
    max-width: 100%;
  }
  
  .background_d67e {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .center_0660 {
    font-size: 1.5rem;
  }
  
  .footer-plasma-ada0 {
    font-size: 1rem;
  }
  
  .list-b584 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .background_d67e {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.card-down-9192 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.card-down-9192 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);
}

.card-down-9192 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;
}

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

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

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

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

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

.secondary-40a0 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.accent_middle_12ed 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) {
  .pattern_3e0a {
    grid-template-columns: 1fr;
  }
  
  .secondary-40a0 {
    font-size: 1.75rem;
  }
  
  .hard-c643 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .secondary-40a0 {
    font-size: 1.5rem;
  }
  
  .hard-c643 h3 {
    font-size: 1.375rem;
  }
  
  .hard-c643 h4 {
    font-size: 1.125rem;
  }
}

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

.banner-selected-d6de {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.huge-2071 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.menu-2f28 {
  flex-shrink: 0;
}

.table-simple-5a0c strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

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

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

.header_smooth_9f67,
.middle_a6e6,
.dropdown-wide-5de0 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.header_smooth_9f67 thead,
.middle_a6e6 thead {
  background: var(--color-primary);
  color: white;
}

.header_smooth_9f67 th,
.header_smooth_9f67 td,
.middle_a6e6 th,
.middle_a6e6 td,
.dropdown-wide-5de0 th,
.dropdown-wide-5de0 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .header_smooth_9f67 th,
  .header_smooth_9f67 td,
  .middle_a6e6 th,
  .middle_a6e6 td,
  .dropdown-wide-5de0 th,
  .dropdown-wide-5de0 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .header_smooth_9f67,
  .middle_a6e6,
  .dropdown-wide-5de0 {
    min-width: 600px;
  }
}

.header_smooth_9f67 th,
.middle_a6e6 th,
.dropdown-wide-5de0 th {
  font-weight: 600;
}

.header_smooth_9f67 tbody tr:hover,
.middle_a6e6 tbody tr:hover,
.dropdown-wide-5de0 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

.disabled-soft-8d5f {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
}

.disabled-soft-8d5f h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

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

.pattern-4980 h4 {
  color: white;
}

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

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

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

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

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

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

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

.hard-66c1:hover {
  text-decoration: underline;
}

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

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

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

.tall-b862 {
  font-weight: 600;
  color: white;
}

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

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

.pink-60f3 {
  color: #4caf50;
}

.full-68fa {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

.filter-slow-10c1:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.filter-slow-10c1 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

.backdrop-prev-d7fb {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.west-774e .box-dirty-eaa3 {
  width: 100%;
  background: white;
}

.gold-c5d1 .box-dirty-eaa3 {
  color: #667eea;
}

.pagination_bottom_24bb .box-dirty-eaa3 {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.container-first-56fe {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

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

@media (max-width: 768px) {
  .full-a463 {
    padding: var(--space-md);
  }
  
  .item-9705 {
    padding: var(--space-md);
  }
  
  .label-ea06 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.form_d93e,
.progress_bright_b858,
.detail_1048,
.nav-full-8ff0 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.avatar-basic-223d {
  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) {
  .avatar-basic-223d {
    font-size: 0.625rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

.menu-mini-6954 {
  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);
}

.chip_43dc .menu-mini-6954 {
  background: #e8f5e9;
  color: var(--color-success);
}

.fast-bc1a .menu-mini-6954 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.tooltip-dark-4990 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.action_23d4 {
  text-align: center;
}

.chip-outer-058f {
  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);
}

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

.chip-outer-058f .tall-b862 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.panel-76bf {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.prev-0159 {
  text-align: right;
}

.prev-0159 .content_top_8885 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.focus-yellow-40b1 {
  background: #e8f5e9;
  color: #2e7d32;
}

.thick-f2e2 {
  background: #e3f2fd;
  color: #1565c0;
}

.search-complex-903e {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.info-simple-f6a5 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.hovered-ed0a[aria-expanded="true"] .info-simple-f6a5 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.text-blue-40e5,
.badge-old-2832 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.text-blue-40e5 h4,
.badge-old-2832 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.text-blue-40e5 ul,
.badge-old-2832 ul {
  list-style: none;
  padding: 0;
}

.text-blue-40e5 li,
.badge-old-2832 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.sort-narrow-62bf {
  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);
}

.grid-e365 {
  font-style: italic;
}

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

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

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

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

.panel-basic-7bc4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fast-dcbf .photo_tall_d5e4 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.static_72a6 a:hover {
  color: white;
}

.description-inner-0296 {
  list-style: none;
  padding: 0;
}

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

.description-inner-0296 a {
  color: #b0b0b0;
  text-decoration: none;
}

.description-inner-0296 a:hover {
  color: white;
}

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

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

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

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

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

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

.fixed-82ac:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .column_selected_5dc3 {
    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;
  }
  
  .center_0660 {
    font-size: 2rem;
  }
  
  .secondary-40a0 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .wide-5aed,
  .pattern_3e0a {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .south_bcde,
  .main-motion-214f,
  .west_f52a,
  .summary_b1d3,
  .medium-e280,
  .iron-8a68,
  .badge-601b,
  .message_left_2cb8 {
    grid-template-columns: 1fr;
  }
  
  .hovered_144f {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .full_dc4b {
    padding: var(--space-lg) 0;
  }
  
  .card-down-9192 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .card-down-9192 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .box-dirty-eaa3 {
    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;
  }
  
  .hovered_144f {
    grid-template-columns: 1fr;
  }
  
  .component-e536,
  .panel-basic-7bc4,
  .south-6134 {
    flex-direction: column;
    width: 100%;
  }
  
  .texture_71e0,
  .rough_61e8,
  .component-e536 .box-dirty-eaa3,
  .panel-basic-7bc4 .box-dirty-eaa3 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .center_0660 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .secondary-40a0 {
    font-size: 1.375rem;
  }
  
  .section_small_217e {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .green-f38f,
  .filter-slow-10c1,
  .disabled-soft-8d5f,
  .content_slow_367a,
  .secondary-1e15 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .avatar-basic-223d {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .active-wood-e331 {
    gap: var(--space-xs);
  }
  
  .fresh_d656 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .article_2f8b {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .chip-outer-058f {
    width: 150px;
    height: 150px;
  }
  
  .middle_cc27 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .hard_f356,
  .button_c613,
  .component-e536,
  .title_bfae,
  .aside-feae,
  .notification-77af,
  .prev-71cb {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .full_dc4b {
    page-break-inside: avoid;
  }
}

/* css-noise: 8524 */
.widget-item-a0 {
  padding: 0.4rem;
  font-size: 12px;
  line-height: 1.0;
}
