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

.article-left-a117:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.widget-4cb8,
header,
.gallery-hard-b92b,
.search-last-0e36,
.list-pro-0860,
.cold_c952,
.soft-8784,
.sort_89fe,
.old_9706 {
  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
   ============================================ */
.widget-4cb8 {
  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);
}

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

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

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

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

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

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

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

.dark_7197 {
  flex: 1;
}

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

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

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

.box_6469.fn-active-1880 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.description-bright-b2e9 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .dark_7197 {
    display: none;
  }
  
  .header_green_e40a {
    display: flex;
  }
  
  .paragraph_9ed1 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .description-bright-b2e9,
  .pattern_3b81 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .button_last_b227 {
    position: relative;
  }
  
  .focus_d665 {
    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;
  }
  
  .form_bright_589b[aria-expanded="true"] + .focus_d665 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .row-cool-ff9b {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .caption_2c93 {
    gap: 8px;
  }
  
  .description-bright-b2e9 {
    display: none;
  }
  
  .pattern_3b81 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .status_bc53 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.glass_02cf svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.sidebar-last-8eed a {
  color: var(--color-primary);
  text-decoration: none;
}

.sidebar-last-8eed a:hover {
  text-decoration: underline;
}

.avatar-hard-baa4 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

.up-93a5 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .caption_71ca {
    grid-template-columns: 1fr;
  }
  
  .cool-7a88 {
    font-size: 1.75rem;
  }
  
  .video_9203 {
    order: -1;
    max-width: 100%;
  }
  
  .dropdown_ad64 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .cool-7a88 {
    font-size: 1.5rem;
  }
  
  .light-d91a {
    font-size: 1rem;
  }
  
  .sidebar-last-8eed {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .dropdown_ad64 {
    max-width: 250px;
  }
}

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

.layout-rough-7ffb {
  background: var(--color-primary);
  color: white;
}

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

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

.small-2ba9:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

.up-3c0c {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.feature-0cfa {
  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);
}

.middle-9d75 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bronze-1bf5 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.bronze-1bf5 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) {
  .dynamic-153b {
    grid-template-columns: 1fr;
  }
  
  .middle-9d75 {
    font-size: 1.75rem;
  }
  
  .badge_1f67 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .middle-9d75 {
    font-size: 1.5rem;
  }
  
  .badge_1f67 h3 {
    font-size: 1.375rem;
  }
  
  .badge_1f67 h4 {
    font-size: 1.125rem;
  }
}

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

.active-down-9532 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.gradient-liquid-45ab {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.background-bronze-51a8 {
  flex-shrink: 0;
}

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

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

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

.hidden-b932,
.tooltip-986a,
.action-2c6c {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.hidden-b932 thead,
.tooltip-986a thead {
  background: var(--color-primary);
  color: white;
}

.hidden-b932 th,
.hidden-b932 td,
.tooltip-986a th,
.tooltip-986a td,
.action-2c6c th,
.action-2c6c td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hidden-b932 th,
  .hidden-b932 td,
  .tooltip-986a th,
  .tooltip-986a td,
  .action-2c6c th,
  .action-2c6c td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .hidden-b932,
  .tooltip-986a,
  .action-2c6c {
    min-width: 600px;
  }
}

.hidden-b932 th,
.tooltip-986a th,
.action-2c6c th {
  font-weight: 600;
}

.hidden-b932 tbody tr:hover,
.tooltip-986a tbody tr:hover,
.action-2c6c tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.message-green-97a1 h4 {
  color: white;
}

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

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

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

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

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

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

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

.first-2452:hover {
  text-decoration: underline;
}

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

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

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

.banner-middle-cc19 {
  font-weight: 600;
  color: white;
}

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

.element-basic-d35e li {
  padding: var(--space-xs) 0;
}

.layout_iron_303f {
  color: #4caf50;
}

.photo_dark_15f8 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.text-531c {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.icon-1f39 .feature_prev_37ae {
  width: 100%;
  background: white;
}

.content-2003 .feature_prev_37ae {
  color: #667eea;
}

.picture-6294 .feature_prev_37ae {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .new-d66a {
    padding: var(--space-md);
  }
  
  .focus_soft_2f5f {
    padding: var(--space-md);
  }
  
  .carousel_last_a5af {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.logo-rough-9cf4 ol,
.logo-rough-9cf4 ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.logo-rough-9cf4 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.smooth_5488,
.primary-d4bb,
.container-2b66,
.pattern-simple-99c6 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.pattern-3c5d {
  border-color: var(--color-success);
}

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

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

.pattern-3c5d .in_5dfe {
  background: #e8f5e9;
  color: var(--color-success);
}

.dropdown_fresh_ddf8 .in_5dfe {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.section-8f89 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.aside_014d {
  text-align: center;
}

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

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

.motion_2592 .banner-middle-cc19 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.grid-51c4 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.secondary-brown-e992 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

.list-bright-8c9b {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.panel_narrow_c931 {
  text-align: right;
}

.panel_narrow_c931 .main-east-102a {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.slider-paper-d0d3 {
  background: #e8f5e9;
  color: #2e7d32;
}

.hero-blue-af55 {
  background: #e3f2fd;
  color: #1565c0;
}

.glass-d2ad {
  background: #fff3e0;
  color: #e65100;
}

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

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

.footer-627e {
  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);
}

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

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

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

.info-bottom-8eab strong {
  color: var(--color-primary);
}

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

.grid-old-044a {
  text-align: center;
  margin-top: var(--space-xl);
}

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

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

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

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

.tertiary-next-4cd0 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.blue-7306[aria-expanded="true"] .tertiary-next-4cd0 {
  transform: rotate(180deg);
}

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

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

.badge-east-40dc ul,
.badge-east-40dc ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.badge-east-40dc li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.badge-fast-6f8d {
  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);
}

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

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

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

.bronze-451b,
.slider_e951 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.bronze-451b h4,
.slider_e951 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.bronze-451b ul,
.slider_e951 ul {
  list-style: none;
  padding: 0;
}

.bronze-451b li,
.slider_e951 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.filter_clean_5f9c {
  font-style: italic;
}

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

.shadow-small-794b {
  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;
}

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

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

.progress-fast-0e47 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

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

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

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

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

.active-wide-57d1 {
  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);
}

.active-wide-57d1:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.active-wide-57d1 p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

.hero-61a9 {
  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) */
.over-d12f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.header-9207 a:hover {
  color: white;
}

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

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

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

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

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

.center_3f97 a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .hero-61a9,
  .over-d12f {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.action-4ba8 .up-93a5 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.simple_5186 a:hover {
  color: white;
}

.caption-active-6b66 {
  list-style: none;
  padding: 0;
}

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

.caption-active-6b66 a {
  color: #b0b0b0;
  text-decoration: none;
}

.caption-active-6b66 a:hover {
  color: white;
}

.accent-complex-5038 {
  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);
}

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

.section-thick-643c a {
  color: #4caf50;
  text-decoration: none;
}

.gallery-clean-2f1b {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

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

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

@media (max-width: 768px) {
  .accent-complex-5038 {
    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;
  }
  
  .cool-7a88 {
    font-size: 2rem;
  }
  
  .middle-9d75 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .caption_71ca,
  .dynamic-153b {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .primary-778d,
  .title_medium_629a,
  .surface-outer-a5f2,
  .dropdown_3817,
  .hover_10f2,
  .under-d599,
  .layout_easy_e9ac,
  .hero-61a9,
  .over-d12f {
    grid-template-columns: 1fr;
  }
  
  .preview-hard-2115 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .soft-8784 {
    padding: var(--space-lg) 0;
  }
  
  .element_0177 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .element_0177 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .feature_prev_37ae {
    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;
  }
  
  .preview-hard-2115 {
    grid-template-columns: 1fr;
  }
  
  .element_hovered_bdb1,
  .progress-fast-0e47,
  .focus-old-c326 {
    flex-direction: column;
    width: 100%;
  }
  
  .disabled_cab2,
  .up-3c0c,
  .element_hovered_bdb1 .feature_prev_37ae,
  .progress-fast-0e47 .feature_prev_37ae {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .cool-7a88 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .middle-9d75 {
    font-size: 1.375rem;
  }
  
  .gradient-action-f5cb {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .badge-gas-c942,
  .sort_ad72,
  .glass-9209,
  .primary_tall_bef2,
  .main-1072 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .aside_lite_a4fc {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .notice-advanced-6f7c {
    gap: var(--space-xs);
  }
  
  .glass_02cf {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .active_ff14 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .motion_2592 {
    width: 150px;
    height: 150px;
  }
  
  .title-d982 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .widget-4cb8,
  .gallery-hard-b92b,
  .element_hovered_bdb1,
  .shadow-small-794b,
  .sort_89fe,
  .old_9706,
  .header_green_e40a {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .soft-8784 {
    page-break-inside: avoid;
  }
}

/* css-noise: f734 */
.ghost-box-e3 {
  padding: 0.3rem;
  font-size: 13px;
  line-height: 1.1;
}
