/* ============================================
   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)
   ============================================ */
.widget-4bb6 {
  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;
}

.widget-4bb6:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.image-e1c9,
header,
.steel_7bf4,
.hover_action_0c2f,
.cold_5d81,
.hero-9483,
.article_3e02,
.soft-1f48,
.sidebar-602b {
  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
   ============================================ */
.image-e1c9 {
  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);
}

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

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

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

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

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

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

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

.light-bc9f {
  flex: 1;
}

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

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

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

.yellow_9c7d.fn-active-43c4 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.search-5549 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.middle_9391 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.link-yellow-bfc3[aria-expanded="true"] .surface_e135:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .light-bc9f {
    display: none;
  }
  
  .link-yellow-bfc3 {
    display: flex;
  }
  
  .shade_debb {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .middle_9391,
  .secondary_tiny_75ad {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .search-5549 {
    position: relative;
  }
  
  .over_ad50 {
    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;
  }
  
  .notice_a418[aria-expanded="true"] + .over_ad50 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .section_e692 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .image-over-d1c4 {
    gap: 8px;
  }
  
  .middle_9391 {
    display: none;
  }
  
  .secondary_tiny_75ad {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .cold_49ae img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.yellow-d53c svg {
  flex-shrink: 0;
}

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

.yellow-d53c a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.surface-small-e9cd {
  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;
}

.hero-inner-e22f {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-inner-e22f strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .silver_22e8 {
    grid-template-columns: 1fr;
  }
  
  .column_full_528d {
    font-size: 1.75rem;
  }
  
  .texture_a2d3 {
    order: -1;
    max-width: 100%;
  }
  
  .main_lower_7420 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .column_full_528d {
    font-size: 1.5rem;
  }
  
  .west_9596 {
    font-size: 1rem;
  }
  
  .first_a64c {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .main_lower_7420 {
    max-width: 250px;
  }
}

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

.aside-wood-1bd5 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.button-thick-b3f2 {
  background: var(--color-bg-section);
}

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

.aside-wood-0009 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.progress_slow_4dee 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) {
  .aside-2d7e {
    grid-template-columns: 1fr;
  }
  
  .outline-4198 {
    font-size: 1.75rem;
  }
  
  .feature-de75 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .outline-4198 {
    font-size: 1.5rem;
  }
  
  .feature-de75 h3 {
    font-size: 1.375rem;
  }
  
  .feature-de75 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.element-left-c8c8 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.menu-9a59 {
  flex-shrink: 0;
}

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

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

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

.row_b14e,
.right-386f,
.list-cc87 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.row_b14e thead,
.right-386f thead {
  background: var(--color-primary);
  color: white;
}

.row_b14e th,
.row_b14e td,
.right-386f th,
.right-386f td,
.list-cc87 th,
.list-cc87 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .row_b14e th,
  .row_b14e td,
  .right-386f th,
  .right-386f td,
  .list-cc87 th,
  .list-cc87 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .row_b14e,
  .right-386f,
  .list-cc87 {
    min-width: 600px;
  }
}

.row_b14e th,
.right-386f th,
.list-cc87 th {
  font-weight: 600;
}

.row_b14e tbody tr:hover,
.right-386f tbody tr:hover,
.list-cc87 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.tertiary_e826 h4 {
  color: white;
}

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

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

.popup-d3c3:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

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

.grid-1230 {
  list-style: none;
  padding: 0;
}

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

.block-east-1b41 {
  color: #4caf50;
}

.tertiary_e5ca {
  color: #ff9800;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .pagination-outer-04f0 {
    grid-template-columns: 1fr;
  }
}

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

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

.badge-cool-678d {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.down-6e86 .wrapper-bottom-a475 {
  width: 100%;
  background: white;
}

.primary-red-92e4 .wrapper-bottom-a475 {
  color: #667eea;
}

.new-84c0 .wrapper-bottom-a475 {
  color: #f5576c;
}

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

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

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

.border-6d06 {
  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);
}

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

.feature-dirty-6f19 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .dynamic-3146 {
    padding: var(--space-md);
  }
  
  .feature-dirty-6f19 {
    padding: var(--space-md);
  }
  
  .frame-4585 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.tooltip-medium-22ce,
.under-ffb9,
.component-f2c4,
.south_a634 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.sidebar-selected-11d1 {
  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) {
  .sidebar-selected-11d1 {
    font-size: 0.625rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

.carousel-tiny-972b {
  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);
}

.disabled_a2af .carousel-tiny-972b {
  background: #e8f5e9;
  color: var(--color-success);
}

.info_d2aa .carousel-tiny-972b {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.paragraph-paper-c15a {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.row-0049 {
  text-align: center;
}

.thumbnail_fdc3 {
  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-silver-879e {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.new-8b51 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.border_6154 {
  text-align: right;
}

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

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

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

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

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

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

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

.hover-bronze-19c6 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

.under-8aac strong {
  color: var(--color-primary);
}

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

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

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

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

.border-36d1 {
  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);
}

.border-36d1:hover {
  background: var(--color-bg-alt);
}

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

.border-36d1[aria-expanded="true"] .pagination-d48f {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.prev_459c ul,
.link_dynamic_56bc ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

.container-silver-d3a9 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.tiny_f2fa {
  font-style: italic;
}

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

.info-4a1c {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.icon-gold-885b {
  list-style: none;
  padding: 0;
  margin: 0;
}

.icon-gold-885b li {
  margin-bottom: var(--space-xs);
}

.icon-gold-885b a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.icon-gold-885b a:hover {
  color: white;
}

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

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

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

.hover-copper-985b {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.hover-copper-985b a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .liquid_1154,
  .video-thick-1dda {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.block-9d76 .breadcrumb_white_e44d {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.copper_1a74 a:hover {
  color: white;
}

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

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

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

.search_fixed_9c71 a:hover {
  color: white;
}

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

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

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

.content-west-60a4 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

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

.north-88d7:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .box-dca9 {
    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;
  }
  
  .column_full_528d {
    font-size: 2rem;
  }
  
  .outline-4198 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .silver_22e8,
  .aside-2d7e {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .pagination-outer-04f0,
  .red-cad4,
  .article_small_dfd8,
  .overlay_fea7,
  .info_4b3b,
  .widget-1cbe,
  .card_58e0,
  .liquid_1154,
  .video-thick-1dda {
    grid-template-columns: 1fr;
  }
  
  .full_05d7 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .article_3e02 {
    padding: var(--space-lg) 0;
  }
  
  .block_small_a090 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .block_small_a090 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .wrapper-bottom-a475 {
    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;
  }
  
  .full_05d7 {
    grid-template-columns: 1fr;
  }
  
  .text_fluid_852b,
  .link_ecc3,
  .section-0622 {
    flex-direction: column;
    width: 100%;
  }
  
  .box_dirty_5843,
  .rough_3cee,
  .text_fluid_852b .wrapper-bottom-a475,
  .link_ecc3 .wrapper-bottom-a475 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .column_full_528d {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .outline-4198 {
    font-size: 1.375rem;
  }
  
  .surface_outer_4318 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .advanced_6463,
  .wood_db84,
  .search_mini_08ee,
  .right_2270,
  .fast-68a4 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .sidebar-selected-11d1 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .right_b6e3 {
    gap: var(--space-xs);
  }
  
  .yellow-d53c {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .left_c63d {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .thumbnail_fdc3 {
    width: 150px;
    height: 150px;
  }
  
  .layout-silver-879e {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .image-e1c9,
  .steel_7bf4,
  .text_fluid_852b,
  .info-4a1c,
  .soft-1f48,
  .sidebar-602b,
  .link-yellow-bfc3 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .article_3e02 {
    page-break-inside: avoid;
  }
}

/* css-noise: 2021 */
.widget-item-m4 {
  padding: 0.2rem;
  font-size: 11px;
  line-height: 1.2;
}
