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

.title-6c63:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.black_39d2):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. */
.black_39d2,
header,
.complex-b15b,
.row-basic-568f,
.label-1b5a,
.label_medium_7063,
.slider-7f95,
.overlay_lite_1044,
.highlight-outer-f05b {
  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
   ============================================ */
.black_39d2 {
  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);
}

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

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

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

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

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

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

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

.table-2aba {
  flex: 1;
}

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

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

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

.basic_015c.component-0451 {
  background: var(--color-primary);
  color: white;
}

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

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

.pattern-c73b svg {
  transition: transform 0.2s ease;
}

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

.box-blue-d8a7 {
  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;
}

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

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

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

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

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

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

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

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

.black_907b svg {
  flex-shrink: 0;
}

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

.heading-brown-f11f: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);
}

.heading-brown-f11f svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.frame_liquid_ba85[aria-expanded="true"] .caption-4ff9:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .table-2aba {
    display: none;
  }
  
  .frame_liquid_ba85 {
    display: flex;
  }
  
  .active_1162 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .black_907b,
  .heading-brown-f11f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .active_c417 {
    position: relative;
  }
  
  .box-blue-d8a7 {
    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;
  }
  
  .pattern-c73b[aria-expanded="true"] + .box-blue-d8a7 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .backdrop_steel_c068 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .hovered-0d95 {
    gap: 8px;
  }
  
  .black_907b {
    display: none;
  }
  
  .heading-brown-f11f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .current_d8bd img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.label-d30f svg {
  flex-shrink: 0;
}

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

.label-d30f a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.accordion-c3c9 a:hover {
  text-decoration: underline;
}

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

.center_aaa0 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

@media (max-width: 1024px) {
  .center_aaa0 {
    font-size: 2rem;
  }
}

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

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

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

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

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

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

.fixed-3bd7 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fixed-3bd7 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

.easy-6e76 {
  position: relative;
  text-align: center;
}

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

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

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

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

.progress-black-057c {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

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

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

@media (max-width: 968px) {
  .main-07d7 {
    grid-template-columns: 1fr;
  }
  
  .center_aaa0 {
    font-size: 1.75rem;
  }
  
  .preview_brown_1113 {
    order: -1;
    max-width: 100%;
  }
  
  .easy-6e76 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .center_aaa0 {
    font-size: 1.5rem;
  }
  
  .nav-pressed-2135 {
    font-size: 1rem;
  }
  
  .accordion-c3c9 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .easy-6e76 {
    max-width: 250px;
  }
}

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

.tabs-full-f4b4 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pressed-b494 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;
}

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

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

.panel-motion-44f3 {
  background: var(--color-bg-section);
}

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

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

.message-yellow-c529 {
  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);
}

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

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

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

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

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

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

.alert_5e7c 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_5e7c h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

.tiny_533c 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) {
  .hot_0a28 {
    grid-template-columns: 1fr;
  }
  
  .message-yellow-c529 {
    font-size: 1.75rem;
  }
  
  .alert_5e7c {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .message-yellow-c529 {
    font-size: 1.5rem;
  }
  
  .alert_5e7c h3 {
    font-size: 1.375rem;
  }
  
  .alert_5e7c h4 {
    font-size: 1.125rem;
  }
}

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

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

.brown-6f22 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.hover_rough_96ec {
  flex-shrink: 0;
}

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

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

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

.stale-e227,
.box-dim-f7f8,
.copper_eb12 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.stale-e227 thead,
.box-dim-f7f8 thead {
  background: var(--color-primary);
  color: white;
}

.stale-e227 th,
.stale-e227 td,
.box-dim-f7f8 th,
.box-dim-f7f8 td,
.copper_eb12 th,
.copper_eb12 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .stale-e227 th,
  .stale-e227 td,
  .box-dim-f7f8 th,
  .box-dim-f7f8 td,
  .copper_eb12 th,
  .copper_eb12 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .stale-e227,
  .box-dim-f7f8,
  .copper_eb12 {
    min-width: 600px;
  }
}

.stale-e227 th,
.box-dim-f7f8 th,
.copper_eb12 th {
  font-weight: 600;
}

.stale-e227 tbody tr:hover,
.box-dim-f7f8 tbody tr:hover,
.copper_eb12 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.block-0b01 h4 {
  color: white;
}

.active-first-9aa2 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

.alert-wood-ca1b {
  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);
}

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

.widget_slow_15df {
  font-weight: 600;
  color: white;
}

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

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

.active_480d {
  color: #4caf50;
}

.image_8fab {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.light_4e66 .nav_3ed9 {
  width: 100%;
  background: white;
}

.link-basic-e28f .nav_3ed9 {
  color: #667eea;
}

.pagination-orange-b833 .nav_3ed9 {
  color: #f5576c;
}

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

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

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

.shade-first-997c {
  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);
}

.outline-yellow-0bf7 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.gradient-646a {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .outline-yellow-0bf7 {
    padding: var(--space-md);
  }
  
  .gradient-646a {
    padding: var(--space-md);
  }
  
  .mini-b786 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.picture-steel-8a04,
.search-tall-636e,
.hover-2b4d,
.pagination-steel-6273 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.breadcrumb-dynamic-a70c {
  border-color: var(--color-success);
}

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

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

.breadcrumb-dynamic-a70c .purple-2041 {
  background: #e8f5e9;
  color: var(--color-success);
}

.paragraph_318b .purple-2041 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.module-939c {
  margin-top: var(--space-xxl);
}

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

.list_1c15 {
  text-align: center;
}

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

.border-fixed-0ce4 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.white-da94 .widget_slow_15df {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.tall-5f5b {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

.main-dark-13ee {
  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;
}

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

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

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

.module_bb85 {
  text-align: right;
}

.module_bb85 .wrapper-steel-e23a {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.tabs-2b8f {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.complex-5186[aria-expanded="true"] .copper_15ce {
  transform: rotate(180deg);
}

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

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

.image-wide-5eaf ul,
.image-wide-5eaf ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.image-wide-5eaf li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.header-gas-e457,
.article_bright_009f {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.header-gas-e457 h4,
.article_bright_009f h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.header-gas-e457 ul,
.article_bright_009f ul {
  list-style: none;
  padding: 0;
}

.header-gas-e457 li,
.article_bright_009f li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.caption-north-7138 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.block-east-482e {
  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);
}

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

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

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

.block-east-482e p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

.west_09ca .tiny_c4dc {
  color: #4caf50;
  font-size: 0.875rem;
}

.status-ca8c {
  list-style: none;
  padding: 0;
}

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

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

.status-ca8c a:hover {
  color: white;
}

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

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

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

.tertiary_stale_cfd1 a:hover {
  color: white;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .up_1416 {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   24. RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 1200px) {
  :root {
    font-size: 15px;
  }
}

@media (max-width: 968px) {
  :root {
    --space-xxl: 3rem;
  }
  
  .center_aaa0 {
    font-size: 2rem;
  }
  
  .message-yellow-c529 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .main-07d7,
  .hot_0a28 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .summary-cold-cc25,
  .upper_c87a,
  .border_up_4f30,
  .card-3314,
  .label_copper_a785,
  .hard-e29b,
  .column-6b45,
  .list-basic-6a9b {
    grid-template-columns: 1fr;
  }
  
  .rough_8ddf {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .slider-7f95 {
    padding: var(--space-lg) 0;
  }
  
  .pressed-b494 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .pressed-b494 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .nav_3ed9 {
    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;
  }
  
  .rough_8ddf {
    grid-template-columns: 1fr;
  }
  
  .module_e541,
  .message_bottom_98d1,
  .pattern-left-06df {
    flex-direction: column;
    width: 100%;
  }
  
  .column-2688,
  .background_89c8,
  .module_e541 .nav_3ed9,
  .message_bottom_98d1 .nav_3ed9 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .center_aaa0 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .message-yellow-c529 {
    font-size: 1.375rem;
  }
  
  .widget_28be {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .light-f558,
  .large-ed0b,
  .mask-inner-36d3,
  .upper_d80f,
  .video_right_1bf2 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .nav_outer_e765 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .module_58a0 {
    gap: var(--space-xs);
  }
  
  .label-d30f {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .alert-wood-ca1b {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .white-da94 {
    width: 150px;
    height: 150px;
  }
  
  .border-fixed-0ce4 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .black_39d2,
  .complex-b15b,
  .module_e541,
  .wrapper_left_2974,
  .overlay_lite_1044,
  .highlight-outer-f05b,
  .frame_liquid_ba85 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .slider-7f95 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 81ae */
.phantom-card-k5 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.2;
}
