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

.cool-8206:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.list-out-f4d8,
header,
.list-orange-37a6,
.section-motion-639c,
.background_ae59,
.slider-down-7196,
.sidebar-1a22,
.widget-57c0,
.icon_51e0 {
  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
   ============================================ */
.list-out-f4d8 {
  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);
}

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

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

/* Scrolled state */
.list-out-f4d8.hero_stale_a77b {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.breadcrumb-west-1dff img {
  height: 36px;
  width: auto;
  display: block;
}

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

.input-d6a6 {
  flex: 1;
}

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

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

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

.outer-d997.fn-active-aa2f {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

.yellow-8f8b {
  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;
}

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

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

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

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

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

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

/* Header Login Button */
.carousel-white-77f6 {
  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;
}

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

.carousel-white-77f6 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .input-d6a6 {
    display: none;
  }
  
  .huge_1366 {
    display: flex;
  }
  
  .description-7947 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .carousel-white-77f6,
  .disabled_f6ad {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .title_77ad {
    position: relative;
  }
  
  .yellow-8f8b {
    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;
  }
  
  .black_45ca[aria-expanded="true"] + .yellow-8f8b {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .notice-e095 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .warm-066d {
    gap: 8px;
  }
  
  .carousel-white-77f6 {
    display: none;
  }
  
  .disabled_f6ad {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .breadcrumb-west-1dff img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.soft_821d svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.input-5e39 a {
  color: var(--color-primary);
  text-decoration: none;
}

.input-5e39 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.north-8e55 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .box-current-0ae2 {
    grid-template-columns: 1fr;
  }
  
  .in_d275 {
    font-size: 1.75rem;
  }
  
  .red_c614 {
    order: -1;
    max-width: 100%;
  }
  
  .title_1468 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .in_d275 {
    font-size: 1.5rem;
  }
  
  .bronze-e672 {
    font-size: 1rem;
  }
  
  .input-5e39 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .title_1468 {
    max-width: 250px;
  }
}

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

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

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

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

.image-fluid-bfff:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.complex-481b {
  list-style: none;
  counter-reset: toc-counter;
}

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

.complex-481b 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);
}

.complex-481b 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;
}

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

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

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

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

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

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

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

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

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

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

.wrapper-liquid-8124 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.wrapper-liquid-8124 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);
}

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

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

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

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

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

.wrapper-liquid-8124 strong {
  font-weight: 600;
  color: var(--color-text);
}

.wrapper-liquid-8124 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.wrapper-liquid-8124 a:hover {
  color: var(--color-primary-dark);
}

.thumbnail-lite-3a54 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.thumbnail-lite-3a54 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) {
  .dropdown-wide-6ec4 {
    grid-template-columns: 1fr;
  }
  
  .purple-cb01 {
    font-size: 1.75rem;
  }
  
  .wrapper-liquid-8124 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .purple-cb01 {
    font-size: 1.5rem;
  }
  
  .wrapper-liquid-8124 h3 {
    font-size: 1.375rem;
  }
  
  .wrapper-liquid-8124 h4 {
    font-size: 1.125rem;
  }
}

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

.alert-south-39b1 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.orange-6366 {
  flex-shrink: 0;
}

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

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

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

.breadcrumb_full_2d4f,
.left_d268,
.shadow-pink-54b2 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.breadcrumb_full_2d4f thead,
.left_d268 thead {
  background: var(--color-primary);
  color: white;
}

.breadcrumb_full_2d4f th,
.breadcrumb_full_2d4f td,
.left_d268 th,
.left_d268 td,
.shadow-pink-54b2 th,
.shadow-pink-54b2 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .breadcrumb_full_2d4f th,
  .breadcrumb_full_2d4f td,
  .left_d268 th,
  .left_d268 td,
  .shadow-pink-54b2 th,
  .shadow-pink-54b2 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .breadcrumb_full_2d4f,
  .left_d268,
  .shadow-pink-54b2 {
    min-width: 600px;
  }
}

.breadcrumb_full_2d4f th,
.left_d268 th,
.shadow-pink-54b2 th {
  font-weight: 600;
}

.breadcrumb_full_2d4f tbody tr:hover,
.left_d268 tbody tr:hover,
.shadow-pink-54b2 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.full_43ad h4 {
  color: white;
}

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

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

.wood-f014:last-child {
  border-bottom: none;
}

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

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

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

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

.rough-0e77:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.image-2482 {
  color: #4caf50;
}

.grid_selected_4393 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.menu-310e .top_46f5 {
  width: 100%;
  background: white;
}

.list_out_759a .top_46f5 {
  color: #667eea;
}

.blue_18f6 .top_46f5 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .status_clean_6619 {
    padding: var(--space-md);
  }
  
  .mask_smooth_cace {
    padding: var(--space-md);
  }
  
  .aside-hard-985b {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.sidebar-warm-f99e li {
  margin-bottom: var(--space-sm);
}

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

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

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

.aside-hard-985b {
  margin-top: var(--space-lg);
  text-align: center;
}

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

.article-9819,
.focused_2bce,
.current-56c5,
.tag_677c {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.alert-orange-5ca6 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

.overlay-20fa {
  border-color: var(--color-warning);
}

.form-fast-f4b0 {
  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-6539 .form-fast-f4b0 {
  background: #e8f5e9;
  color: var(--color-success);
}

.overlay-20fa .form-fast-f4b0 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

.layout-yellow-325e {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.layout-yellow-325e h4 {
  margin-bottom: var(--space-md);
  font-size: 1.125rem;
  color: var(--color-primary);
}

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

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

.breadcrumb-9f84 {
  margin-top: var(--space-xxl);
}

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

.outline_9d15 {
  text-align: center;
}

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

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

.focused_6d26 .in_ac58 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.texture-61b4 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.slider-hard-a931 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.gallery_bright_4726 {
  text-align: right;
}

.gallery_bright_4726 .dark_297e {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nav-glass-92f6 {
  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);
}

.nav-glass-92f6:hover {
  background: var(--color-bg-alt);
}

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

.nav-glass-92f6[aria-expanded="true"] .solid-ed55 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.chip-paper-6df3,
.silver-5438 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.chip-paper-6df3 h4,
.silver-5438 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.chip-paper-6df3 ul,
.silver-5438 ul {
  list-style: none;
  padding: 0;
}

.chip-paper-6df3 li,
.silver-5438 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.purple_de60 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.black-2e20 {
  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);
}

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

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

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

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

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

.breadcrumb-basic-c5de {
  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) */
.hard-1e99 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.widget_old_dd15 {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

.widget_old_dd15 a:hover {
  color: white;
}

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

.liquid-121c 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);
}

.liquid-121c a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

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

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

.media_static_ea23 a:hover {
  color: white;
}

.border-large-470a > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

@media (max-width: 768px) {
  .breadcrumb-basic-c5de,
  .hard-1e99 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.table_d4d8 .easy_cf98 {
  color: #4caf50;
  font-size: 0.875rem;
}

.hidden-large-f863 {
  list-style: none;
  padding: 0;
}

.hidden-large-f863 li {
  margin-bottom: var(--space-xs);
}

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

.hidden-large-f863 a:hover {
  color: white;
}

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

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

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

.popup_5120 a:hover {
  color: white;
}

.border-large-470a {
  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);
}

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

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

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

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

.media-tiny-24ff a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.media-tiny-24ff 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;
}

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

.tag-ac5e:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .border-large-470a {
    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;
  }
  
  .in_d275 {
    font-size: 2rem;
  }
  
  .purple-cb01 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .box-current-0ae2,
  .dropdown-wide-6ec4 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .breadcrumb_mini_a63e,
  .backdrop-tiny-0438,
  .mini-c2be,
  .popup-out-4850,
  .west_be41,
  .secondary_d04e,
  .border-33c9,
  .breadcrumb-basic-c5de,
  .hard-1e99 {
    grid-template-columns: 1fr;
  }
  
  .logo_advanced_1159 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .sidebar-1a22 {
    padding: var(--space-lg) 0;
  }
  
  .complex-481b li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .complex-481b li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .top_46f5 {
    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;
  }
  
  .logo_advanced_1159 {
    grid-template-columns: 1fr;
  }
  
  .surface_fccc,
  .hovered_3fb7,
  .card-brown-fd92 {
    flex-direction: column;
    width: 100%;
  }
  
  .breadcrumb_9e37,
  .wood_0945,
  .surface_fccc .top_46f5,
  .hovered_3fb7 .top_46f5 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .in_d275 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .purple-cb01 {
    font-size: 1.375rem;
  }
  
  .description_slow_fc92 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .caption-action-3919,
  .message_cf91,
  .gallery-dynamic-cb19,
  .box-huge-4d10,
  .sidebar_east_a5d5 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .block_27a3 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .popup-gold-f100 {
    gap: var(--space-xs);
  }
  
  .soft_821d {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .pattern_2901 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .focused_6d26 {
    width: 150px;
    height: 150px;
  }
  
  .black_ed22 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .list-out-f4d8,
  .list-orange-37a6,
  .surface_fccc,
  .main_3366,
  .widget-57c0,
  .icon_51e0,
  .huge_1366 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .sidebar-1a22 {
    page-break-inside: avoid;
  }
}

/* css-noise: b697 */
.shadow-element-d4 {
  padding: 0.1rem;
  font-size: 10px;
  line-height: 1.2;
}
