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

.hidden-2d12:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.new_12a9,
header,
.middle_b92a,
.tooltip-cd08,
.row_middle_347c,
.item_warm_8e4b,
.paragraph-hard-bbd1,
.narrow-63de,
.column_wide_d03b {
  max-width: none;
}

/* Critical mobile fix: prevent any overflow */
section,
article,
div,
main {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Ensure images never cause overflow */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure SVG icons don't cause issues */
svg {
  max-width: 100%;
  height: auto;
}

/* ============================================
   4. HEADER & NAVIGATION
   ============================================ */
.new_12a9 {
  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);
}

.background-lower-a8d0 {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.new_12a9.plasma-3bac {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.heading-inner-8123 {
  flex: 1;
}

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

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

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

.tiny_ca19.fn-active-5b3a {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.wood-8b87 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.in-0c47[aria-expanded="true"] .list-left-b61e:nth-child(2) {
  opacity: 0;
}

.in-0c47[aria-expanded="true"] .list-left-b61e:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .heading-inner-8123::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .heading-inner-8123.summary_soft_a1dd {
    display: block;
    right: 0;
  }
  
  .header-current-54bb {
    flex-direction: column;
    gap: 0;
  }
  
  .tiny_ca19 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .heading-inner-8123::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;
  }
  
  .heading-inner-8123.summary_soft_a1dd::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .heading-inner-8123 {
    display: none;
  }
  
  .in-0c47 {
    display: flex;
  }
  
  .east-2081 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .wood-8b87,
  .copper_5500 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .solid_ba21 {
    position: relative;
  }
  
  .hero_focused_3e74 {
    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;
  }
  
  .grid_7468[aria-expanded="true"] + .hero_focused_3e74 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .highlight_1dfb {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .breadcrumb_aa99 {
    gap: 8px;
  }
  
  .wood-8b87 {
    display: none;
  }
  
  .copper_5500 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .simple_422c img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.component-blue-dad6 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.component-blue-dad6 svg {
  flex-shrink: 0;
}

.component-blue-dad6 a {
  color: var(--color-primary);
  text-decoration: none;
}

.component-blue-dad6 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.carousel-a431 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.first-291a {
  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;
}

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

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

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

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

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

.mask-0c34 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .caption_over_5125 {
    grid-template-columns: 1fr;
  }
  
  .purple_3eae {
    font-size: 1.75rem;
  }
  
  .aside_d044 {
    order: -1;
    max-width: 100%;
  }
  
  .mask-0c34 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .purple_3eae {
    font-size: 1.5rem;
  }
  
  .module-pro-6043 {
    font-size: 1rem;
  }
  
  .carousel-a431 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .mask-0c34 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

.banner-13e2 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

.status-98f7 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.status-98f7 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);
}

.status-98f7 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;
}

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

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

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

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

.medium-62af {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.border-f60a 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) {
  .secondary_first_ad4e {
    grid-template-columns: 1fr;
  }
  
  .fixed_442a {
    font-size: 1.75rem;
  }
  
  .bronze_27db {
    max-width: 100%;
  }
}

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

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

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

.shade-9fda {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.grid-5956 {
  flex-shrink: 0;
}

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

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

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

.disabled_white_e214,
.link-yellow-c558,
.easy_dd4e {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.disabled_white_e214 thead,
.link-yellow-c558 thead {
  background: var(--color-primary);
  color: white;
}

.disabled_white_e214 th,
.disabled_white_e214 td,
.link-yellow-c558 th,
.link-yellow-c558 td,
.easy_dd4e th,
.easy_dd4e td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .disabled_white_e214 th,
  .disabled_white_e214 td,
  .link-yellow-c558 th,
  .link-yellow-c558 td,
  .easy_dd4e th,
  .easy_dd4e td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .disabled_white_e214,
  .link-yellow-c558,
  .easy_dd4e {
    min-width: 600px;
  }
}

.disabled_white_e214 th,
.link-yellow-c558 th,
.easy_dd4e th {
  font-weight: 600;
}

.disabled_white_e214 tbody tr:hover,
.link-yellow-c558 tbody tr:hover,
.easy_dd4e tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.active_0e4a h4 {
  color: white;
}

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

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

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

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

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

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

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

.notification-0700:hover {
  text-decoration: underline;
}

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

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

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

.video-wide-7f61 {
  font-weight: 600;
  color: white;
}

.slider-2cef {
  list-style: none;
  padding: 0;
}

.slider-2cef li {
  padding: var(--space-xs) 0;
}

.dropdown-4897 {
  color: #4caf50;
}

.last_493d {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.video-wide-7f61 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.detail_f2cf .brown_2625 {
  width: 100%;
  background: white;
}

.border_ebde .brown_2625 {
  color: #667eea;
}

.light-7de7 .brown_2625 {
  color: #f5576c;
}

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

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

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

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

.sidebar-lower-da68 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .sidebar-lower-da68 {
    padding: var(--space-md);
  }
  
  .white-fce9 {
    padding: var(--space-md);
  }
  
  .media_complex_c0b4 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.frame_9681,
.banner_aa82,
.info-61eb,
.sidebar_blue_7333 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.background-up-a514 {
  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);
}

.focus_d3f8 .background-up-a514 {
  background: #e8f5e9;
  color: var(--color-success);
}

.tooltip_a452 .background-up-a514 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.form-e5a1 {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: var(--space-xl);
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.dark_bc4c {
  text-align: center;
}

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

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

.detail_6489 .video-wide-7f61 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hard-d8f6 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.bottom-2d25 {
  text-align: right;
}

.bottom-2d25 .current_8698 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.disabled-c8e1 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

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

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

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

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

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

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

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

.menu-mini-9512 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

.dim_5e36[aria-expanded="true"] .silver_542d {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .icon-clean-67fc {
    grid-template-columns: 1fr;
  }
}

.info_complex_b65c,
.main-88d1 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.info_complex_b65c h4,
.main-88d1 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.info_complex_b65c ul,
.main-88d1 ul {
  list-style: none;
  padding: 0;
}

.info_complex_b65c li,
.main-88d1 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

.surface-short-4bdf {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

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

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

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

.shadow-df7a {
  font-style: italic;
}

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

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

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

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

.menu-rough-193a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

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

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

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

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

.status-2f63 {
  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);
}

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

.pattern-top-14b4 {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.tooltip-green-ae6d {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tooltip-green-ae6d li {
  margin-bottom: var(--space-xs);
}

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

.tooltip-green-ae6d a:hover {
  color: white;
}

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

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

.west_574f a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

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

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

.section_42b3 a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .logo_current_c508,
  .frame-simple-8567 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.label-b4ed .progress_simple_886f {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.fresh_74b5 a:hover {
  color: white;
}

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

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

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

.primary_pink_bc10 a:hover {
  color: white;
}

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

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

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

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

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

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

.warm_a435 a:hover {
  color: white;
}

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

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

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

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

@media (max-width: 768px) {
  .tag_iron_7b05 {
    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;
  }
  
  .purple_3eae {
    font-size: 2rem;
  }
  
  .fixed_442a {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .caption_over_5125,
  .secondary_first_ad4e {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .first-050c,
  .thumbnail-static-6221,
  .cool_cf25,
  .sort_1ebf,
  .icon-clean-67fc,
  .element-3393,
  .west-831a,
  .logo_current_c508,
  .frame-simple-8567 {
    grid-template-columns: 1fr;
  }
  
  .background_brown_fa23 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .paragraph-hard-bbd1 {
    padding: var(--space-lg) 0;
  }
  
  .status-98f7 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .status-98f7 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .brown_2625 {
    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;
  }
  
  .background_brown_fa23 {
    grid-template-columns: 1fr;
  }
  
  .out_ef0d,
  .menu-rough-193a,
  .progress-b3b0 {
    flex-direction: column;
    width: 100%;
  }
  
  .advanced_0fc3,
  .banner-13e2,
  .out_ef0d .brown_2625,
  .menu-rough-193a .brown_2625 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .purple_3eae {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .fixed_442a {
    font-size: 1.375rem;
  }
  
  .text_lower_4d90 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .up_ceb9,
  .slider_static_13c5,
  .shade-af8c,
  .notification-d7d9,
  .image-west-5636 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .pro-3994 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .in_830e {
    gap: var(--space-xs);
  }
  
  .component-blue-dad6 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .border_left_701d {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .detail_6489 {
    width: 150px;
    height: 150px;
  }
  
  .shade_219b {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .new_12a9,
  .middle_b92a,
  .out_ef0d,
  .sidebar_fluid_9d20,
  .narrow-63de,
  .column_wide_d03b,
  .in-0c47 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .paragraph-hard-bbd1 {
    page-break-inside: avoid;
  }
}

/* css-noise: 2c76 */
.shadow-element-o9 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.2;
}
