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

.dim-2c03:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.next_6c15,
header,
.badge-57c0,
.label-focused-d594,
.card_2fa5,
.detail_small_ad7b,
.overlay-46a1,
.plasma_4e58,
.tiny_09d6 {
  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
   ============================================ */
.next_6c15 {
  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);
}

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

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

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

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

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

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

.container-light-1107 {
  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;
}

.paragraph_8557 {
  flex: 1;
}

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

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

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

.dirty_69e9.fn-active-b69d {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.widget-thick-3cca {
  position: relative;
}

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

.bottom-2bd5 svg {
  transition: transform 0.2s ease;
}

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

.input-rough-a24d {
  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;
}

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

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

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

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

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

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

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

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

.progress-new-b26c svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .paragraph_8557 {
    display: none;
  }
  
  .shadow_current_591f {
    display: flex;
  }
  
  .container-light-1107 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .progress-new-b26c,
  .item_lite_1e05 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .widget-thick-3cca {
    position: relative;
  }
  
  .input-rough-a24d {
    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;
  }
  
  .bottom-2bd5[aria-expanded="true"] + .input-rough-a24d {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .label_first_59af {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .image_baf5 {
    gap: 8px;
  }
  
  .progress-new-b26c {
    display: none;
  }
  
  .item_lite_1e05 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .block_6c9b img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.last_6594 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

.border-liquid-07bd {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

.label-pro-c4b8 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.label-pro-c4b8 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

.hover-53fe {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.out-cde5 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .tertiary_5c5d {
    grid-template-columns: 1fr;
  }
  
  .narrow_2bc7 {
    font-size: 1.75rem;
  }
  
  .highlight_4167 {
    order: -1;
    max-width: 100%;
  }
  
  .out-cde5 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .narrow_2bc7 {
    font-size: 1.5rem;
  }
  
  .footer_7380 {
    font-size: 1rem;
  }
  
  .solid_e2ed {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .out-cde5 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.mask-cold-38fa {
  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_1aeb {
  background: var(--color-primary);
  color: white;
}

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

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

.current-9fea:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.wide-15b1 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.list-cbbc 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;
}

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

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

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

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

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

.list-soft-2f14 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.wrapper-smooth-1319 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.wrapper-smooth-1319 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) {
  .title_d1d8 {
    grid-template-columns: 1fr;
  }
  
  .list-soft-2f14 {
    font-size: 1.75rem;
  }
  
  .block_13c9 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .list-soft-2f14 {
    font-size: 1.5rem;
  }
  
  .block_13c9 h3 {
    font-size: 1.375rem;
  }
  
  .block_13c9 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

.list-brown-64c8 strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

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

.inner-0bdd {
  flex-shrink: 0;
}

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

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

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

.background_left_a8db,
.form-brown-6423,
.secondary_668a {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.background_left_a8db thead,
.form-brown-6423 thead {
  background: var(--color-primary);
  color: white;
}

.background_left_a8db th,
.background_left_a8db td,
.form-brown-6423 th,
.form-brown-6423 td,
.secondary_668a th,
.secondary_668a td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .background_left_a8db th,
  .background_left_a8db td,
  .form-brown-6423 th,
  .form-brown-6423 td,
  .secondary_668a th,
  .secondary_668a td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .background_left_a8db,
  .form-brown-6423,
  .secondary_668a {
    min-width: 600px;
  }
}

.background_left_a8db th,
.form-brown-6423 th,
.secondary_668a th {
  font-weight: 600;
}

.background_left_a8db tbody tr:hover,
.form-brown-6423 tbody tr:hover,
.secondary_668a tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.form-83a4 h4 {
  color: white;
}

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

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

.motion-fd39:last-child {
  border-bottom: none;
}

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

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

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

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

.hidden-prev-db18:hover {
  text-decoration: underline;
}

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

.orange-92d9 {
  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);
}

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

.lite-f347 {
  font-weight: 600;
  color: white;
}

.preview-hot-2413 {
  list-style: none;
  padding: 0;
}

.preview-hot-2413 li {
  padding: var(--space-xs) 0;
}

.shade-east-5857 {
  color: #4caf50;
}

.element_78e0 {
  color: #ff9800;
}

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

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

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

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

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

.row-tall-26ee {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.block-b027 .mask-cold-38fa {
  width: 100%;
  background: white;
}

.top_de43 .mask-cold-38fa {
  color: #667eea;
}

.fluid_b861 .mask-cold-38fa {
  color: #f5576c;
}

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

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

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

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

.container-orange-e898 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .container-orange-e898 {
    padding: var(--space-md);
  }
  
  .pattern-f95d {
    padding: var(--space-md);
  }
  
  .button-3274 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.video-fast-4269 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.heading-c53b,
.feature-ee60,
.tabs_29d0,
.hot-eec6 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.pagination-steel-718e:hover {
  background: var(--color-primary-dark);
}

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

.frame-pink-933f h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

.hero-4dd5 {
  border-color: var(--color-warning);
}

.banner-white-01d5 {
  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);
}

.avatar_7a26 .banner-white-01d5 {
  background: #e8f5e9;
  color: var(--color-success);
}

.hero-4dd5 .banner-white-01d5 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

.focus-red-61cc {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.tooltip-748c {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.form-fluid-b3c6 {
  text-align: center;
}

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

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

.filter_bottom_0c7c .lite-f347 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.overlay-236d p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.backdrop-old-0cd8 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

.hidden-outer-98b7 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

.breadcrumb-24f7 {
  border: 2px solid #4caf50;
}

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

.frame-silver-02cc {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.west-6f2f {
  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;
}

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

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

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

.primary_slow_74fe {
  text-align: right;
}

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

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

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

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

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

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

.focused-2722 {
  background: #e8f5e9;
  color: #2e7d32;
}

.search-wood-77a1 {
  background: #e3f2fd;
  color: #1565c0;
}

.last-efa1 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

.right-6cb5:hover {
  background: var(--color-bg-alt);
}

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

.right-6cb5[aria-expanded="true"] .secondary-4579 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.copper-a88b,
.tertiary_f9e0 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.copper-a88b h4,
.tertiary_f9e0 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.copper-a88b ul,
.tertiary_f9e0 ul {
  list-style: none;
  padding: 0;
}

.copper-a88b li,
.tertiary_f9e0 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

.content-clean-35a5 {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

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

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

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

.highlight-be0d {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.primary-prev-00d6 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.primary-prev-00d6 .bright_3d6a {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.photo_liquid_de19 a:hover {
  color: white;
}

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

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

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

.solid_1077 a:hover {
  color: white;
}

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

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

.chip-cool-d29e a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

.plasma-6312:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .accordion_ff0d {
    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;
  }
  
  .narrow_2bc7 {
    font-size: 2rem;
  }
  
  .list-soft-2f14 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .tertiary_5c5d,
  .title_d1d8 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .row_west_2448,
  .element-small-3710,
  .summary_94f8,
  .thumbnail-large-26b4,
  .notice_gas_a54b,
  .dynamic_6d64,
  .small_9d21,
  .shadow-e331 {
    grid-template-columns: 1fr;
  }
  
  .detail_motion_c469 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .overlay-46a1 {
    padding: var(--space-lg) 0;
  }
  
  .list-cbbc li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .list-cbbc li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .mask-cold-38fa {
    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;
  }
  
  .detail_motion_c469 {
    grid-template-columns: 1fr;
  }
  
  .hover-53fe,
  .label_5bed,
  .column-tiny-feeb {
    flex-direction: column;
    width: 100%;
  }
  
  .wide-15b1,
  .search_fresh_ea6d,
  .hover-53fe .mask-cold-38fa,
  .label_5bed .mask-cold-38fa {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .narrow_2bc7 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .list-soft-2f14 {
    font-size: 1.375rem;
  }
  
  .thumbnail-6765 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .menu_10eb,
  .east-690e,
  .component-narrow-f921,
  .focus-54d0,
  .orange_b596 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .hero-outer-9526 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .easy-b55c {
    gap: var(--space-xs);
  }
  
  .last_6594 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .orange-92d9 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .filter_bottom_0c7c {
    width: 150px;
    height: 150px;
  }
  
  .preview_top_1a69 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .next_6c15,
  .badge-57c0,
  .hover-53fe,
  .focused-aa51,
  .plasma_4e58,
  .tiny_09d6,
  .shadow_current_591f {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .overlay-46a1 {
    page-break-inside: avoid;
  }
}

/* css-noise: 2302 */
.widget-item-d2 {
  padding: 0.3rem;
  font-size: 12px;
  line-height: 1.2;
}
