/* ============================================
   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)
   ============================================ */
.card-full-1ef4 {
  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;
}

.card-full-1ef4:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.outline-e5a5,
header,
.row_f826,
.last_36e7,
.light_7a66,
.right_5c7e,
.thumbnail-red-a64d,
.fluid-26cc,
.preview-57e5 {
  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
   ============================================ */
.outline-e5a5 {
  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);
}

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

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

/* Scrolled state */
.outline-e5a5.preview-93ed {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.table-hard-8dd0 img {
  height: 36px;
  width: auto;
  display: block;
}

.tabs-black-600e {
  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;
}

.pro_7a68 {
  flex: 1;
}

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

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

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

.table_c899.fn-active-c082 {
  background: var(--color-primary);
  color: white;
}

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

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

.secondary-0a6a svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.overlay_dirty_d562 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.motion-964e[aria-expanded="true"] .narrow-713e:nth-child(2) {
  opacity: 0;
}

.motion-964e[aria-expanded="true"] .narrow-713e:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .pro_7a68 {
    display: none;
  }
  
  .motion-964e {
    display: flex;
  }
  
  .tabs-black-600e {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .overlay_dirty_d562,
  .static-7013 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .prev_e909 {
    position: relative;
  }
  
  .warm_d72c {
    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;
  }
  
  .secondary-0a6a[aria-expanded="true"] + .warm_d72c {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .glass-1263 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .grid_5bad {
    gap: 8px;
  }
  
  .overlay_dirty_d562 {
    display: none;
  }
  
  .static-7013 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .table-hard-8dd0 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.avatar-ce42 svg {
  flex-shrink: 0;
}

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

.avatar-ce42 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.feature-selected-1b4f a {
  color: var(--color-primary);
  text-decoration: none;
}

.feature-selected-1b4f a:hover {
  text-decoration: underline;
}

.carousel-blue-a889 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

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

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

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

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

.heading-left-4abb {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

.grid-upper-00ac {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

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

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

@media (max-width: 968px) {
  .pagination_d829 {
    grid-template-columns: 1fr;
  }
  
  .wrapper_ef9c {
    font-size: 1.75rem;
  }
  
  .heading-left-4abb {
    order: -1;
    max-width: 100%;
  }
  
  .chip_black_0789 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .wrapper_ef9c {
    font-size: 1.5rem;
  }
  
  .tag-a073 {
    font-size: 1rem;
  }
  
  .feature-selected-1b4f {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .chip_black_0789 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.last-0d39 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

.frame-bright-8ac5:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

.section-bottom-729a {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

.brown-365c {
  list-style: none;
  counter-reset: toc-counter;
}

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

.brown-365c 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);
}

.brown-365c 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;
}

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

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

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

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

.hidden-narrow-ac14 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hard_6659 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) {
  .content-f05b {
    grid-template-columns: 1fr;
  }
  
  .advanced_e12d {
    font-size: 1.75rem;
  }
  
  .carousel_copper_e917 {
    max-width: 100%;
  }
}

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

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

.label-current-dc29 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.primary-green-4a9a {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.soft_9f93 {
  flex-shrink: 0;
}

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

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

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

.first-20fb,
.dirty_cdf7,
.plasma-4731 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.first-20fb thead,
.dirty_cdf7 thead {
  background: var(--color-primary);
  color: white;
}

.first-20fb th,
.first-20fb td,
.dirty_cdf7 th,
.dirty_cdf7 td,
.plasma-4731 th,
.plasma-4731 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .first-20fb th,
  .first-20fb td,
  .dirty_cdf7 th,
  .dirty_cdf7 td,
  .plasma-4731 th,
  .plasma-4731 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .first-20fb,
  .dirty_cdf7,
  .plasma-4731 {
    min-width: 600px;
  }
}

.first-20fb th,
.dirty_cdf7 th,
.plasma-4731 th {
  font-weight: 600;
}

.first-20fb tbody tr:hover,
.dirty_cdf7 tbody tr:hover,
.plasma-4731 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.warm-a89c h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

.icon-prev-d50d {
  font-weight: 600;
  color: white;
}

.steel-d440 {
  list-style: none;
  padding: 0;
}

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

.nav_black_fa4a {
  color: #4caf50;
}

.feature-0ee2 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.advanced-6f46 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slider_4831 .video-6267 {
  width: 100%;
  background: white;
}

.border-next-b106 .video-6267 {
  color: #667eea;
}

.container_5c90 .video-6267 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .red-f829 {
    padding: var(--space-md);
  }
  
  .hover-9764 {
    padding: var(--space-md);
  }
  
  .sidebar-6486 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.title_6b4d,
.picture-soft-a7e7,
.widget-ff24,
.button-fbbe {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.description-paper-9a6c h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.article-1a74 {
  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);
}

.banner_stone_502b .article-1a74 {
  background: #e8f5e9;
  color: var(--color-success);
}

.image_a1a3 .article-1a74 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.badge-blue-69fa {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.action-70af {
  margin-top: var(--space-xxl);
}

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

.center_225e {
  text-align: center;
}

.medium-9c8e {
  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);
}

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

.medium-9c8e .icon-prev-d50d {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.section-cool-bdf7 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fixed-ccbb {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.footer-dirty-8053 {
  text-align: right;
}

.footer-dirty-8053 .footer-3a92 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.backdrop-c7ff {
  background: #e8f5e9;
  color: #2e7d32;
}

.tertiary-advanced-1a70 {
  background: #e3f2fd;
  color: #1565c0;
}

.component-00fb {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.secondary-easy-4d9c {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.frame_short_1682[aria-expanded="true"] .secondary-easy-4d9c {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.info_hard_0e00,
.media-51e1 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.info_hard_0e00 h4,
.media-51e1 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.info_hard_0e00 ul,
.media-51e1 ul {
  list-style: none;
  padding: 0;
}

.info_hard_0e00 li,
.media-51e1 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

.layout-warm-1a6f {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

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

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

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

.icon_right_ce4d {
  font-style: italic;
}

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

.form-hot-40c6 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tag-ecef .tooltip_3ad6 {
  color: #4caf50;
  font-size: 0.875rem;
}

.summary-0746 {
  list-style: none;
  padding: 0;
}

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

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

.summary-0746 a:hover {
  color: white;
}

.header-selected-c89a {
  list-style: none;
  padding: 0;
}

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

.header-selected-c89a a {
  color: #b0b0b0;
  text-decoration: none;
}

.header-selected-c89a a:hover {
  color: white;
}

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

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

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

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

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

.panel-bright-ec9c {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.panel-bright-ec9c:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .label_gas_babd {
    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;
  }
  
  .wrapper_ef9c {
    font-size: 2rem;
  }
  
  .advanced_e12d {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .pagination_d829,
  .content-f05b {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .hard-19bd,
  .rough_45e2,
  .thumbnail-5101,
  .secondary_849b,
  .icon_last_f7a0,
  .complex-47f7,
  .east-f41b,
  .element_iron_9848 {
    grid-template-columns: 1fr;
  }
  
  .smooth-d207 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .thumbnail-red-a64d {
    padding: var(--space-lg) 0;
  }
  
  .brown-365c li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .brown-365c li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .video-6267 {
    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;
  }
  
  .smooth-d207 {
    grid-template-columns: 1fr;
  }
  
  .mask-aa84,
  .red-5bfa,
  .progress_west_adc8 {
    flex-direction: column;
    width: 100%;
  }
  
  .last-0d39,
  .tiny-b763,
  .mask-aa84 .video-6267,
  .red-5bfa .video-6267 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .wrapper_ef9c {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .advanced_e12d {
    font-size: 1.375rem;
  }
  
  .outline-over-5e81 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .frame-bright-8ac5,
  .detail_yellow_0bd1,
  .input-a70e,
  .article-9e72,
  .label-1b86 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .heading-1619 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .popup-cf76 {
    gap: var(--space-xs);
  }
  
  .avatar-ce42 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .basic_1add {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .medium-9c8e {
    width: 150px;
    height: 150px;
  }
  
  .motion-e35e {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .outline-e5a5,
  .row_f826,
  .mask-aa84,
  .form-hot-40c6,
  .fluid-26cc,
  .preview-57e5,
  .motion-964e {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .thumbnail-red-a64d {
    page-break-inside: avoid;
  }
}

/* css-noise: 8773 */
.ghost-box-y4 {
  padding: 0.5rem;
  font-size: 10px;
  line-height: 1.2;
}
