/* ============================================
   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)
   ============================================ */
.filter-plasma-67f2 {
  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;
}

.filter-plasma-67f2:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container.
   html/body are excluded on purpose: releasing their max-width removes the
   last guard against a horizontally scrollable page. */
.widget_bb4a,
header,
.status-2caf,
.slow_ffc1,
.highlight_70f6,
.modal_f5cf,
.paragraph_b1a8,
.focus-warm-dca7,
.button_7972 {
  max-width: none;
}

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

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

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

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

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

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

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

/* Scrolled state */
.widget_bb4a.bottom-107c {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.background_0645 {
  flex: 1;
}

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

.hero-easy-1c06 {
  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);
}

.hero-easy-1c06:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.hero-easy-1c06.pressed_f8c0 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.west_44a4 svg {
  flex-shrink: 0;
}

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

.upper-5f73: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);
}

.upper-5f73 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

  .background_0645::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .background_0645.sidebar-10a4 {
    display: block;
    right: 0;
  }
  
  .easy-ca4c {
    flex-direction: column;
    gap: 0;
  }
  
  .hero-easy-1c06 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .background_0645::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;
  }
  
  .background_0645.sidebar-10a4::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .background_0645 {
    display: none;
  }
  
  .out_567e {
    display: flex;
  }
  
  .fresh-f997 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .west_44a4,
  .upper-5f73 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .header_bottom_f077 {
    position: relative;
  }
  
  .block_bottom_1df3 {
    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;
  }
  
  .card_b5de[aria-expanded="true"] + .block_bottom_1df3 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .list-brown-b479 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .in-11aa {
    gap: 8px;
  }
  
  .west_44a4 {
    display: none;
  }
  
  .upper-5f73 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .thumbnail_4177 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .upper-5f73 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .upper-5f73 svg {
    width: 14px;
    height: 14px;
  }
  
  .purple-1e9f {
    gap: var(--space-sm);
  }
}

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

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

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

.tooltip_5efd svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.background-last-902f a {
  color: var(--color-primary);
  text-decoration: none;
}

.background-last-902f a:hover {
  text-decoration: underline;
}

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

.notification-east-8c33 {
  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) {
  .notification-east-8c33 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .notification-east-8c33 {
    font-size: 1.5rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.module-tall-229f {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

@media (max-width: 968px) {
  .dim-6540 {
    grid-template-columns: 1fr;
  }
  
  .notification-east-8c33 {
    font-size: 1.75rem;
  }
  
  .tooltip_24a2 {
    order: -1;
    max-width: 100%;
  }
  
  .pagination_c6fc {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .notification-east-8c33 {
    font-size: 1.5rem;
  }
  
  .outline_7dc4 {
    font-size: 1rem;
  }
  
  .background-last-902f {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .pagination_c6fc {
    max-width: 250px;
  }
}

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

.link-up-71ec {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

.header-pro-490f {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.active-south-aaa8 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.paragraph-inner-52cb {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.paragraph-inner-52cb 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) {
  .caption-silver-3898 {
    grid-template-columns: 1fr;
  }
  
  .hard-af99 {
    font-size: 1.75rem;
  }
  
  .hard_7c91 {
    max-width: 100%;
  }
}

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

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

.title-top-018d {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.layout-solid-30b2 {
  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;
}

.active-2726 {
  flex-shrink: 0;
}

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

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

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

.link-35de,
.search-bd28,
.small_74b0 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.link-35de thead,
.search-bd28 thead {
  background: var(--color-primary);
  color: white;
}

.link-35de th,
.link-35de td,
.search-bd28 th,
.search-bd28 td,
.small_74b0 th,
.small_74b0 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .link-35de th,
  .link-35de td,
  .search-bd28 th,
  .search-bd28 td,
  .small_74b0 th,
  .small_74b0 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .link-35de,
  .search-bd28,
  .small_74b0 {
    min-width: 600px;
  }
}

.link-35de th,
.search-bd28 th,
.small_74b0 th {
  font-weight: 600;
}

.link-35de tbody tr:hover,
.search-bd28 tbody tr:hover,
.small_74b0 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.picture_slow_e745 h4 {
  color: white;
}

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

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

.label-504b:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

.dirty-045f {
  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);
}

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

.west-32c0 {
  font-weight: 600;
  color: white;
}

.new-9f48 {
  list-style: none;
  padding: 0;
}

.new-9f48 li {
  padding: var(--space-xs) 0;
}

.progress_98f3 {
  color: #4caf50;
}

.texture_9f8b {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.label-small-8cf7 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.next-8f68 .glass_55e0 {
  width: 100%;
  background: white;
}

.white_8330 .glass_55e0 {
  color: #667eea;
}

.liquid-15d5 .glass_55e0 {
  color: #f5576c;
}

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

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

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

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

.backdrop-liquid-e57d h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.link-gas-e1e0 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .backdrop-liquid-e57d {
    padding: var(--space-md);
  }
  
  .link-gas-e1e0 {
    padding: var(--space-md);
  }
  
  .caption-74cf {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.element_990f,
.lower_4890,
.notification-6580,
.paragraph_wood_d31b {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.sort-current-c4fa:hover {
  background: var(--color-primary-dark);
}

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

.accent-under-cefd h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.module-selected-5ab6 {
  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);
}

.status-df6f .module-selected-5ab6 {
  background: #e8f5e9;
  color: var(--color-success);
}

.table-6249 .module-selected-5ab6 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

.dim-24d7 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

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

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

.focused-24f9 {
  margin-top: var(--space-xxl);
}

.image-current-02e2 {
  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);
}

.under_7751 {
  text-align: center;
}

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

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

.block-b97e .west-32c0 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

@media (max-width: 768px) {
  .image-current-02e2 {
    grid-template-columns: 1fr;
  }
}

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

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

.background-29cf {
  margin-bottom: var(--space-xl);
}

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

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

.notification-27cb {
  color: var(--color-text-light);
}

.panel-silver-1b1c {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

.rough-5b8b {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.cool_9f01 {
  text-align: right;
}

.cool_9f01 .brown-a24d {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

.link-solid-7d34 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

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

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

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

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

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

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

.notification-fast-07a6 {
  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);
}

.notification-fast-07a6:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.lite-9ffe li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.mini-1fd7,
.plasma_80b8 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.mini-1fd7 h4,
.plasma_80b8 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.mini-1fd7 ul,
.plasma_80b8 ul {
  list-style: none;
  padding: 0;
}

.mini-1fd7 li,
.plasma_80b8 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.video-dim-1403 {
  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);
}

.advanced_11e4 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.video_31c2 .orange_25fc {
  color: #4caf50;
  font-size: 0.875rem;
}

.detail-active-f098 {
  list-style: none;
  padding: 0;
}

.detail-active-f098 li {
  margin-bottom: var(--space-xs);
}

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

.detail-active-f098 a:hover {
  color: white;
}

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

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

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

.stale_1184 a:hover {
  color: white;
}

.status-active-cfab {
  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);
}

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

.large-0dd3 a {
  color: #4caf50;
  text-decoration: none;
}

.input-right-f0d3 {
  font-size: 0.75rem;
  color: #666666;
}

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

.list-pink-58c8 {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.list-pink-58c8:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .status-active-cfab {
    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;
  }
  
  .notification-east-8c33 {
    font-size: 2rem;
  }
  
  .hard-af99 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .dim-6540,
  .caption-silver-3898 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .search_e651,
  .column-white-250c,
  .wood-8fdc,
  .filter_dac1,
  .shadow_4bd7,
  .large_5cfc,
  .accent-slow-e6e1,
  .background_next_7ddc {
    grid-template-columns: 1fr;
  }
  
  .left-87bd {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .paragraph_b1a8 {
    padding: var(--space-lg) 0;
  }
  
  .cool_8401 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .cool_8401 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .glass_55e0 {
    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;
  }
  
  .left-87bd {
    grid-template-columns: 1fr;
  }
  
  .caption_right_0dbb,
  .dirty-f2db,
  .background-glass-e808 {
    flex-direction: column;
    width: 100%;
  }
  
  .article_533b,
  .header-pro-490f,
  .caption_right_0dbb .glass_55e0,
  .dirty-f2db .glass_55e0 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .notification-east-8c33 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .hard-af99 {
    font-size: 1.375rem;
  }
  
  .message_3973 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .layout_wood_0828,
  .dropdown_stale_9229,
  .hovered_6bee,
  .banner-orange-4d84,
  .element-wide-23ba {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .dim-2778 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .box-9a16 {
    gap: var(--space-xs);
  }
  
  .tooltip_5efd {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .dirty-045f {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .block-b97e {
    width: 150px;
    height: 150px;
  }
  
  .icon_5b25 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .widget_bb4a,
  .status-2caf,
  .caption_right_0dbb,
  .bottom_e45d,
  .focus-warm-dca7,
  .button_7972,
  .out_567e {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .paragraph_b1a8 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 7fe7 */
.shadow-element-l4 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.2;
}
