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

.component-liquid-ee4e:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.upper-a1d7,
header,
.container_soft_1a2f,
.focused-1d2b,
.soft_c8fc,
.menu-green-883a,
.picture-3317,
.heading_outer_33d0,
.advanced-1559 {
  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
   ============================================ */
.upper-a1d7 {
  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);
}

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

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

/* Scrolled state */
.upper-a1d7.button_pro_d0f6 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.sidebar-glass-e05c img {
  height: 36px;
  width: auto;
  display: block;
}

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

.selected_1806 {
  flex: 1;
}

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

.card-tall-7c2a {
  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);
}

.card-tall-7c2a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.card-tall-7c2a.fn-active-6e71 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.rough-dc7d {
  position: relative;
}

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

.content-new-aee5 svg {
  transition: transform 0.2s ease;
}

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

.active-complex-37a2 {
  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;
}

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

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

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

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

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

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

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

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

.paragraph_orange_0cd4 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.row-9689[aria-expanded="true"] .tertiary-ceb3:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .selected_1806 {
    display: none;
  }
  
  .row-9689 {
    display: flex;
  }
  
  .modal-7624 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .paragraph_orange_0cd4,
  .thick_9d53 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .rough-dc7d {
    position: relative;
  }
  
  .active-complex-37a2 {
    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;
  }
  
  .content-new-aee5[aria-expanded="true"] + .active-complex-37a2 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .surface-3f3f {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .notice-44f6 {
    gap: 8px;
  }
  
  .paragraph_orange_0cd4 {
    display: none;
  }
  
  .thick_9d53 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .sidebar-glass-e05c img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.yellow_8a8e svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.feature-96dc a {
  color: var(--color-primary);
  text-decoration: none;
}

.feature-96dc a:hover {
  text-decoration: underline;
}

.filter-rough-488b {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

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

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

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

.list-easy-2d15 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.background-brown-8279 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

.sidebar-green-263f {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .avatar_69b0 {
    grid-template-columns: 1fr;
  }
  
  .hero_east_6c23 {
    font-size: 1.75rem;
  }
  
  .active-cb3c {
    order: -1;
    max-width: 100%;
  }
  
  .background-brown-8279 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero_east_6c23 {
    font-size: 1.5rem;
  }
  
  .badge_plasma_5187 {
    font-size: 1rem;
  }
  
  .feature-96dc {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .background-brown-8279 {
    max-width: 250px;
  }
}

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

.hidden-294d {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.background-last-5f94 {
  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);
}

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

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

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

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

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

.large-339e img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.large-339e 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);
}

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

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

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

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

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

.large-339e strong {
  font-weight: 600;
  color: var(--color-text);
}

.large-339e a {
  color: var(--color-primary);
  text-decoration: underline;
}

.large-339e a:hover {
  color: var(--color-primary-dark);
}

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

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

.component_selected_4710 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) {
  .static-067f {
    grid-template-columns: 1fr;
  }
  
  .badge-c213 {
    font-size: 1.75rem;
  }
  
  .large-339e {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .badge-c213 {
    font-size: 1.5rem;
  }
  
  .large-339e h3 {
    font-size: 1.375rem;
  }
  
  .large-339e h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

.overlay-pressed-45cf strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

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

.widget-4dba {
  flex-shrink: 0;
}

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

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

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

.description-purple-269a,
.fluid-4a75,
.breadcrumb-steel-b9a3 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.description-purple-269a thead,
.fluid-4a75 thead {
  background: var(--color-primary);
  color: white;
}

.description-purple-269a th,
.description-purple-269a td,
.fluid-4a75 th,
.fluid-4a75 td,
.breadcrumb-steel-b9a3 th,
.breadcrumb-steel-b9a3 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .description-purple-269a th,
  .description-purple-269a td,
  .fluid-4a75 th,
  .fluid-4a75 td,
  .breadcrumb-steel-b9a3 th,
  .breadcrumb-steel-b9a3 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .description-purple-269a,
  .fluid-4a75,
  .breadcrumb-steel-b9a3 {
    min-width: 600px;
  }
}

.description-purple-269a th,
.fluid-4a75 th,
.breadcrumb-steel-b9a3 th {
  font-weight: 600;
}

.description-purple-269a tbody tr:hover,
.fluid-4a75 tbody tr:hover,
.breadcrumb-steel-b9a3 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.dropdown-2777 h4 {
  color: white;
}

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

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

.highlight-fluid-d7af:last-child {
  border-bottom: none;
}

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

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

.disabled-hard-593d {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

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

.sidebar-medium-9c1a:hover {
  text-decoration: underline;
}

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

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

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

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

.up-5676 {
  list-style: none;
  padding: 0;
}

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

.title-8323 {
  color: #4caf50;
}

.soft_b97c {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.secondary-fast-99d5 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.badge_c577 .focus-8343 {
  width: 100%;
  background: white;
}

.title_dirty_2a30 .focus-8343 {
  color: #667eea;
}

.hidden-538f .focus-8343 {
  color: #f5576c;
}

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

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

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

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

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

.component-6c93 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .label-0306 {
    padding: var(--space-md);
  }
  
  .component-6c93 {
    padding: var(--space-md);
  }
  
  .tooltip-tiny-1fbe {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

.tooltip-tiny-1fbe {
  margin-top: var(--space-lg);
  text-align: center;
}

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

.widget-thick-42ab,
.accent-23ad,
.heading_6fa5,
.notification_1911 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.sort-paper-0d69 {
  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) {
  .sort-paper-0d69 {
    font-size: 0.625rem;
  }
}

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

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

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

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

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

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

.full-7049 {
  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-7049 {
    grid-template-columns: 1fr;
  }
}

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

.header-silver-d02a {
  border-color: var(--color-success);
}

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

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

.header-silver-d02a .cold-f7f2 {
  background: #e8f5e9;
  color: var(--color-success);
}

.link_fdf6 .cold-f7f2 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

.active-hot-1c92 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

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

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

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

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

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

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

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

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

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

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

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

.feature_dirty_f7f9 {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

.clean-96f4 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slow-e7e6 {
  text-align: right;
}

.slow-e7e6 .feature_dark_84d0 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

.popup-west-1fd9 {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

.photo_298f {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.banner_082e {
  background: #fff3e0;
  color: #e65100;
}

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

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

.logo-complex-5799 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

.gold-e610[aria-expanded="true"] .disabled_90b2 {
  transform: rotate(180deg);
}

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

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

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

.carousel-39e8 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.sort-decc {
  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-e35a {
  padding: 12px 24px;
  background: #4caf50;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

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

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

.search-south-cc70,
.outline-short-72a3 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.search-south-cc70 h4,
.outline-short-72a3 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.search-south-cc70 ul,
.outline-short-72a3 ul {
  list-style: none;
  padding: 0;
}

.search-south-cc70 li,
.outline-short-72a3 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

.alert-pro-9c74 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.alert-pro-9c74 ul {
  list-style: none;
  padding: 0;
}

.alert-pro-9c74 li {
  padding: var(--space-xs) 0;
  color: white;
}

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

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

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

.banner-8d9a {
  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);
}

.current-4730 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.stale-39e9 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

.box_orange_21b5 a:hover {
  color: white;
}

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

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

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

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

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

.yellow_1553 a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .tabs-in-ed97,
  .border_prev_ff69 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.south-08f5 .orange_0904 {
  color: #4caf50;
  font-size: 0.875rem;
}

.dim-c875 {
  list-style: none;
  padding: 0;
}

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

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

.dim-c875 a:hover {
  color: white;
}

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

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

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

.short_1fbc a:hover {
  color: white;
}

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

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

.focus-99bc a {
  color: #4caf50;
  text-decoration: none;
}

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

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

.shadow-upper-0dba a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.shadow-upper-0dba a:hover {
  color: white;
}

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

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

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

.pattern-090b:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .complex_47ea {
    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;
  }
  
  .hero_east_6c23 {
    font-size: 2rem;
  }
  
  .badge-c213 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .avatar_69b0,
  .static-067f {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .chip_west_fc05,
  .full-7049,
  .module_silver_fc45,
  .hero_simple_a314,
  .hovered_1042,
  .row_old_87bc,
  .east_bebd,
  .tabs-in-ed97,
  .border_prev_ff69 {
    grid-template-columns: 1fr;
  }
  
  .hard_1d07 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .picture-3317 {
    padding: var(--space-lg) 0;
  }
  
  .media_70e8 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .media_70e8 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .focus-8343 {
    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;
  }
  
  .hard_1d07 {
    grid-template-columns: 1fr;
  }
  
  .list-easy-2d15,
  .solid_2d48,
  .tall-4bdc {
    flex-direction: column;
    width: 100%;
  }
  
  .south-b627,
  .badge_basic_3974,
  .list-easy-2d15 .focus-8343,
  .solid_2d48 .focus-8343 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .hero_east_6c23 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .badge-c213 {
    font-size: 1.375rem;
  }
  
  .lower_1c67 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .purple-8640,
  .gas-2e10,
  .backdrop_65d8,
  .popup-blue-0695,
  .breadcrumb_pro_d7c6 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .sort-paper-0d69 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .tag_c92e {
    gap: var(--space-xs);
  }
  
  .yellow_8a8e {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .north-bfba {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .large_d73f {
    width: 150px;
    height: 150px;
  }
  
  .form-45ef {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .upper-a1d7,
  .container_soft_1a2f,
  .list-easy-2d15,
  .tabs_bf35,
  .heading_outer_33d0,
  .advanced-1559,
  .row-9689 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .picture-3317 {
    page-break-inside: avoid;
  }
}

/* css-noise: 7840 */
.shadow-element-z5 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.0;
}
