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

.hover-bbe4:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.down_7a95,
header,
.tabs_0f1f,
.header-huge-61d9,
.over_b5ed,
.hover-fa10,
.popup_up_c01c,
.narrow_7b48,
.background_small_d5cc {
  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
   ============================================ */
.down_7a95 {
  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);
}

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

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

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

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

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

.shadow-7837 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.clean_c60f {
  flex: 1;
}

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

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

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

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

/* Dropdown Navigation */
.overlay-d67e {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.medium-7b30 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .clean_c60f {
    display: none;
  }
  
  .copper_2278 {
    display: flex;
  }
  
  .current-ae1d {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .medium-7b30,
  .article_3fb5 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .overlay-d67e {
    position: relative;
  }
  
  .dim-6911 {
    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;
  }
  
  .accordion_steel_8929[aria-expanded="true"] + .dim-6911 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .wood-3d01 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .glass-cfa7 {
    gap: 8px;
  }
  
  .medium-7b30 {
    display: none;
  }
  
  .article_3fb5 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .shadow-7837 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.list_acdb svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.in-1cf9 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.picture-pressed-5606 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

.overlay-360d {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.rough-8a70 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .texture-cfec {
    grid-template-columns: 1fr;
  }
  
  .input_f90e {
    font-size: 1.75rem;
  }
  
  .rough-8a70 {
    order: -1;
    max-width: 100%;
  }
  
  .box_cf5f {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .input_f90e {
    font-size: 1.5rem;
  }
  
  .image-medium-0259 {
    font-size: 1rem;
  }
  
  .in-1cf9 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .box_cf5f {
    max-width: 250px;
  }
}

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

.banner-paper-8c05 {
  background: var(--color-primary);
  color: white;
}

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

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

.sort-30f6:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.picture-focused-1364 {
  background: var(--color-bg-section);
}

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

.hero-advanced-e00e {
  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);
}

.alert-5ed3 {
  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);
}

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

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

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

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

.west-967d img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.west-967d 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);
}

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

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

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

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

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

.west-967d strong {
  font-weight: 600;
  color: var(--color-text);
}

.west-967d a {
  color: var(--color-primary);
  text-decoration: underline;
}

.west-967d a:hover {
  color: var(--color-primary-dark);
}

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

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

.element_next_85be 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) {
  .title-medium-5427 {
    grid-template-columns: 1fr;
  }
  
  .alert-5ed3 {
    font-size: 1.75rem;
  }
  
  .west-967d {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .alert-5ed3 {
    font-size: 1.5rem;
  }
  
  .west-967d h3 {
    font-size: 1.375rem;
  }
  
  .west-967d h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.pagination-yellow-4a17 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.description-fast-286a {
  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;
}

.texture-3a3c {
  flex-shrink: 0;
}

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

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

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

.lower_5834,
.video-8e0b,
.old_551c {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.lower_5834 thead,
.video-8e0b thead {
  background: var(--color-primary);
  color: white;
}

.lower_5834 th,
.lower_5834 td,
.video-8e0b th,
.video-8e0b td,
.old_551c th,
.old_551c td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .lower_5834 th,
  .lower_5834 td,
  .video-8e0b th,
  .video-8e0b td,
  .old_551c th,
  .old_551c td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .lower_5834,
  .video-8e0b,
  .old_551c {
    min-width: 600px;
  }
}

.lower_5834 th,
.video-8e0b th,
.old_551c th {
  font-weight: 600;
}

.lower_5834 tbody tr:hover,
.video-8e0b tbody tr:hover,
.old_551c tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.slider-hard-caa1 h4 {
  color: white;
}

.picture-north-0bd6 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

.right-78ea:hover {
  text-decoration: underline;
}

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

.stale-2f43 {
  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);
}

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

.hard-8ecc {
  font-weight: 600;
  color: white;
}

.heading-283a {
  list-style: none;
  padding: 0;
}

.heading-283a li {
  padding: var(--space-xs) 0;
}

.primary_top_ad5f {
  color: #4caf50;
}

.nav_stone_ed2e {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.element-large-7bde {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.blue-4e6c .sidebar_purple_11c4 {
  width: 100%;
  background: white;
}

.wrapper-7d19 .sidebar_purple_11c4 {
  color: #667eea;
}

.tag_iron_d14c .sidebar_purple_11c4 {
  color: #f5576c;
}

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

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

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

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

.brown-9c40 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.component-old-b908 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .brown-9c40 {
    padding: var(--space-md);
  }
  
  .component-old-b908 {
    padding: var(--space-md);
  }
  
  .fresh_7414 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.outline-top-5b86,
.tooltip-22a4,
.notice_4db1,
.highlight_b135 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.notice-5d48:hover {
  background: var(--color-primary-dark);
}

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

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

.accordion-cool-6c87 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

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

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

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

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

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

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

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

.feature-b9ba .chip_south_dd10 {
  background: #e8f5e9;
  color: var(--color-success);
}

.sidebar_d687 .chip_south_dd10 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

.accordion-hard-5eb5 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

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

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

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

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

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

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

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

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

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

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

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

.module-9cf8 {
  text-align: center;
}

.hidden-9a44 {
  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);
}

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

.hidden-9a44 .hard-8ecc {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.mask-657d {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.paper-2869 {
  text-align: right;
}

.paper-2869 .table-prev-a0e6 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.north-fc0b {
  background: #e8f5e9;
  color: #2e7d32;
}

.hard-4fa3 {
  background: #e3f2fd;
  color: #1565c0;
}

.fluid-b73c {
  background: #fff3e0;
  color: #e65100;
}

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

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

.grid-4b83 {
  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);
}

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

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

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

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

.modal-white-7da9 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

.secondary-cold-0d3f {
  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);
}

.secondary-cold-0d3f:hover {
  background: var(--color-bg-alt);
}

.summary-brown-bc07 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.secondary-cold-0d3f[aria-expanded="true"] .summary-brown-bc07 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.content_e8a6,
.under-1b1b {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.content_e8a6 h4,
.under-1b1b h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.content_e8a6 ul,
.under-1b1b ul {
  list-style: none;
  padding: 0;
}

.content_e8a6 li,
.under-1b1b li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.notification_left_3071 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.tall-1d20 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

.north_813a a:hover {
  color: white;
}

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

.filter-4d5a 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);
}

.filter-4d5a a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

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

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

.background_under_4db7 a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .progress-6500,
  .table-motion-3586 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.blue-b5c5 .picture-pressed-5606 {
  color: #4caf50;
  font-size: 0.875rem;
}

.image-81b1 {
  list-style: none;
  padding: 0;
}

.image-81b1 li {
  margin-bottom: var(--space-xs);
}

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

.image-81b1 a:hover {
  color: white;
}

.purple-47df {
  list-style: none;
  padding: 0;
}

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

.purple-47df a {
  color: #b0b0b0;
  text-decoration: none;
}

.purple-47df a:hover {
  color: white;
}

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

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

.fluid-8db5 a {
  color: #4caf50;
  text-decoration: none;
}

.south-7b82 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

.hero-blue-4d7d {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.hero-blue-4d7d:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hard_4310 {
    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;
  }
  
  .input_f90e {
    font-size: 2rem;
  }
  
  .alert-5ed3 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .texture-cfec,
  .title-medium-5427 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .soft_6e7e,
  .popup-12c5,
  .heading_wide_f3d9,
  .list_2f1e,
  .texture_3eb6,
  .row_c331,
  .sidebar-ba93,
  .progress-6500,
  .table-motion-3586 {
    grid-template-columns: 1fr;
  }
  
  .soft-d5d1 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .popup_up_c01c {
    padding: var(--space-lg) 0;
  }
  
  .column_0408 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .column_0408 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .sidebar_purple_11c4 {
    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;
  }
  
  .soft-d5d1 {
    grid-template-columns: 1fr;
  }
  
  .overlay-360d,
  .hero_97a4,
  .accordion-cool-6c87 {
    flex-direction: column;
    width: 100%;
  }
  
  .fresh_0ee0,
  .mask_2c10,
  .overlay-360d .sidebar_purple_11c4,
  .hero_97a4 .sidebar_purple_11c4 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .input_f90e {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .alert-5ed3 {
    font-size: 1.375rem;
  }
  
  .frame_13d5 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .popup-8d60,
  .border-current-4696,
  .footer-advanced-e075,
  .north_b35c,
  .picture-dark-aa4f {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .tertiary_center_2227 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .summary_411e {
    gap: var(--space-xs);
  }
  
  .list_acdb {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .stale-2f43 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .hidden-9a44 {
    width: 150px;
    height: 150px;
  }
  
  .chip_paper_0e72 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .down_7a95,
  .tabs_0f1f,
  .overlay-360d,
  .tooltip_active_85b0,
  .narrow_7b48,
  .background_small_d5cc,
  .copper_2278 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .popup_up_c01c {
    page-break-inside: avoid;
  }
}

/* css-noise: 46e9 */
.ghost-box-p1 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.3;
}
