/* ============================================
   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)
   ============================================ */
.shade-top-d12f {
  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;
}

.shade-top-d12f:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.narrow_1f01,
header,
.thumbnail-outer-2ff6,
.full_44ea,
.table_iron_e39e,
.banner_fast_0404,
.lite-8124,
.message-center-1ea5,
.footer_pressed_a6ce {
  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
   ============================================ */
.narrow_1f01 {
  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);
}

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

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

/* Scrolled state */
.narrow_1f01.nav-wide-46fb {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

.description-stale-2db2 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.notice_fdd3 {
  flex: 1;
}

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

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

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

.header_liquid_3511.fn-active-1b6c {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.background_529e svg {
  flex-shrink: 0;
}

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

.accent-yellow-7ba4: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);
}

.accent-yellow-7ba4 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .notice_fdd3 {
    display: none;
  }
  
  .hidden_2686 {
    display: flex;
  }
  
  .bright-cec5 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .background_529e,
  .accent-yellow-7ba4 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .status_fixed_25ae {
    position: relative;
  }
  
  .backdrop_outer_c98c {
    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;
  }
  
  .green_3afc[aria-expanded="true"] + .backdrop_outer_c98c {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .sidebar-static-0d8b {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .plasma_7988 {
    gap: 8px;
  }
  
  .background_529e {
    display: none;
  }
  
  .accent-yellow-7ba4 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .main_30dd img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.chip-3ef1 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.chip-3ef1 svg {
  flex-shrink: 0;
}

.chip-3ef1 a {
  color: var(--color-primary);
  text-decoration: none;
}

.chip-3ef1 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.lite-9b0e {
  color: var(--color-text-lighter);
}

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

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

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

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

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

.caption-narrow-2ca6 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

.highlight-last-8ca8 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tooltip-bdfe {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .icon_3b17 {
    grid-template-columns: 1fr;
  }
  
  .image_cf4a {
    font-size: 1.75rem;
  }
  
  .highlight-last-8ca8 {
    order: -1;
    max-width: 100%;
  }
  
  .tooltip-bdfe {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .image_cf4a {
    font-size: 1.5rem;
  }
  
  .sidebar_de9e {
    font-size: 1rem;
  }
  
  .link_766f {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .tooltip-bdfe {
    max-width: 250px;
  }
}

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

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

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

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

.alert-12ea:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.row-hard-e566 {
  background: var(--color-bg-section);
}

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

.gradient-west-c4ba {
  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);
}

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

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

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

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

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

.section-723a img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.section-723a 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);
}

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

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

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

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

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

.section-723a strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

.element-6c24 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.element-6c24 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) {
  .banner-7207 {
    grid-template-columns: 1fr;
  }
  
  .bronze_34e4 {
    font-size: 1.75rem;
  }
  
  .section-723a {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .bronze_34e4 {
    font-size: 1.5rem;
  }
  
  .section-723a h3 {
    font-size: 1.375rem;
  }
  
  .section-723a h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.badge-eba7 {
  flex-shrink: 0;
}

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

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

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

.component_brown_5e7d,
.info_thick_3bf6,
.pro-d43f {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.component_brown_5e7d thead,
.info_thick_3bf6 thead {
  background: var(--color-primary);
  color: white;
}

.component_brown_5e7d th,
.component_brown_5e7d td,
.info_thick_3bf6 th,
.info_thick_3bf6 td,
.pro-d43f th,
.pro-d43f td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .component_brown_5e7d th,
  .component_brown_5e7d td,
  .info_thick_3bf6 th,
  .info_thick_3bf6 td,
  .pro-d43f th,
  .pro-d43f td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .component_brown_5e7d,
  .info_thick_3bf6,
  .pro-d43f {
    min-width: 600px;
  }
}

.component_brown_5e7d th,
.info_thick_3bf6 th,
.pro-d43f th {
  font-weight: 600;
}

.component_brown_5e7d tbody tr:hover,
.info_thick_3bf6 tbody tr:hover,
.pro-d43f tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.up-66ae h4 {
  color: white;
}

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

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

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

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

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

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

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

.feature-ccc9:hover {
  text-decoration: underline;
}

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

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

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

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

.black-383e {
  list-style: none;
  padding: 0;
}

.black-383e li {
  padding: var(--space-xs) 0;
}

.sort-f67e {
  color: #4caf50;
}

.card_thick_2b5a {
  color: #ff9800;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .content-hot-16b0 {
    grid-template-columns: 1fr;
  }
}

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

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

.article-9f71 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.top-f8dc .thumbnail_complex_4883 {
  width: 100%;
  background: white;
}

.thumbnail-black-6da8 .thumbnail_complex_4883 {
  color: #667eea;
}

.gradient_8a03 .thumbnail_complex_4883 {
  color: #f5576c;
}

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

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

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

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

.form-west-919e h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .form-west-919e {
    padding: var(--space-md);
  }
  
  .silver_4b25 {
    padding: var(--space-md);
  }
  
  .paper_37c7 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.widget-east-921f ol,
.widget-east-921f ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.widget-east-921f li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.dropdown-dark-4854,
.notice_24db,
.active-76e9,
.texture-4955 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.preview-purple-03fe {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

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

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

.element-prev-b40c {
  border-color: var(--color-warning);
}

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

.notice_complex_ba01 .current_59d2 {
  background: #e8f5e9;
  color: var(--color-success);
}

.element-prev-b40c .current_59d2 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.card-light-0a03 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.complex_26dc {
  text-align: center;
}

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

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

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

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

.caption-yellow-e1f1 p {
  margin-bottom: var(--space-md);
}

.tabs-wide-0b05 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

.tag-smooth-7352 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

.backdrop-medium-d0c1 {
  border: 2px solid #4caf50;
}

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

.label-760a {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.pagination-pink-2a33 {
  text-align: right;
}

.pagination-pink-2a33 .popup_bottom_fcad {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.filter-b328 {
  background: #e8f5e9;
  color: #2e7d32;
}

.soft-6345 {
  background: #e3f2fd;
  color: #1565c0;
}

.logo-303c {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.logo-tall-ad68 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.narrow-1d42 {
  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);
}

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

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

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

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

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

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

.row_west_cb4d h4,
.warm_e578 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.row_west_cb4d ul,
.warm_e578 ul {
  list-style: none;
  padding: 0;
}

.row_west_cb4d li,
.warm_e578 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.slider-228b ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.blue-4d8d {
  font-style: italic;
}

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

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

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

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

.label-out-52f9 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.progress_65f0 a:hover {
  color: white;
}

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

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

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

.nav-tiny-04b2 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.nav-tiny-04b2 a:hover {
  color: white;
}

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

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

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

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

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

.wood_0cab .caption-narrow-2ca6 {
  color: #4caf50;
  font-size: 0.875rem;
}

.gallery-9fb4 {
  list-style: none;
  padding: 0;
}

.gallery-9fb4 li {
  margin-bottom: var(--space-xs);
}

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

.gallery-9fb4 a:hover {
  color: white;
}

.primary-next-a36a {
  list-style: none;
  padding: 0;
}

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

.primary-next-a36a a {
  color: #b0b0b0;
  text-decoration: none;
}

.primary-next-a36a a:hover {
  color: white;
}

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

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

.message-old-0e12 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

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

.table-prev-5dad {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.table-prev-5dad:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .image_dim_7b2c {
    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;
  }
  
  .image_cf4a {
    font-size: 2rem;
  }
  
  .bronze_34e4 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .icon_3b17,
  .banner-7207 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .content-hot-16b0,
  .hovered_f209,
  .container_down_645a,
  .button-58b1,
  .image_a3b5,
  .message_9124,
  .link-lower-fe30,
  .shadow-5484,
  .easy_27ec {
    grid-template-columns: 1fr;
  }
  
  .button-stone-1211 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .lite-8124 {
    padding: var(--space-lg) 0;
  }
  
  .texture_black_5b7c li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .texture_black_5b7c li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .thumbnail_complex_4883 {
    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;
  }
  
  .button-stone-1211 {
    grid-template-columns: 1fr;
  }
  
  .hover_left_c0a9,
  .label-out-52f9,
  .pattern-1e07 {
    flex-direction: column;
    width: 100%;
  }
  
  .border_f8bb,
  .table_881e,
  .hover_left_c0a9 .thumbnail_complex_4883,
  .label-out-52f9 .thumbnail_complex_4883 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .image_cf4a {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .bronze_34e4 {
    font-size: 1.375rem;
  }
  
  .overlay_836a {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .notice_41f5,
  .fixed_06bb,
  .simple_e5a3,
  .badge_dark_68e8,
  .down_b666 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .grid_gas_dad7 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .pattern_hot_8f95 {
    gap: var(--space-xs);
  }
  
  .chip-3ef1 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .mini_1a98 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .image_905c {
    width: 150px;
    height: 150px;
  }
  
  .layout-large-d137 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .narrow_1f01,
  .thumbnail-outer-2ff6,
  .hover_left_c0a9,
  .breadcrumb_3df1,
  .message-center-1ea5,
  .footer_pressed_a6ce,
  .hidden_2686 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .lite-8124 {
    page-break-inside: avoid;
  }
}

/* css-noise: f55d */
.shadow-element-r0 {
  padding: 0.4rem;
  font-size: 11px;
  line-height: 1.0;
}
