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

.selected_d639:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.paper_2599,
header,
.backdrop-bottom-67aa,
.current-0161,
.action_3723,
.background-b507,
.hero-e81d,
.hidden_static_5e40,
.chip_hot_61d4 {
  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
   ============================================ */
.paper_2599 {
  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);
}

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

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

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

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

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

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

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

.over_8ce4 {
  flex: 1;
}

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

.fresh-9b83 {
  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);
}

.fresh-9b83:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.fresh-9b83.fn-active-d1de {
  background: var(--color-primary);
  color: white;
}

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

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

.texture-1b22 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.mask-last-7e4b svg {
  flex-shrink: 0;
}

/* Header Download Button */
.easy-d294 {
  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;
}

.easy-d294: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);
}

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

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

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

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

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

.tooltip-brown-bf92[aria-expanded="true"] .panel_c10b:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .over_8ce4 {
    display: none;
  }
  
  .tooltip-brown-bf92 {
    display: flex;
  }
  
  .heading_bc96 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .mask-last-7e4b,
  .easy-d294 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .media_dirty_d12a {
    position: relative;
  }
  
  .iron-c9ee {
    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;
  }
  
  .texture-1b22[aria-expanded="true"] + .iron-c9ee {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .detail_1366 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .black-413f {
    gap: 8px;
  }
  
  .mask-last-7e4b {
    display: none;
  }
  
  .easy-d294 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .main_next_a9e6 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .easy-d294 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .easy-d294 svg {
    width: 14px;
    height: 14px;
  }
  
  .highlight-94dc {
    gap: var(--space-sm);
  }
}

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

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

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

.pressed-a7e6 svg {
  flex-shrink: 0;
}

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

.pressed-a7e6 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.accent-basic-8944 {
  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;
}

.cool-1b65 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cool-1b65 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

.section-out-919a {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .carousel-f8e3 {
    grid-template-columns: 1fr;
  }
  
  .plasma_56f2 {
    font-size: 1.75rem;
  }
  
  .section-out-919a {
    order: -1;
    max-width: 100%;
  }
  
  .tabs_7619 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .plasma_56f2 {
    font-size: 1.5rem;
  }
  
  .frame-advanced-ec28 {
    font-size: 1rem;
  }
  
  .layout_bottom_71e8 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .tabs_7619 {
    max-width: 250px;
  }
}

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

.nav-under-9547 {
  background: var(--color-primary);
  color: white;
}

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

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

.logo-042b:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.pattern-52c4 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.liquid-69e7 {
  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);
}

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

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

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

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

.border-dynamic-985d {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.border-dynamic-985d img {
  max-width: 100%;
  height: auto;
  display: block;
}

.border-dynamic-985d pre,
.border-dynamic-985d code {
  overflow-x: auto;
  max-width: 100%;
}

.border-dynamic-985d 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);
}

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

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

.border-dynamic-985d p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.border-dynamic-985d ul,
.border-dynamic-985d ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.border-dynamic-985d li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.border-dynamic-985d strong {
  font-weight: 600;
  color: var(--color-text);
}

.border-dynamic-985d a {
  color: var(--color-primary);
  text-decoration: underline;
}

.border-dynamic-985d a:hover {
  color: var(--color-primary-dark);
}

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

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

.tertiary_east_1a78 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) {
  .label-out-d48c {
    grid-template-columns: 1fr;
  }
  
  .logo-bfbd {
    font-size: 1.75rem;
  }
  
  .border-dynamic-985d {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .logo-bfbd {
    font-size: 1.5rem;
  }
  
  .border-dynamic-985d h3 {
    font-size: 1.375rem;
  }
  
  .border-dynamic-985d h4 {
    font-size: 1.125rem;
  }
}

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

.pattern-over-3736 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.hovered-45ad {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.shade-easy-8e8e {
  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;
}

.list-cba9 {
  flex-shrink: 0;
}

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

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

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

.advanced_1cae,
.focus_south_3c00,
.container-310b {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.advanced_1cae thead,
.focus_south_3c00 thead {
  background: var(--color-primary);
  color: white;
}

.advanced_1cae th,
.advanced_1cae td,
.focus_south_3c00 th,
.focus_south_3c00 td,
.container-310b th,
.container-310b td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .advanced_1cae th,
  .advanced_1cae td,
  .focus_south_3c00 th,
  .focus_south_3c00 td,
  .container-310b th,
  .container-310b td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .advanced_1cae,
  .focus_south_3c00,
  .container-310b {
    min-width: 600px;
  }
}

.advanced_1cae th,
.focus_south_3c00 th,
.container-310b th {
  font-weight: 600;
}

.advanced_1cae tbody tr:hover,
.focus_south_3c00 tbody tr:hover,
.container-310b tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.alert-down-b925 h4 {
  color: white;
}

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

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

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

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

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

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

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

.row-large-9431:hover {
  text-decoration: underline;
}

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

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

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

.south-e197 {
  font-weight: 600;
  color: white;
}

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

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

.accordion-5b48 {
  color: #4caf50;
}

.west_dae7 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.backdrop-clean-3b67 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

.footer-thick-764d {
  margin-top: var(--space-xxl);
}

.footer-thick-764d h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

.west-338f .popup_yellow_9a41 {
  width: 100%;
  background: white;
}

.info-fast-1f8d .popup_yellow_9a41 {
  color: #667eea;
}

.surface-fc71 .popup_yellow_9a41 {
  color: #f5576c;
}

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

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

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

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

.disabled-complex-1c30 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.hard-70eb {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .disabled-complex-1c30 {
    padding: var(--space-md);
  }
  
  .hard-70eb {
    padding: var(--space-md);
  }
  
  .header_pro_c40d {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.texture-prev-16d3,
.dropdown_iron_8db5,
.full-9619,
.huge-b0e2 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.sort-fast-dcea {
  border-color: var(--color-success);
}

.iron-246c {
  border-color: var(--color-warning);
}

.link-pressed-a339 {
  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);
}

.sort-fast-dcea .link-pressed-a339 {
  background: #e8f5e9;
  color: var(--color-success);
}

.iron-246c .link-pressed-a339 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dropdown_green_89fb {
  text-align: center;
}

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

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

.right-bd69 .south-e197 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.footer-9b20 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.sidebar-0fb6 {
  margin-bottom: var(--space-xl);
}

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

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

.label-8d22 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

.container-copper-46b7 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

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

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

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

.secondary-prev-f5e9 {
  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;
}

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

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

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

.outline_c27f {
  text-align: right;
}

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

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

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

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

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

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

.basic-02c6 {
  background: #e8f5e9;
  color: #2e7d32;
}

.wide-2031 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.pattern-stale-61fd {
  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);
}

.pattern-stale-61fd:hover {
  background: var(--color-bg-alt);
}

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

.pattern-stale-61fd[aria-expanded="true"] .layout_4ab6 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.primary-liquid-351a {
  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);
}

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

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

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

.logo_332b,
.pressed-757f {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.logo_332b h4,
.pressed-757f h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.logo_332b ul,
.pressed-757f ul {
  list-style: none;
  padding: 0;
}

.logo_332b li,
.pressed-757f li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .section-fluid-72cb {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

.secondary_pressed_866d {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.thick-926b {
  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);
}

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

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

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

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

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

.message-784c {
  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-784c {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.box_8fea .breadcrumb_prev_5fc7 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.steel_93c7 a:hover {
  color: white;
}

.pressed-c888 {
  list-style: none;
  padding: 0;
}

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

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

.pressed-c888 a:hover {
  color: white;
}

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

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

.prev-8bdc a {
  color: #4caf50;
  text-decoration: none;
}

.dark-38dc {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.modal-out-cf68:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .highlight_under_307b {
    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;
  }
  
  .plasma_56f2 {
    font-size: 2rem;
  }
  
  .logo-bfbd {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .carousel-f8e3,
  .label-out-d48c {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .content_selected_4f76,
  .fresh-a718,
  .description_west_a716,
  .hero_cce0,
  .notification-a65f,
  .section-fluid-72cb,
  .thick_c6ab,
  .message-784c {
    grid-template-columns: 1fr;
  }
  
  .center_c8d5 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .hero-e81d {
    padding: var(--space-lg) 0;
  }
  
  .wood-f09b li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .wood-f09b li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .popup_yellow_9a41 {
    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;
  }
  
  .center_c8d5 {
    grid-template-columns: 1fr;
  }
  
  .cool_b81b,
  .paper-b23b,
  .border-lite-e14f {
    flex-direction: column;
    width: 100%;
  }
  
  .pattern-52c4,
  .stone_6b1f,
  .cool_b81b .popup_yellow_9a41,
  .paper-b23b .popup_yellow_9a41 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .plasma_56f2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .logo-bfbd {
    font-size: 1.375rem;
  }
  
  .link-662a {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .module_tall_0605,
  .outline_83da,
  .background_4d9f,
  .steel_5ef5,
  .form_dd6d {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .steel-097d {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .item-hard-6612 {
    gap: var(--space-xs);
  }
  
  .pressed-a7e6 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .icon_8ee2 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .right-bd69 {
    width: 150px;
    height: 150px;
  }
  
  .medium_d58c {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .paper_2599,
  .backdrop-bottom-67aa,
  .cool_b81b,
  .button-f879,
  .hidden_static_5e40,
  .chip_hot_61d4,
  .tooltip-brown-bf92 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .hero-e81d {
    page-break-inside: avoid;
  }
}

/* css-noise: 90aa */
.promo-block-h7 {
  padding: 0.5rem;
  font-size: 10px;
  line-height: 1.2;
}
