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

.mask-aec7:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.copper_5bf6,
header,
.pink-7774,
.fast-8f53,
.huge_d2e9,
.liquid_4ad4,
.grid-3360,
.list-0606,
.paragraph-4401 {
  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
   ============================================ */
.copper_5bf6 {
  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);
}

.cold-6a70 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

.tag-east-4774 {
  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;
}

.in-fc56 {
  flex: 1;
}

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

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

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

.caption-da87.fn-active-20ef {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.stone-8384 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.table_dim_e72f svg {
  flex-shrink: 0;
}

/* Header Download Button */
.nav-fast-4b1d {
  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;
}

.nav-fast-4b1d: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);
}

.nav-fast-4b1d svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.feature-left-ceed[aria-expanded="true"] .pagination-simple-a369:nth-child(2) {
  opacity: 0;
}

.feature-left-ceed[aria-expanded="true"] .pagination-simple-a369:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .in-fc56 {
    display: none;
  }
  
  .feature-left-ceed {
    display: flex;
  }
  
  .tag-east-4774 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .table_dim_e72f,
  .nav-fast-4b1d {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .stone-8384 {
    position: relative;
  }
  
  .banner_ecc7 {
    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;
  }
  
  .first_d7f5[aria-expanded="true"] + .banner_ecc7 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .shadow-687f {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .button_4aae {
    gap: 8px;
  }
  
  .table_dim_e72f {
    display: none;
  }
  
  .nav-fast-4b1d {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .hovered_702c img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.hidden_eb43 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.gradient-green-c9e5 a {
  color: var(--color-primary);
  text-decoration: none;
}

.gradient-green-c9e5 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.link-pressed-75c5 {
  display: flex;
  gap: var(--space-sm);
}

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

.tertiary-28f5 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tertiary-28f5 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

.list-1d45 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.tertiary-dim-2677 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tertiary-copper-d94e {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .hidden-e2b6 {
    grid-template-columns: 1fr;
  }
  
  .status_8ad1 {
    font-size: 1.75rem;
  }
  
  .tertiary-dim-2677 {
    order: -1;
    max-width: 100%;
  }
  
  .tertiary-copper-d94e {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .status_8ad1 {
    font-size: 1.5rem;
  }
  
  .thumbnail_down_4d01 {
    font-size: 1rem;
  }
  
  .gradient-green-c9e5 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .tertiary-copper-d94e {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.alert-0991 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;
}

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

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

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

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

.brown-770b {
  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);
}

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

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

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

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

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

.search-silver-2102 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.search-silver-2102 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);
}

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

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

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

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

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

.search-silver-2102 strong {
  font-weight: 600;
  color: var(--color-text);
}

.search-silver-2102 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.search-silver-2102 a:hover {
  color: var(--color-primary-dark);
}

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

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

.mask_bright_8777 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) {
  .stone-5007 {
    grid-template-columns: 1fr;
  }
  
  .red_d9f3 {
    font-size: 1.75rem;
  }
  
  .search-silver-2102 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .red_d9f3 {
    font-size: 1.5rem;
  }
  
  .search-silver-2102 h3 {
    font-size: 1.375rem;
  }
  
  .search-silver-2102 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.advanced-2b4d {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.alert-4e0e {
  flex-shrink: 0;
}

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

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

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

.rough-96f7,
.icon_tiny_056c,
.detail_medium_4935 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.rough-96f7 thead,
.icon_tiny_056c thead {
  background: var(--color-primary);
  color: white;
}

.rough-96f7 th,
.rough-96f7 td,
.icon_tiny_056c th,
.icon_tiny_056c td,
.detail_medium_4935 th,
.detail_medium_4935 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .rough-96f7 th,
  .rough-96f7 td,
  .icon_tiny_056c th,
  .icon_tiny_056c td,
  .detail_medium_4935 th,
  .detail_medium_4935 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .rough-96f7,
  .icon_tiny_056c,
  .detail_medium_4935 {
    min-width: 600px;
  }
}

.rough-96f7 th,
.icon_tiny_056c th,
.detail_medium_4935 th {
  font-weight: 600;
}

.rough-96f7 tbody tr:hover,
.icon_tiny_056c tbody tr:hover,
.detail_medium_4935 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.media-e566 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

.yellow-5e07 {
  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);
}

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

.block-mini-0c59 {
  font-weight: 600;
  color: white;
}

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

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

.active_tiny_3fd0 {
  color: #4caf50;
}

.article_wide_30ae {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.block-mini-0c59 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shade_6c91 .south_2b39 {
  width: 100%;
  background: white;
}

.info_b9df .south_2b39 {
  color: #667eea;
}

.accordion_dirty_fe55 .south_2b39 {
  color: #f5576c;
}

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

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

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

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

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

.icon-purple-11d2 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .button_dd30 {
    padding: var(--space-md);
  }
  
  .icon-purple-11d2 {
    padding: var(--space-md);
  }
  
  .form_east_4fe9 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.fluid-7d4a,
.focused_3caa,
.focus-red-f35e,
.gas-ba87 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.highlight-wide-4908:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

.component-down-6722 {
  border-color: var(--color-warning);
}

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

.article_east_69b6 .down_e3a0 {
  background: #e8f5e9;
  color: var(--color-success);
}

.component-down-6722 .down_e3a0 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .alert-in-6ce4 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

.pressed-0b0e {
  margin-top: var(--space-xxl);
}

.silver-4e15 {
  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);
}

.description_black_70e9 {
  text-align: center;
}

.hidden-selected-16f5 {
  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);
}

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

.hidden-selected-16f5 .block-mini-0c59 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

.yellow-572e {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

.surface-05d6 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.badge_b227 {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

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

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

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

.primary_21e7 {
  text-align: right;
}

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

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

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

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

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

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

.next-1b84 {
  background: #e8f5e9;
  color: #2e7d32;
}

.tooltip-iron-333c {
  background: #e3f2fd;
  color: #1565c0;
}

.out-f2f9 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.panel-27e1 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

.aside_7cea[aria-expanded="true"] .form-a3a7 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.thumbnail-stale-f6e8 {
  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);
}

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

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

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

.thumbnail-glass-d69e,
.list_4c06 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.thumbnail-glass-d69e h4,
.list_4c06 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.thumbnail-glass-d69e ul,
.list_4c06 ul {
  list-style: none;
  padding: 0;
}

.thumbnail-glass-d69e li,
.list_4c06 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.panel-3b89 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.panel-95cc {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Footer variant: footer-content (subpages) */
.surface-outer-ceb9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.dropdown_simple_6072 a:hover {
  color: white;
}

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

.layout_wood_f1e9 a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid #424242;
  border-radius: 4px;
  transition: var(--transition-fast);
}

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

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

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

.module-d6b5 a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .description-98a5,
  .surface-outer-ceb9 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.liquid-16f3 .link-pressed-75c5 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.selected_bccc a:hover {
  color: white;
}

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

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

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

.menu_1ad6 a:hover {
  color: white;
}

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

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

.aside-7a30 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

.shadow_old_55df a:hover {
  color: white;
}

/* Element selectors: survive CMS class obfuscation on deploy */
footer > div > div:last-child > div:last-child a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

footer > div > div:last-child > div:last-child a:hover {
  color: white;
}

.highlight-purple-1b3a {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.highlight-purple-1b3a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .paragraph_last_26d7 {
    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;
  }
  
  .status_8ad1 {
    font-size: 2rem;
  }
  
  .red_d9f3 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .hidden-e2b6,
  .stone-5007 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .hover_fixed_2ca1,
  .search_bright_a6ff,
  .focus_complex_5887,
  .alert-in-6ce4,
  .steel-9de0,
  .background_da83,
  .west_4542,
  .description-98a5,
  .surface-outer-ceb9 {
    grid-template-columns: 1fr;
  }
  
  .tag-clean-3e73 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .grid-3360 {
    padding: var(--space-lg) 0;
  }
  
  .alert-0991 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .alert-0991 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .south_2b39 {
    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;
  }
  
  .tag-clean-3e73 {
    grid-template-columns: 1fr;
  }
  
  .list-1d45,
  .status_d530,
  .button-plasma-5014 {
    flex-direction: column;
    width: 100%;
  }
  
  .modal_action_f943,
  .button_e0a4,
  .list-1d45 .south_2b39,
  .status_d530 .south_2b39 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .status_8ad1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .red_d9f3 {
    font-size: 1.375rem;
  }
  
  .panel-solid-8452 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .dynamic_c6e7,
  .hero_c4d6,
  .alert_1f13,
  .footer-8be6,
  .message_8f94 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .north_a262 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .table-left-fe79 {
    gap: var(--space-xs);
  }
  
  .hidden_eb43 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .yellow-5e07 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .hidden-selected-16f5 {
    width: 150px;
    height: 150px;
  }
  
  .main_plasma_2a4e {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .copper_5bf6,
  .pink-7774,
  .list-1d45,
  .cool_db32,
  .list-0606,
  .paragraph-4401,
  .feature-left-ceed {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .grid-3360 {
    page-break-inside: avoid;
  }
}

/* css-noise: 659b */
.widget-item-j6 {
  padding: 0.5rem;
  font-size: 10px;
  line-height: 1.2;
}
