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

.first_3b23:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.paper-f382,
header,
.liquid-b187,
.popup-clean-fc95,
.south-f77e,
.block_ddfd,
.smooth_36f1,
.wrapper_over_235a,
.black-f80f {
  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-f382 {
  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);
}

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

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

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

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

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

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

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

.content_yellow_6877 {
  flex: 1;
}

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

.shadow-static-1870 {
  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);
}

.shadow-static-1870:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.shadow-static-1870.fn-active-7472 {
  background: var(--color-primary);
  color: white;
}

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

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

.disabled-60db svg {
  transition: transform 0.2s ease;
}

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

.logo-gold-c77a {
  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;
}

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

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

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

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

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

.photo-wood-4d0c {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.primary-60d1 svg {
  flex-shrink: 0;
}

/* Header Download Button */
.primary-steel-33f2 {
  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;
}

.primary-steel-33f2: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);
}

.primary-steel-33f2 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .content_yellow_6877 {
    display: none;
  }
  
  .picture_copper_928e {
    display: flex;
  }
  
  .purple_16e0 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .primary-60d1,
  .primary-steel-33f2 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .easy_0e9e {
    position: relative;
  }
  
  .logo-gold-c77a {
    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;
  }
  
  .disabled-60db[aria-expanded="true"] + .logo-gold-c77a {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .surface_8e13 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .photo-wood-4d0c {
    gap: 8px;
  }
  
  .primary-60d1 {
    display: none;
  }
  
  .primary-steel-33f2 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .under_ace8 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.static-defe svg {
  flex-shrink: 0;
}

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

.static-defe a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.item-prev-52fb {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.image-new-4844 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .chip-82e3 {
    grid-template-columns: 1fr;
  }
  
  .backdrop_c9a2 {
    font-size: 1.75rem;
  }
  
  .chip_copper_0a66 {
    order: -1;
    max-width: 100%;
  }
  
  .image-new-4844 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .backdrop_c9a2 {
    font-size: 1.5rem;
  }
  
  .highlight_upper_52d7 {
    font-size: 1rem;
  }
  
  .hover_5ed4 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .image-new-4844 {
    max-width: 250px;
  }
}

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

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

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

.header-complex-139f {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.header-complex-139f:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.main-4d32 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

.pagination-paper-ccde {
  list-style: none;
  counter-reset: toc-counter;
}

.pagination-paper-ccde li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.pagination-paper-ccde 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);
}

.pagination-paper-ccde 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;
}

.pagination-paper-ccde li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

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

.column-gold-8973 {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

.alert-west-66bb {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.alert-west-66bb img {
  max-width: 100%;
  height: auto;
  display: block;
}

.alert-west-66bb pre,
.alert-west-66bb code {
  overflow-x: auto;
  max-width: 100%;
}

.alert-west-66bb 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);
}

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

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

.alert-west-66bb p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.alert-west-66bb ul,
.alert-west-66bb ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.alert-west-66bb li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.alert-west-66bb strong {
  font-weight: 600;
  color: var(--color-text);
}

.alert-west-66bb a {
  color: var(--color-primary);
  text-decoration: underline;
}

.alert-west-66bb a:hover {
  color: var(--color-primary-dark);
}

.main-west-d87c {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.main-west-d87c 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) {
  .aside-pressed-ac99 {
    grid-template-columns: 1fr;
  }
  
  .rough-4369 {
    font-size: 1.75rem;
  }
  
  .alert-west-66bb {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .rough-4369 {
    font-size: 1.5rem;
  }
  
  .alert-west-66bb h3 {
    font-size: 1.375rem;
  }
  
  .alert-west-66bb h4 {
    font-size: 1.125rem;
  }
}

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

.heading-bottom-932b {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

.icon-action-4fe1 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.carousel-prev-33c4 {
  flex-shrink: 0;
}

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

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

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

.article_f0fb,
.image-d65b,
.widget-909e {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.article_f0fb thead,
.image-d65b thead {
  background: var(--color-primary);
  color: white;
}

.article_f0fb th,
.article_f0fb td,
.image-d65b th,
.image-d65b td,
.widget-909e th,
.widget-909e td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .article_f0fb th,
  .article_f0fb td,
  .image-d65b th,
  .image-d65b td,
  .widget-909e th,
  .widget-909e td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .article_f0fb,
  .image-d65b,
  .widget-909e {
    min-width: 600px;
  }
}

.article_f0fb th,
.image-d65b th,
.widget-909e th {
  font-weight: 600;
}

.article_f0fb tbody tr:hover,
.image-d65b tbody tr:hover,
.widget-909e tbody tr:hover {
  background: var(--color-bg-alt);
}

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

/* ============================================
   14. SIDEBAR
   ============================================ */
.primary-stale-b3b9 {
  position: sticky;
  top: 80px;
  align-self: start;
}

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

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

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

.white-49e4 h4 {
  color: white;
}

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

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

.shadow-d87c:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

.mask-stale-33c2 {
  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);
}

.mask-stale-33c2 span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.main-764a {
  font-weight: 600;
  color: white;
}

.panel-f6af {
  list-style: none;
  padding: 0;
}

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

.blue_d2d2 {
  color: #4caf50;
}

.lite_cdf4 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.pro-4f73 {
  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;
}

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

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

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

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

.feature-last-79ae {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

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

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

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

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

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

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

.shade-gas-ff1c {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.layout_left_7340 .feature-5ec4 {
  width: 100%;
  background: white;
}

.accordion_over_5dfe .feature-5ec4 {
  color: #667eea;
}

.component_selected_a7d4 .feature-5ec4 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .popup_mini_7493 {
    padding: var(--space-md);
  }
  
  .hidden_3b0d {
    padding: var(--space-md);
  }
  
  .notice-huge-30fb {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

.notice-huge-30fb {
  margin-top: var(--space-lg);
  text-align: center;
}

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

.grid_soft_11b7,
.west_0566,
.short-69f4,
.paragraph-dark-5aa2 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.new_56dd .picture-c010 {
  background: #e8f5e9;
  color: var(--color-success);
}

.description_large_d05b .picture-c010 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.huge-e96a {
  text-align: center;
}

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

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

.filter_active_bc1f .main-764a {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.filter-9ff0 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.gallery-focused-cfdb {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

.hover-wood-8f58 {
  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;
}

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

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

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

.info-8bfc {
  text-align: right;
}

.info-8bfc .primary_8f49 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

.carousel-liquid-641e {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

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

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

.badge_yellow_7e86 {
  background: #e3f2fd;
  color: #1565c0;
}

.static-0182 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.fixed-57b0 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

.row_6ff9[aria-expanded="true"] .motion-0c11 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.gas-6e84,
.hover_d77b {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.gas-6e84 h4,
.hover_d77b h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.gas-6e84 ul,
.hover_d77b ul {
  list-style: none;
  padding: 0;
}

.gas-6e84 li,
.hover_d77b li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.dropdown-69f8 ul {
  list-style: none;
  padding: 0;
}

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

.heading-blue-511c {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

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

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

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

.avatar-da6b {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.carousel-2ac1 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.carousel-2ac1 li {
  margin-bottom: var(--space-xs);
}

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

.carousel-2ac1 a:hover {
  color: white;
}

.block-medium-4602 {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

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

.block-medium-4602 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

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

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

.bright_c017 a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .secondary-complex-1222,
  .tabs_e593 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

.list-in-875b {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.list-in-875b .frame_4785 {
  color: #4caf50;
  font-size: 0.875rem;
}

.tag-steel-9652 {
  list-style: none;
  padding: 0;
}

.tag-steel-9652 li {
  margin-bottom: var(--space-xs);
}

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

.tag-steel-9652 a:hover {
  color: white;
}

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

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

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

.nav_0a6a a:hover {
  color: white;
}

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

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

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

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

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

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

.notification-cool-e957 a:hover {
  color: white;
}

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

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

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

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

@media (max-width: 768px) {
  .slider_522b {
    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;
  }
  
  .backdrop_c9a2 {
    font-size: 2rem;
  }
  
  .rough-4369 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .chip-82e3,
  .aside-pressed-ac99 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .column_selected_bd8f,
  .text-e75e,
  .sidebar-upper-dc54,
  .caption-dark-b784,
  .south_60ba,
  .dropdown-fresh-676f,
  .link_complex_b86a,
  .secondary-complex-1222,
  .tabs_e593 {
    grid-template-columns: 1fr;
  }
  
  .table_89a4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .smooth_36f1 {
    padding: var(--space-lg) 0;
  }
  
  .pagination-paper-ccde li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .pagination-paper-ccde li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .feature-5ec4 {
    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;
  }
  
  .table_89a4 {
    grid-template-columns: 1fr;
  }
  
  .item-prev-52fb,
  .hard_db51,
  .backdrop-huge-e176 {
    flex-direction: column;
    width: 100%;
  }
  
  .main-4d32,
  .tertiary_41f5,
  .item-prev-52fb .feature-5ec4,
  .hard_db51 .feature-5ec4 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .backdrop_c9a2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .rough-4369 {
    font-size: 1.375rem;
  }
  
  .table_79c1 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .outline-b590,
  .middle-c9c4,
  .breadcrumb_4117,
  .warm-8cb8,
  .primary-advanced-0f65 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .simple_825c {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .dynamic-37ab {
    gap: var(--space-xs);
  }
  
  .static-defe {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .mask-stale-33c2 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .filter_active_bc1f {
    width: 150px;
    height: 150px;
  }
  
  .button_bronze_3ca1 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .paper-f382,
  .liquid-b187,
  .item-prev-52fb,
  .right_3d56,
  .wrapper_over_235a,
  .black-f80f,
  .picture_copper_928e {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .smooth_36f1 {
    page-break-inside: avoid;
  }
}

/* css-noise: 201b */
.phantom-card-m0 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.1;
}
