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

.thumbnail_soft_f3a2:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container.
   html/body are excluded on purpose: releasing their max-width removes the
   last guard against a horizontally scrollable page. */
.gradient-blue-10e6,
header,
.soft-d2e7,
.tall-43da,
.hero_c299,
.gradient_cold_e276,
.layout-hard-e1e6,
.mask-gas-afb9,
.focus-29ad {
  max-width: none;
}

/* overflow-x stays off <html>: pairing it with body's hidden turns <html>
   into its own scroll container and breaks the sticky header. */
html,
body {
  width: 100%;
  max-width: 100%;
}

/* 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
   ============================================ */
.gradient-blue-10e6 {
  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);
}

.basic-02e8 {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.gradient-blue-10e6.smooth-441c {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.info-b294 {
  flex: 1;
}

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

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

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

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

/* Dropdown Navigation */
.green-1d0c {
  position: relative;
}

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

.block-dark-59fb svg {
  transition: transform 0.2s ease;
}

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

.sort-dynamic-7578 {
  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;
}

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

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

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

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

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

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

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

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

.panel_442b svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .info-b294::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .info-b294.south-bdc0 {
    display: block;
    right: 0;
  }
  
  .element-clean-afd9 {
    flex-direction: column;
    gap: 0;
  }
  
  .feature_8dbd {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .info-b294::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;
  }
  
  .info-b294.south-bdc0::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .info-b294 {
    display: none;
  }
  
  .shadow_a59d {
    display: flex;
  }
  
  .north_9c8d {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .panel_442b,
  .east_aeda {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .green-1d0c {
    position: relative;
  }
  
  .sort-dynamic-7578 {
    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;
  }
  
  .block-dark-59fb[aria-expanded="true"] + .sort-dynamic-7578 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .media-over-d549 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .simple-40f4 {
    gap: 8px;
  }
  
  .panel_442b {
    display: none;
  }
  
  .east_aeda {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .surface_purple_58cd img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.info-hovered-25f2 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.info-hovered-25f2 svg {
  flex-shrink: 0;
}

.info-hovered-25f2 a {
  color: var(--color-primary);
  text-decoration: none;
}

.info-hovered-25f2 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.huge-3bdd a {
  color: var(--color-primary);
  text-decoration: none;
}

.huge-3bdd a:hover {
  text-decoration: underline;
}

.badge-white-c490 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

.tall-2cef {
  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;
}

.row-new-e90d {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.row-new-e90d strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

.current-22ca {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

.component-next-1e4a {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .texture-ccf9 {
    grid-template-columns: 1fr;
  }
  
  .widget-outer-fd7f {
    font-size: 1.75rem;
  }
  
  .current-22ca {
    order: -1;
    max-width: 100%;
  }
  
  .bottom_443f {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .widget-outer-fd7f {
    font-size: 1.5rem;
  }
  
  .tag-6597 {
    font-size: 1rem;
  }
  
  .huge-3bdd {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .bottom_443f {
    max-width: 250px;
  }
}

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

.dropdown-hard-155d {
  background: var(--color-primary);
  color: white;
}

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

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

.accent-3f8d:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.article_b5ff 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.logo-iron-3ca8 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.logo-iron-3ca8 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) {
  .bronze-f0a3 {
    grid-template-columns: 1fr;
  }
  
  .hero-dcbe {
    font-size: 1.75rem;
  }
  
  .shade_ca43 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-dcbe {
    font-size: 1.5rem;
  }
  
  .shade_ca43 h3 {
    font-size: 1.375rem;
  }
  
  .shade_ca43 h4 {
    font-size: 1.125rem;
  }
}

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

.filter-03e5 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.content-left-4eee {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.popup-liquid-7849 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.aside_b016 {
  flex-shrink: 0;
}

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

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

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

.aside-focused-2b90,
.liquid-ddd0,
.sidebar-cold-085a {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.aside-focused-2b90 thead,
.liquid-ddd0 thead {
  background: var(--color-primary);
  color: white;
}

.aside-focused-2b90 th,
.aside-focused-2b90 td,
.liquid-ddd0 th,
.liquid-ddd0 td,
.sidebar-cold-085a th,
.sidebar-cold-085a td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .aside-focused-2b90 th,
  .aside-focused-2b90 td,
  .liquid-ddd0 th,
  .liquid-ddd0 td,
  .sidebar-cold-085a th,
  .sidebar-cold-085a td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .aside-focused-2b90,
  .liquid-ddd0,
  .sidebar-cold-085a {
    min-width: 600px;
  }
}

.aside-focused-2b90 th,
.liquid-ddd0 th,
.sidebar-cold-085a th {
  font-weight: 600;
}

.aside-focused-2b90 tbody tr:hover,
.liquid-ddd0 tbody tr:hover,
.sidebar-cold-085a tbody tr:hover {
  background: var(--color-bg-alt);
}

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

/* ============================================
   14. SIDEBAR
   ============================================ */
.caption-wide-926b {
  position: sticky;
  top: 80px;
  align-self: start;
}

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

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

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

.wood_2d79 h4 {
  color: white;
}

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

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

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

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

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

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

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

.grid-fixed-c0bd:hover {
  text-decoration: underline;
}

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

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

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

.component-basic-cc6d {
  font-weight: 600;
  color: white;
}

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

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

.slider_971e {
  color: #4caf50;
}

.accent-bb2c {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.accordion-blue-fcb7 {
  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;
}

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

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

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

.component-basic-cc6d {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

.dim-293e {
  margin-top: var(--space-xxl);
}

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

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

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

.module-dark-0ae6 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

.module-dark-0ae6 .bright-c1a2 {
  width: 100%;
  background: white;
}

.widget_1f86 .bright-c1a2 {
  color: #667eea;
}

.current_f2b5 .bright-c1a2 {
  color: #f5576c;
}

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

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

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

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

.bright-54ea h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.label-69a8 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .bright-54ea {
    padding: var(--space-md);
  }
  
  .label-69a8 {
    padding: var(--space-md);
  }
  
  .button-simple-a864 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.breadcrumb_a483,
.glass_fdb9,
.west_0cf4,
.inner-fafd {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.hidden-pressed-e596:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

.text_1f8b {
  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_1f8b {
    grid-template-columns: 1fr;
  }
}

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

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

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

.card-05ab {
  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);
}

.paragraph-ff46 .card-05ab {
  background: #e8f5e9;
  color: var(--color-success);
}

.item-dbd1 .card-05ab {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

.filter-motion-2ea6 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.disabled-wide-d1c1 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.dark-8310 {
  text-align: center;
}

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

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

.card_slow_6bde .component-basic-cc6d {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.slow-212c {
  color: var(--color-text-light);
}

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

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

.hot-34cc {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.down-4bc6 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.old_c4df {
  text-align: right;
}

.old_c4df .tag-b3ef {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.gallery-cool-e392 {
  background: #e8f5e9;
  color: #2e7d32;
}

.complex-5b93 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

.main-bronze-7fc5 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

.link-up-a45b {
  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);
}

.link-up-a45b:hover {
  background: var(--color-bg-alt);
}

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

.link-up-a45b[aria-expanded="true"] .badge-f60f {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.advanced_8c28 h4,
.main_bc59 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.advanced_8c28 ul,
.main_bc59 ul {
  list-style: none;
  padding: 0;
}

.advanced_8c28 li,
.main_bc59 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.surface-out-3346 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.silver_a242 {
  font-style: italic;
}

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

.tertiary-up-28c6 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.outer-8cdd .short_a74e {
  color: #4caf50;
  font-size: 0.875rem;
}

.steel-60c6 {
  list-style: none;
  padding: 0;
}

.steel-60c6 li {
  margin-bottom: var(--space-xs);
}

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

.steel-60c6 a:hover {
  color: white;
}

.black-51bb {
  list-style: none;
  padding: 0;
}

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

.black-51bb a {
  color: #b0b0b0;
  text-decoration: none;
}

.black-51bb a:hover {
  color: white;
}

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

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

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

.current-5fa8 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .plasma-6247 {
    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;
  }
  
  .widget-outer-fd7f {
    font-size: 2rem;
  }
  
  .hero-dcbe {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .texture-ccf9,
  .bronze-f0a3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .smooth-a522,
  .text_1f8b,
  .hidden-b45b,
  .mini_4c45,
  .warm_6360,
  .thumbnail_simple_2a9f,
  .south-fe92,
  .text_2ac6 {
    grid-template-columns: 1fr;
  }
  
  .west_e9aa {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .layout-hard-e1e6 {
    padding: var(--space-lg) 0;
  }
  
  .article_b5ff li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .article_b5ff li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .bright-c1a2 {
    min-height: 44px;
  }
  
  /* Optimize images for mobile */
  img {
    height: auto;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 1.5rem;
    --space-xl: 1.75rem;
    --space-xxl: 2rem;
  }
  
  .west_e9aa {
    grid-template-columns: 1fr;
  }
  
  .highlight-f4e6,
  .smooth_4956,
  .fixed_313f {
    flex-direction: column;
    width: 100%;
  }
  
  .selected_d434,
  .form_in_3dc0,
  .highlight-f4e6 .bright-c1a2,
  .smooth_4956 .bright-c1a2 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .widget-outer-fd7f {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .hero-dcbe {
    font-size: 1.375rem;
  }
  
  .blue_ead5 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .preview_3fb8,
  .table_hot_7380,
  .panel_iron_23bd,
  .carousel_outer_cab3,
  .panel_upper_91cc {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .lite_be2c {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .east-182d {
    gap: var(--space-xs);
  }
  
  .info-hovered-25f2 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .accent-fc65 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .card_slow_6bde {
    width: 150px;
    height: 150px;
  }
  
  .paragraph-soft-b209 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .gradient-blue-10e6,
  .soft-d2e7,
  .highlight-f4e6,
  .tertiary-up-28c6,
  .mask-gas-afb9,
  .focus-29ad,
  .shadow_a59d {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .layout-hard-e1e6 {
    page-break-inside: avoid;
  }
}

/* css-noise: eb39 */
.progress_d420 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}

/* css-noise: 2975 */
.ghost-box-j6 {
  padding: 0.2rem;
  font-size: 10px;
  line-height: 1.0;
}
