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

.menu_ea26:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.menu-595e):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. */
.menu-595e,
header,
.bronze_69f5,
.tertiary_basic_a180,
.liquid_85f7,
.summary-fluid-d7fe,
.list_medium_3599,
.menu_next_bfea,
.accordion-last-468d {
  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
   ============================================ */
.menu-595e {
  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);
}

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

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

/* Scrolled state */
.menu-595e.main_up_c355 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

.tabs-pro-79b9 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.clean-98e6 img {
  height: 36px;
  width: auto;
  display: block;
}

.last-8f9e {
  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;
}

.outline_b5c5 {
  flex: 1;
}

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

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

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

.white_c158.gradient-a7e8 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.right_ae8a svg {
  flex-shrink: 0;
}

/* Header Download Button */
.pagination-fluid-70d6 {
  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;
}

.pagination-fluid-70d6: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);
}

.pagination-fluid-70d6 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .outline_b5c5 {
    display: none;
  }
  
  .slider_lower_8e52 {
    display: flex;
  }
  
  .last-8f9e {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .right_ae8a,
  .pagination-fluid-70d6 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .gradient_98a5 {
    position: relative;
  }
  
  .sidebar_down_4d69 {
    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;
  }
  
  .medium_953c[aria-expanded="true"] + .sidebar_down_4d69 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .block_beb9 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .filter_bb1d {
    gap: 8px;
  }
  
  .right_ae8a {
    display: none;
  }
  
  .pagination-fluid-70d6 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .clean-98e6 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.slow_3d50 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.message-4a23 {
  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;
}

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

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

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

.surface-selected-2d2e {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.focused-56fd {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .background_e6af {
    grid-template-columns: 1fr;
  }
  
  .popup-d314 {
    font-size: 1.75rem;
  }
  
  .white_c7f1 {
    order: -1;
    max-width: 100%;
  }
  
  .focused-56fd {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .popup-d314 {
    font-size: 1.5rem;
  }
  
  .stone-746d {
    font-size: 1rem;
  }
  
  .icon_right_0266 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .focused-56fd {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.button-plasma-4963 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.full-8de6 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hover-cool-7a6a {
  background: var(--color-bg-section);
}

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

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

.soft-6d12 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shade-yellow-6311 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.shade-yellow-6311 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) {
  .hard_40ce {
    grid-template-columns: 1fr;
  }
  
  .soft-6d12 {
    font-size: 1.75rem;
  }
  
  .footer_gold_f22d {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .soft-6d12 {
    font-size: 1.5rem;
  }
  
  .footer_gold_f22d h3 {
    font-size: 1.375rem;
  }
  
  .footer_gold_f22d h4 {
    font-size: 1.125rem;
  }
}

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

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

.notice-out-ed32 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.list_liquid_6506 {
  flex-shrink: 0;
}

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

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

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

.focus_next_d17a,
.accent-96b3,
.shadow-04a6 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.focus_next_d17a thead,
.accent-96b3 thead {
  background: var(--color-primary);
  color: white;
}

.focus_next_d17a th,
.focus_next_d17a td,
.accent-96b3 th,
.accent-96b3 td,
.shadow-04a6 th,
.shadow-04a6 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .focus_next_d17a th,
  .focus_next_d17a td,
  .accent-96b3 th,
  .accent-96b3 td,
  .shadow-04a6 th,
  .shadow-04a6 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .focus_next_d17a,
  .accent-96b3,
  .shadow-04a6 {
    min-width: 600px;
  }
}

.focus_next_d17a th,
.accent-96b3 th,
.shadow-04a6 th {
  font-weight: 600;
}

.focus_next_d17a tbody tr:hover,
.accent-96b3 tbody tr:hover,
.shadow-04a6 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.content-c625 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

.container-6be7 {
  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-6be7 span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

.gold-fe27 {
  list-style: none;
  padding: 0;
}

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

.huge-c27a {
  color: #4caf50;
}

.backdrop-cbbb {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

.secondary-liquid-1bed:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.backdrop-70cc {
  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;
}

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

.secondary-liquid-1bed p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.lite_3436 .backdrop-1621 {
  width: 100%;
  background: white;
}

.article-00e0 .backdrop-1621 {
  color: #667eea;
}

.fast-3a68 .backdrop-1621 {
  color: #f5576c;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hot-0fba,
.west-f33f,
.bottom_6dd2,
.black_d0ca {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.small-4b24 {
  border-color: var(--color-warning);
}

.stone-147b {
  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);
}

.stone-db36 .stone-147b {
  background: #e8f5e9;
  color: var(--color-success);
}

.small-4b24 .stone-147b {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.iron-64bb {
  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);
}

.advanced_7513 {
  text-align: center;
}

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

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

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

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

.narrow-8d14 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.table-soft-8496 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.carousel_e3bf {
  text-align: right;
}

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

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

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

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

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

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

.modal-e644 {
  background: #e8f5e9;
  color: #2e7d32;
}

.copper-87c9 {
  background: #e3f2fd;
  color: #1565c0;
}

.stone-74c9 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.pattern_13e5 {
  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_13e5:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

.selected-56ca strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

.soft-a035[aria-expanded="true"] .widget_focused_ae7e {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.popup-34c6,
.pattern-c32c {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.popup-34c6 h4,
.pattern-c32c h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.popup-34c6 ul,
.pattern-c32c ul {
  list-style: none;
  padding: 0;
}

.popup-34c6 li,
.pattern-c32c li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.column-1e29 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

.border-293d {
  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);
}

.fresh-90e6 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.yellow_5fcf .wood-b7f3 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.simple_487f a:hover {
  color: white;
}

.element-basic-cb3a {
  list-style: none;
  padding: 0;
}

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

.element-basic-cb3a a {
  color: #b0b0b0;
  text-decoration: none;
}

.element-basic-cb3a a:hover {
  color: white;
}

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

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

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

.plasma-45ae {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .status_upper_49f7 {
    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;
  }
  
  .popup-d314 {
    font-size: 2rem;
  }
  
  .soft-6d12 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .background_e6af,
  .hard_40ce {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .full-d1ec,
  .badge_inner_3c7c,
  .easy-35b5,
  .gold-0359,
  .shadow-d84c,
  .column-middle-f8f7,
  .notification-b716,
  .surface-50d8 {
    grid-template-columns: 1fr;
  }
  
  .lower-92cb {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .list_medium_3599 {
    padding: var(--space-lg) 0;
  }
  
  .liquid_d377 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .liquid_d377 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .backdrop-1621 {
    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;
  }
  
  .lower-92cb {
    grid-template-columns: 1fr;
  }
  
  .surface-selected-2d2e,
  .inner-8b83,
  .orange-1acd {
    flex-direction: column;
    width: 100%;
  }
  
  .button-plasma-4963,
  .full-8de6,
  .surface-selected-2d2e .backdrop-1621,
  .inner-8b83 .backdrop-1621 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .popup-d314 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .soft-6d12 {
    font-size: 1.375rem;
  }
  
  .content_98de {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .tooltip_static_a9c3,
  .secondary-liquid-1bed,
  .static-5d96,
  .module-south-81d7,
  .wrapper-simple-14f6 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .fluid-f7d5 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .shadow_stale_09e2 {
    gap: var(--space-xs);
  }
  
  .slow_3d50 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .container-6be7 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .backdrop_07e7 {
    width: 150px;
    height: 150px;
  }
  
  .description-yellow-fd81 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .menu-595e,
  .bronze_69f5,
  .surface-selected-2d2e,
  .breadcrumb-a858,
  .menu_next_bfea,
  .accordion-last-468d,
  .slider_lower_8e52 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .list_medium_3599 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: c61a */
.promo-block-d6 {
  padding: 0.5rem;
  font-size: 10px;
  line-height: 1.2;
}
