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

.video-5317:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.list-wide-7dbd):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. */
.list-wide-7dbd,
header,
.row_cool_2d84,
.pagination-7f4a,
.action-44c7,
.item_bottom_b794,
.box_easy_36a1,
.article-88e0,
.tabs_north_3ca5 {
  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
   ============================================ */
.list-wide-7dbd {
  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);
}

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

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

/* Scrolled state */
.list-wide-7dbd.notice_1e70 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.pattern-464d {
  flex: 1;
}

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

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

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

.current-affa.shadow_cool_acd8 {
  background: var(--color-primary);
  color: white;
}

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

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

.chip_gas_4808 svg {
  transition: transform 0.2s ease;
}

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

.progress-narrow-b8e3 {
  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;
}

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

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

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

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

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

.gallery-cold-6ac3 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.blue-cb3a svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.chip-small-4827[aria-expanded="true"] .video_dim_9687:nth-child(2) {
  opacity: 0;
}

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

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

  .pattern-464d::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .pattern-464d.disabled_da5f {
    display: block;
    right: 0;
  }
  
  .tag_3055 {
    flex-direction: column;
    gap: 0;
  }
  
  .current-affa {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .pattern-464d::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;
  }
  
  .pattern-464d.disabled_da5f::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .pattern-464d {
    display: none;
  }
  
  .chip-small-4827 {
    display: flex;
  }
  
  .wood_1d69 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .blue-cb3a,
  .tabs_wood_b488 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .notice_active_7aca {
    position: relative;
  }
  
  .progress-narrow-b8e3 {
    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;
  }
  
  .chip_gas_4808[aria-expanded="true"] + .progress-narrow-b8e3 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .widget-cold-6724 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .gallery-cold-6ac3 {
    gap: 8px;
  }
  
  .blue-cb3a {
    display: none;
  }
  
  .tabs_wood_b488 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .feature_blue_b210 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.in-78ca {
  display: flex;
  align-items: center;
  gap: 6px;
}

.in-78ca svg {
  flex-shrink: 0;
}

.in-78ca a {
  color: var(--color-primary);
  text-decoration: none;
}

.in-78ca a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.thumbnail-386f a {
  color: var(--color-primary);
  text-decoration: none;
}

.thumbnail-386f a:hover {
  text-decoration: underline;
}

.wrapper-green-07c2 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

.filter-slow-5674 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .summary-fluid-5bd8 {
    grid-template-columns: 1fr;
  }
  
  .tag_1b91 {
    font-size: 1.75rem;
  }
  
  .narrow_987d {
    order: -1;
    max-width: 100%;
  }
  
  .filter_right_9e81 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .tag_1b91 {
    font-size: 1.5rem;
  }
  
  .card-cace {
    font-size: 1rem;
  }
  
  .thumbnail-386f {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .filter_right_9e81 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.badge-hard-02a9 {
  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;
}

.module-fixed-c93c {
  background: var(--color-primary);
  color: white;
}

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

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

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

.component-mini-19a8 {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.component-mini-19a8:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

.narrow-4ac3 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.narrow-4ac3 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);
}

.narrow-4ac3 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;
}

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

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

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

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

.surface-active-473a {
  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);
}

.aside-0c5f {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.center-4c1c {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.center-4c1c 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) {
  .overlay-red-960c {
    grid-template-columns: 1fr;
  }
  
  .aside-0c5f {
    font-size: 1.75rem;
  }
  
  .slow-c5c4 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .aside-0c5f {
    font-size: 1.5rem;
  }
  
  .slow-c5c4 h3 {
    font-size: 1.375rem;
  }
  
  .slow-c5c4 h4 {
    font-size: 1.125rem;
  }
}

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

.east-94be {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.feature_action_ada2 {
  flex-shrink: 0;
}

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

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

@media (max-width: 768px) {
  .solid_9fa3 {
    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_hard_73a5,
.background_last_8a7e,
.chip-huge-2f86 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.aside_hard_73a5 thead,
.background_last_8a7e thead {
  background: var(--color-primary);
  color: white;
}

.aside_hard_73a5 th,
.aside_hard_73a5 td,
.background_last_8a7e th,
.background_last_8a7e td,
.chip-huge-2f86 th,
.chip-huge-2f86 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .aside_hard_73a5 th,
  .aside_hard_73a5 td,
  .background_last_8a7e th,
  .background_last_8a7e td,
  .chip-huge-2f86 th,
  .chip-huge-2f86 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .aside_hard_73a5,
  .background_last_8a7e,
  .chip-huge-2f86 {
    min-width: 600px;
  }
}

.aside_hard_73a5 th,
.background_last_8a7e th,
.chip-huge-2f86 th {
  font-weight: 600;
}

.aside_hard_73a5 tbody tr:hover,
.background_last_8a7e tbody tr:hover,
.chip-huge-2f86 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.complex_5c73 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

.heading-static-9b20 {
  font-weight: 600;
  color: white;
}

.aside-eede {
  list-style: none;
  padding: 0;
}

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

.breadcrumb_049d {
  color: #4caf50;
}

.header-iron-3f46 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.heading-static-9b20 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.layout-b0eb .badge-hard-02a9 {
  width: 100%;
  background: white;
}

.fluid_14e4 .badge-hard-02a9 {
  color: #667eea;
}

.column_west_4706 .badge-hard-02a9 {
  color: #f5576c;
}

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

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

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

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

.label-plasma-e797 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .label-plasma-e797 {
    padding: var(--space-md);
  }
  
  .out_ac6d {
    padding: var(--space-md);
  }
  
  .texture-dynamic-0ad6 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.nav-warm-7b7d ol,
.nav-warm-7b7d ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.nav-warm-7b7d li {
  margin-bottom: var(--space-sm);
}

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

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

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

.texture-dynamic-0ad6 {
  margin-top: var(--space-lg);
  text-align: center;
}

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

.aside_1148,
.focus_30de,
.component_mini_ffc2,
.card-motion-fdb9 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.layout-new-53ca {
  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) {
  .layout-new-53ca {
    font-size: 0.625rem;
  }
}

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

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

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

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

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

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

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

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

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

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

.lite-3d7d {
  border-color: var(--color-warning);
}

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

.green_8817 .easy_7a8a {
  background: #e8f5e9;
  color: var(--color-success);
}

.lite-3d7d .easy_7a8a {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.notification-over-400b {
  text-align: center;
}

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

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

.list_d18a .heading-static-9b20 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.logo-pro-2a43 {
  margin-bottom: var(--space-xl);
}

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

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

.aside-071e {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.photo-steel-0fb3 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.stone-0160 {
  text-align: right;
}

.stone-0160 .small_9fe3 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.paragraph-44cc {
  background: #e8f5e9;
  color: #2e7d32;
}

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

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

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

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

.accordion-2bde {
  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);
}

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

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

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

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

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

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

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

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

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

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

.column-4e60 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.stone-e214[aria-expanded="true"] .column-4e60 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.section-74e3 {
  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);
}

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

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

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

.notification-7b27,
.accordion-purple-399b {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.notification-7b27 h4,
.accordion-purple-399b h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.notification-7b27 ul,
.accordion-purple-399b ul {
  list-style: none;
  padding: 0;
}

.notification-7b27 li,
.accordion-purple-399b li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.container_4e60 {
  font-style: italic;
}

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

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

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

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

.article-white-14bc {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

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

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

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

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

.stone-0c0f {
  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);
}

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

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

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

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

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

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

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

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

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

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

.huge-21f5 .stale_4942 {
  color: #4caf50;
  font-size: 0.875rem;
}

.backdrop-west-ec99 {
  list-style: none;
  padding: 0;
}

.backdrop-west-ec99 li {
  margin-bottom: var(--space-xs);
}

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

.backdrop-west-ec99 a:hover {
  color: white;
}

.widget-7a90 {
  list-style: none;
  padding: 0;
}

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

.widget-7a90 a {
  color: #b0b0b0;
  text-decoration: none;
}

.widget-7a90 a:hover {
  color: white;
}

.top-352b {
  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);
}

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

.tabs-current-2f05 a {
  color: #4caf50;
  text-decoration: none;
}

.black-9c86 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.banner-cold-7897:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .top-352b {
    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;
  }
  
  .tag_1b91 {
    font-size: 2rem;
  }
  
  .aside-0c5f {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .summary-fluid-5bd8,
  .overlay-red-960c {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .alert-focused-f99b,
  .section-cold-4a46,
  .picture_old_e7d1,
  .shade-754f,
  .easy_919e,
  .description-209f,
  .modal_af53,
  .sidebar_silver_9fcb {
    grid-template-columns: 1fr;
  }
  
  .message_small_34fb {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .box_easy_36a1 {
    padding: var(--space-lg) 0;
  }
  
  .narrow-4ac3 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .narrow-4ac3 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .badge-hard-02a9 {
    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;
  }
  
  .message_small_34fb {
    grid-template-columns: 1fr;
  }
  
  .stale_5b75,
  .article-white-14bc,
  .image-29bf {
    flex-direction: column;
    width: 100%;
  }
  
  .progress_short_bd97,
  .menu_stone_2eef,
  .stale_5b75 .badge-hard-02a9,
  .article-white-14bc .badge-hard-02a9 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .tag_1b91 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .aside-0c5f {
    font-size: 1.375rem;
  }
  
  .container_slow_be1e {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .out_8963,
  .main_inner_2004,
  .west_2b70,
  .green_8a78,
  .paper-230c {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .layout-new-53ca {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .up-7f85 {
    gap: var(--space-xs);
  }
  
  .in-78ca {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .button_e508 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .list_d18a {
    width: 150px;
    height: 150px;
  }
  
  .accordion_0426 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .list-wide-7dbd,
  .row_cool_2d84,
  .stale_5b75,
  .accent_48fe,
  .article-88e0,
  .tabs_north_3ca5,
  .chip-small-4827 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .box_easy_36a1 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: e2ab */
.shadow-element-h8 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.2;
}
