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

.primary_3c95:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container.
   html/body are excluded on purpose: releasing their max-width removes the
   last guard against a horizontally scrollable page. */
.block_e5da,
header,
.sort_hard_da7b,
.pagination-27c3,
.texture_cba5,
.white-60e4,
.mask-lower-a0e3,
.title_bright_b380,
.pro_a6d0 {
  max-width: none;
}

/* overflow-x stays off <html>: pairing it with body's hidden turns <html>
   into its own scroll container and breaks the sticky header. */
html,
body {
  width: 100%;
  max-width: 100%;
}

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

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

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

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

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

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

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

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

.hidden-dark-bb52 {
  flex: 1;
}

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

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

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

.search_9764.north-192a {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.first-031d {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.filter_82be svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .hidden-dark-bb52 {
    display: none;
  }
  
  .carousel_a301 {
    display: flex;
  }
  
  .tertiary-7f04 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .filter_82be,
  .highlight-b87f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .first-031d {
    position: relative;
  }
  
  .red_4d27 {
    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;
  }
  
  .box_red_c6e0[aria-expanded="true"] + .red_4d27 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .south_644f {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .thumbnail_fresh_384c {
    gap: 8px;
  }
  
  .filter_82be {
    display: none;
  }
  
  .highlight-b87f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .input_6ebb img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.list_a44d svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

.link-gas-1aa7 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

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

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

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

.banner-00f3 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .notice_1eb2 {
    grid-template-columns: 1fr;
  }
  
  .element-inner-9041 {
    font-size: 1.75rem;
  }
  
  .shadow_solid_982d {
    order: -1;
    max-width: 100%;
  }
  
  .footer_huge_74a7 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .element-inner-9041 {
    font-size: 1.5rem;
  }
  
  .lite_055d {
    font-size: 1rem;
  }
  
  .logo_left_79a8 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .footer_huge_74a7 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

.chip-over-8a64 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.info-complex-7bfc {
  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);
}

.layout-808c {
  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);
}

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

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

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

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

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

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

.wrapper_new_79ee 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_new_79ee h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

.icon_white_43f2 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) {
  .panel_aed2 {
    grid-template-columns: 1fr;
  }
  
  .layout-808c {
    font-size: 1.75rem;
  }
  
  .wrapper_new_79ee {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .layout-808c {
    font-size: 1.5rem;
  }
  
  .wrapper_new_79ee h3 {
    font-size: 1.375rem;
  }
  
  .wrapper_new_79ee h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.layout_middle_363b {
  flex-shrink: 0;
}

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

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

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

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

.text_new_be1a thead,
.soft_fda4 thead {
  background: var(--color-primary);
  color: white;
}

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

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

.text_new_be1a th,
.soft_fda4 th,
.wrapper_85f7 th {
  font-weight: 600;
}

.text_new_be1a tbody tr:hover,
.soft_fda4 tbody tr:hover,
.wrapper_85f7 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.thumbnail-steel-1536 h4 {
  color: white;
}

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

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

.active-advanced-f584:last-child {
  border-bottom: none;
}

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

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

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

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

.preview-7c1d:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.narrow_6cd6 {
  color: #4caf50;
}

.widget_warm_714d {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.wrapper-static-67c2 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

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

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

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

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

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

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

.layout-thick-6dcb {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.small-a889 .feature_bottom_514f {
  width: 100%;
  background: white;
}

.sort-1e5e .feature_bottom_514f {
  color: #667eea;
}

.east_e1b4 .feature_bottom_514f {
  color: #f5576c;
}

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

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

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

.paragraph-14b5 {
  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);
}

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

.backdrop-bottom-87f9 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .logo_full_ee71 {
    padding: var(--space-md);
  }
  
  .backdrop-bottom-87f9 {
    padding: var(--space-md);
  }
  
  .section_old_666d {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.preview-upper-ab67 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.column_action_52ec,
.gradient_473a,
.dynamic-e65c,
.layout_down_a01a {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.button-272d {
  border-color: var(--color-success);
}

.alert-right-13bc {
  border-color: var(--color-warning);
}

.heading-new-a031 {
  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);
}

.button-272d .heading-new-a031 {
  background: #e8f5e9;
  color: var(--color-success);
}

.alert-right-13bc .heading-new-a031 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

.module-iron-29b2 {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

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

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

.element-02fe {
  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);
}

.element_white_2a12 {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

.up-926e {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

.background-78c9 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.section-motion-a4b0 {
  text-align: right;
}

.section-motion-a4b0 .fresh_4894 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.focus-6b7b {
  background: #e8f5e9;
  color: #2e7d32;
}

.hover_brown_77b5 {
  background: #e3f2fd;
  color: #1565c0;
}

.new-305d {
  background: #fff3e0;
  color: #e65100;
}

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

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

.video-81a5 {
  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);
}

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

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

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

.summary-1cf2 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

.avatar-a282[aria-expanded="true"] .frame_d1df {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.slider-pink-c295 {
  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);
}

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

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

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

.list-17e0,
.input_3105 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.list-17e0 h4,
.input_3105 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.list-17e0 ul,
.input_3105 ul {
  list-style: none;
  padding: 0;
}

.list-17e0 li,
.input_3105 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.message_655e {
  font-style: italic;
}

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

.filter-thick-52b9 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.row-lower-b086 .avatar_66ea {
  color: #4caf50;
  font-size: 0.875rem;
}

.primary-basic-7c22 {
  list-style: none;
  padding: 0;
}

.primary-basic-7c22 li {
  margin-bottom: var(--space-xs);
}

.primary-basic-7c22 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.primary-basic-7c22 a:hover {
  color: white;
}

.stone-ad8a {
  list-style: none;
  padding: 0;
}

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

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

.stone-ad8a a:hover {
  color: white;
}

.in-0e61 {
  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);
}

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

.yellow-5e92 a {
  color: #4caf50;
  text-decoration: none;
}

.outline-2ec1 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .in-0e61 {
    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;
  }
  
  .element-inner-9041 {
    font-size: 2rem;
  }
  
  .layout-808c {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .notice_1eb2,
  .panel_aed2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .aside-2b5c,
  .disabled_9a09,
  .hover-under-1481,
  .pattern_47ff,
  .active-1b5d,
  .main_narrow_a50b,
  .panel_47a7,
  .purple_8cf6 {
    grid-template-columns: 1fr;
  }
  
  .orange-5d9c {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .mask-lower-a0e3 {
    padding: var(--space-lg) 0;
  }
  
  .medium_3681 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .medium_3681 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .feature_bottom_514f {
    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;
  }
  
  .orange-5d9c {
    grid-template-columns: 1fr;
  }
  
  .banner-00f3,
  .middle-6044,
  .row_outer_44a2 {
    flex-direction: column;
    width: 100%;
  }
  
  .layout_502d,
  .chip-over-8a64,
  .banner-00f3 .feature_bottom_514f,
  .middle-6044 .feature_bottom_514f {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .element-inner-9041 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .layout-808c {
    font-size: 1.375rem;
  }
  
  .disabled_out_c2ae {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .dirty_8af9,
  .media-6d82,
  .menu-c2ba,
  .block_a94b,
  .tertiary_505a {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .tag_66bc {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .search_brown_20f4 {
    gap: var(--space-xs);
  }
  
  .list_a44d {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .container_stone_037b {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .accent_23f5 {
    width: 150px;
    height: 150px;
  }
  
  .solid_9106 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .block_e5da,
  .sort_hard_da7b,
  .banner-00f3,
  .filter-thick-52b9,
  .title_bright_b380,
  .pro_a6d0,
  .carousel_a301 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .mask-lower-a0e3 {
    page-break-inside: avoid;
  }
}

/* css-noise: eb39 */
.gallery_fluid_3bf5 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}

/* css-noise: 8230 */
.widget-item-y2 {
  padding: 0.1rem;
  font-size: 11px;
  line-height: 1.1;
}
