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

.thumbnail_a02c:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.pagination-last-7a02,
header,
.caption-9dbd,
.west-b2c5,
.tag_14a5,
.header-old-c46e,
.active-c57d,
.complex_05a2,
.icon-right-18c3 {
  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
   ============================================ */
.pagination-last-7a02 {
  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);
}

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

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

/* Scrolled state */
.pagination-last-7a02.preview_06d7 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.last-30d7 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.under-3ddf {
  flex: 1;
}

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

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

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

.detail_north_c3f7.fn-active-84a3 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.component-119b {
  position: relative;
}

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

.overlay-tall-bbed svg {
  transition: transform 0.2s ease;
}

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

.card-glass-2dd2 {
  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;
}

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

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

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

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

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

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

/* Header Login Button */
.disabled-dark-346a {
  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;
}

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

.disabled-dark-346a svg {
  flex-shrink: 0;
}

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

.shadow-56f2: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);
}

.shadow-56f2 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.section-dynamic-5374[aria-expanded="true"] .texture-0dae:nth-child(2) {
  opacity: 0;
}

.section-dynamic-5374[aria-expanded="true"] .texture-0dae:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .under-3ddf {
    display: none;
  }
  
  .section-dynamic-5374 {
    display: flex;
  }
  
  .image_south_37d5 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .disabled-dark-346a,
  .shadow-56f2 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .component-119b {
    position: relative;
  }
  
  .card-glass-2dd2 {
    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;
  }
  
  .overlay-tall-bbed[aria-expanded="true"] + .card-glass-2dd2 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .hidden-old-fb1a {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .small_1c6c {
    gap: 8px;
  }
  
  .disabled-dark-346a {
    display: none;
  }
  
  .shadow-56f2 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .last-30d7 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .shadow-56f2 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .shadow-56f2 svg {
    width: 14px;
    height: 14px;
  }
  
  .cool-4d33 {
    gap: var(--space-sm);
  }
}

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

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

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

.easy_7075 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.tag-center-03bd a {
  color: var(--color-primary);
  text-decoration: none;
}

.tag-center-03bd a:hover {
  text-decoration: underline;
}

.table-selected-0c4c {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

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

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

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

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

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

.preview-over-4cb3 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .logo_3e8b {
    grid-template-columns: 1fr;
  }
  
  .focus_1a7d {
    font-size: 1.75rem;
  }
  
  .east_feaf {
    order: -1;
    max-width: 100%;
  }
  
  .preview-over-4cb3 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .focus_1a7d {
    font-size: 1.5rem;
  }
  
  .motion-4341 {
    font-size: 1rem;
  }
  
  .tag-center-03bd {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .preview-over-4cb3 {
    max-width: 250px;
  }
}

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

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

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

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

.border-pink-23c8:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

.search-last-7fbf:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

.search-mini-949b {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

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

.video-a949 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;
}

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

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

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

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

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

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

.hover-over-54e0 {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

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

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

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

.wrapper_5393 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin: var(--space-xl) 0 var(--space-md);
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

.panel_7c10 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) {
  .paragraph_ede2 {
    grid-template-columns: 1fr;
  }
  
  .image_2251 {
    font-size: 1.75rem;
  }
  
  .wrapper_5393 {
    max-width: 100%;
  }
}

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

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

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

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

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

.frame-slow-9b29 strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

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

.box_7718 {
  flex-shrink: 0;
}

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

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

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

.easy_5db3,
.overlay_67b7,
.footer_d2b9 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.easy_5db3 thead,
.overlay_67b7 thead {
  background: var(--color-primary);
  color: white;
}

.easy_5db3 th,
.easy_5db3 td,
.overlay_67b7 th,
.overlay_67b7 td,
.footer_d2b9 th,
.footer_d2b9 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .easy_5db3 th,
  .easy_5db3 td,
  .overlay_67b7 th,
  .overlay_67b7 td,
  .footer_d2b9 th,
  .footer_d2b9 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .easy_5db3,
  .overlay_67b7,
  .footer_d2b9 {
    min-width: 600px;
  }
}

.easy_5db3 th,
.overlay_67b7 th,
.footer_d2b9 th {
  font-weight: 600;
}

.easy_5db3 tbody tr:hover,
.overlay_67b7 tbody tr:hover,
.footer_d2b9 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.carousel_fafa h4 {
  color: white;
}

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

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

.simple-982e:last-child {
  border-bottom: none;
}

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

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

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

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

.icon-full-d981:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.tooltip_2cf5 {
  color: #4caf50;
}

.link-black-a4d7 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

.search-dirty-7d31:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.search-dirty-7d31 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.heading-796b ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

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

.heading-796b .message-pro-b924 {
  width: 100%;
  background: white;
}

.frame-thick-fa3d .message-pro-b924 {
  color: #667eea;
}

.feature_purple_10ca .message-pro-b924 {
  color: #f5576c;
}

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

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

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

.content-upper-9de3 {
  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);
}

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

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

@media (max-width: 768px) {
  .warm_76e3 {
    padding: var(--space-md);
  }
  
  .aside_small_29f0 {
    padding: var(--space-md);
  }
  
  .thumbnail_d643 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.cool-1ae2 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.input_gold_effa,
.basic_184c,
.primary-hot-4c7e,
.layout_99aa {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.content-mini-c48f h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.info_cool_518d {
  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_next_b987 .info_cool_518d {
  background: #e8f5e9;
  color: var(--color-success);
}

.up_647c .info_cool_518d {
  background: #fff3e0;
  color: var(--color-warning);
}

.nav-down-61fb h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.nav-down-61fb p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.grid-blue-0e92 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

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

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

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

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

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

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

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

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

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

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

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

.selected-367c {
  text-align: center;
}

.red-2baf {
  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);
}

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

.red-2baf .hero_green_01c9 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

.input-black-502f {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

.pink-8b24 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.active_3504 {
  text-align: right;
}

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

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

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

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

.image-smooth-7e90 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

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

.left-5b7a {
  background: #e8f5e9;
  color: #2e7d32;
}

.breadcrumb-71c2 {
  background: #e3f2fd;
  color: #1565c0;
}

.advanced-ec6d {
  background: #fff3e0;
  color: #e65100;
}

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

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

.active-west-cb6c {
  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);
}

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

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

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

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

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

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

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

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

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

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

.list-4bbc {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.glass-e61b[aria-expanded="true"] .list-4bbc {
  transform: rotate(180deg);
}

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

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

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

.gold-04c7 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.hover_2ffa,
.plasma-8177 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.hover_2ffa h4,
.plasma-8177 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.hover_2ffa ul,
.plasma-8177 ul {
  list-style: none;
  padding: 0;
}

.hover_2ffa li,
.plasma-8177 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.element-red-00f3 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.right-3d06 {
  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);
}

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

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

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

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

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

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

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

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

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

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

.tag_e116 .fluid-a422 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.photo_c126 a:hover {
  color: white;
}

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

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

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

.secondary_medium_d092 a:hover {
  color: white;
}

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

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

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

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

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

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

.active-ab60:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .primary_ed30 {
    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;
  }
  
  .focus_1a7d {
    font-size: 2rem;
  }
  
  .image_2251 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .logo_3e8b,
  .paragraph_ede2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .element_blue_7fe5,
  .gradient_paper_a790,
  .widget_9175,
  .plasma_b162,
  .tabs_under_9e94,
  .nav-2c51,
  .section-022d,
  .complex-c35e {
    grid-template-columns: 1fr;
  }
  
  .mask-fast-089f {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .active-c57d {
    padding: var(--space-lg) 0;
  }
  
  .video-a949 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .video-a949 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .message-pro-b924 {
    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;
  }
  
  .mask-fast-089f {
    grid-template-columns: 1fr;
  }
  
  .info_39e6,
  .clean_de4c,
  .hero_dbdc {
    flex-direction: column;
    width: 100%;
  }
  
  .bronze-d027,
  .pressed-8586,
  .info_39e6 .message-pro-b924,
  .clean_de4c .message-pro-b924 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .focus_1a7d {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .image_2251 {
    font-size: 1.375rem;
  }
  
  .surface-action-f5c9 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .search-last-7fbf,
  .search-dirty-7d31,
  .pagination-cold-62e4,
  .soft-4475,
  .surface_hot_e5ab {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .thumbnail-1e0d {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .frame_a50b {
    gap: var(--space-xs);
  }
  
  .easy_7075 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .primary_e6bc {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .red-2baf {
    width: 150px;
    height: 150px;
  }
  
  .pagination-aef8 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .pagination-last-7a02,
  .caption-9dbd,
  .info_39e6,
  .large-7204,
  .complex_05a2,
  .icon-right-18c3,
  .section-dynamic-5374 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .active-c57d {
    page-break-inside: avoid;
  }
}

/* css-noise: 5b35 */
.ghost-box-i4 {
  padding: 0.2rem;
  font-size: 13px;
  line-height: 1.3;
}
