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

.lower-5856:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.button-7ce3,
header,
.element_4dda,
.tabs-narrow-0f0c,
.gradient-da19,
.accordion-762c,
.table-upper-f416,
.primary_080f,
.widget-4120 {
  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
   ============================================ */
.button-7ce3 {
  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);
}

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

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

/* Scrolled state */
.button-7ce3.silver-2551 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.green-2e90 img {
  height: 36px;
  width: auto;
  display: block;
}

.focused-5bf3 {
  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;
}

.chip-easy-7379 {
  flex: 1;
}

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

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

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

.tiny_af34.fn-active-8a53 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

.filter_d7f7 {
  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_73be:hover .filter_d7f7 {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

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

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

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

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

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

/* Header Login Button */
.breadcrumb-left-86c5 {
  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;
}

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

.breadcrumb-left-86c5 svg {
  flex-shrink: 0;
}

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

.full-3782: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);
}

.full-3782 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .chip-easy-7379 {
    display: none;
  }
  
  .tertiary_fresh_6869 {
    display: flex;
  }
  
  .focused-5bf3 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .breadcrumb-left-86c5,
  .full-3782 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .stone_73be {
    position: relative;
  }
  
  .filter_d7f7 {
    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;
  }
  
  .in_f4ea[aria-expanded="true"] + .filter_d7f7 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .stone-2ebd {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .stale_892c {
    gap: 8px;
  }
  
  .breadcrumb-left-86c5 {
    display: none;
  }
  
  .full-3782 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .green-2e90 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .full-3782 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .full-3782 svg {
    width: 14px;
    height: 14px;
  }
  
  .pagination-inner-ecd1 {
    gap: var(--space-sm);
  }
}

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

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

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

.sort_glass_b206 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.hidden-brown-0e6a a {
  color: var(--color-primary);
  text-decoration: none;
}

.hidden-brown-0e6a a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.backdrop-36ad {
  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;
}

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

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

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

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

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

.wide-ab1c {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .tooltip-north-f00a {
    grid-template-columns: 1fr;
  }
  
  .copper-e008 {
    font-size: 1.75rem;
  }
  
  .info_0f32 {
    order: -1;
    max-width: 100%;
  }
  
  .wide-ab1c {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .copper-e008 {
    font-size: 1.5rem;
  }
  
  .picture-dynamic-f922 {
    font-size: 1rem;
  }
  
  .hidden-brown-0e6a {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .wide-ab1c {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.description-liquid-3ac8 {
  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;
}

.status-white-88df {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

.accent-orange-c83c {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.tabs-tall-65cc {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

.link-7a9e {
  list-style: none;
  counter-reset: toc-counter;
}

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

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

.link-7a9e 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;
}

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

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

.bottom-96e8 {
  background: var(--color-bg-section);
}

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

.sidebar-gas-ec58 {
  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);
}

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

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

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

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

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

.outer-968f img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.outer-968f 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);
}

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

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

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

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

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

.outer-968f strong {
  font-weight: 600;
  color: var(--color-text);
}

.outer-968f a {
  color: var(--color-primary);
  text-decoration: underline;
}

.outer-968f a:hover {
  color: var(--color-primary-dark);
}

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

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

.iron_5077 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) {
  .down-bc16 {
    grid-template-columns: 1fr;
  }
  
  .shade_left_c7b6 {
    font-size: 1.75rem;
  }
  
  .outer-968f {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .shade_left_c7b6 {
    font-size: 1.5rem;
  }
  
  .outer-968f h3 {
    font-size: 1.375rem;
  }
  
  .outer-968f h4 {
    font-size: 1.125rem;
  }
}

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

.hidden-0b73 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.main-0540 {
  flex-shrink: 0;
}

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

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

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

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

.solid_f965 thead,
.mini_bdea thead {
  background: var(--color-primary);
  color: white;
}

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

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

.solid_f965 th,
.mini_bdea th,
.link_10ff th {
  font-weight: 600;
}

.solid_f965 tbody tr:hover,
.mini_bdea tbody tr:hover,
.link_10ff tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.prev-52af h4 {
  color: white;
}

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

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

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

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

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

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

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

.orange-768e:hover {
  text-decoration: underline;
}

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

.bottom-629f {
  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);
}

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

.menu-next-772b {
  font-weight: 600;
  color: white;
}

.pagination-red-faae {
  list-style: none;
  padding: 0;
}

.pagination-red-faae li {
  padding: var(--space-xs) 0;
}

.background-steel-edc9 {
  color: #4caf50;
}

.purple-4484 {
  color: #ff9800;
}

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

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

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

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

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

.active-small-0c14 {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

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

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

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

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

.menu-next-772b {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

.image-large-275d h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

.content-rough-510f {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.content-rough-510f ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.content-rough-510f li {
  padding: var(--space-xs) 0;
  color: white;
}

.content-rough-510f .description-liquid-3ac8 {
  width: 100%;
  background: white;
}

.accordion-1924 .description-liquid-3ac8 {
  color: #667eea;
}

.menu_old_68cf .description-liquid-3ac8 {
  color: #f5576c;
}

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

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

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

.thumbnail-4bf8 {
  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);
}

.stone-5ba6 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .stone-5ba6 {
    padding: var(--space-md);
  }
  
  .layout-f2e4 {
    padding: var(--space-md);
  }
  
  .summary_simple_5f9b {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.carousel-medium-46ce ol,
.carousel-medium-46ce ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.carousel-medium-46ce li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.section-short-0212,
.hard_b5fc,
.black_b995,
.table-center-cb77 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.red-010f:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

.item-442b {
  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);
}

.icon-fb67 .item-442b {
  background: #e8f5e9;
  color: var(--color-success);
}

.next-e537 .item-442b {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

.footer-cold-871e {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

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

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

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

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

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

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

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

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

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

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

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

.primary-d814 {
  text-align: center;
}

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

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

.fluid_93dd .menu-next-772b {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.focus-6d56 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.orange-f252 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.row_866b {
  text-align: right;
}

.row_866b .alert-dynamic-5e4b {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.mini-b1e2 {
  background: #e8f5e9;
  color: #2e7d32;
}

.pagination-east-e337 {
  background: #e3f2fd;
  color: #1565c0;
}

.icon-gas-2459 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.surface-red-c52e strong {
  color: var(--color-primary);
}

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

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

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

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

.over-625b {
  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);
}

.over-625b:hover {
  background: var(--color-bg-alt);
}

.carousel-1a85 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.over-625b[aria-expanded="true"] .carousel-1a85 {
  transform: rotate(180deg);
}

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

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

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

.cool-6d36 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.first-6c23 {
  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);
}

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

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

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

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

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

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

.info_7200 h4,
.widget_e2a7 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.info_7200 ul,
.widget_e2a7 ul {
  list-style: none;
  padding: 0;
}

.info_7200 li,
.widget_e2a7 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.form_bbd3 {
  font-style: italic;
}

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

.pagination-bronze-6f8c {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.orange-ceea .accordion_ae9a {
  color: #4caf50;
  font-size: 0.875rem;
}

.button-fda8 {
  list-style: none;
  padding: 0;
}

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

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

.button-fda8 a:hover {
  color: white;
}

.orange-b2b5 {
  list-style: none;
  padding: 0;
}

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

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

.orange-b2b5 a:hover {
  color: white;
}

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

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

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

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

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

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

.old-e4bd:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .block_copper_4cb7 {
    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;
  }
  
  .copper-e008 {
    font-size: 2rem;
  }
  
  .shade_left_c7b6 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .tooltip-north-f00a,
  .down-bc16 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .sidebar_under_bcc4,
  .huge_f2cf,
  .dropdown_advanced_25a7,
  .banner_upper_e1b4,
  .border_basic_dfec,
  .message_6a23,
  .status-ea9d,
  .accordion_dark_5dac {
    grid-template-columns: 1fr;
  }
  
  .feature_c632 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .table-upper-f416 {
    padding: var(--space-lg) 0;
  }
  
  .link-7a9e li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .link-7a9e li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .description-liquid-3ac8 {
    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;
  }
  
  .feature_c632 {
    grid-template-columns: 1fr;
  }
  
  .heading-3676,
  .narrow-78b6,
  .info-new-4a95 {
    flex-direction: column;
    width: 100%;
  }
  
  .accent-orange-c83c,
  .tabs-tall-65cc,
  .heading-3676 .description-liquid-3ac8,
  .narrow-78b6 .description-liquid-3ac8 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .copper-e008 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .shade_left_c7b6 {
    font-size: 1.375rem;
  }
  
  .easy-c809 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .background-up-b035,
  .yellow-3c9f,
  .module-lite-ee78,
  .modal_lower_b37b,
  .huge_d131 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .summary-8370 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .carousel-silver-e0b5 {
    gap: var(--space-xs);
  }
  
  .sort_glass_b206 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .bottom-629f {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .fluid_93dd {
    width: 150px;
    height: 150px;
  }
  
  .photo-e078 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .button-7ce3,
  .element_4dda,
  .heading-3676,
  .pagination-bronze-6f8c,
  .primary_080f,
  .widget-4120,
  .tertiary_fresh_6869 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .table-upper-f416 {
    page-break-inside: avoid;
  }
}

/* css-noise: 2f93 */
.promo-block-e5 {
  padding: 0.4rem;
  font-size: 11px;
  line-height: 1.1;
}
