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

.panel_74d3:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.border_gas_2357,
header,
.focused_3913,
.header_5d7c,
.focus_6a16,
.notification_clean_a4e4,
.silver-76a6,
.detail-copper-58ec,
.detail-11f1 {
  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
   ============================================ */
.border_gas_2357 {
  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-east-83ef {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.surface-dim-1932 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.wide_405d {
  flex: 1;
}

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

.filter-hard-34f5 {
  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);
}

.filter-hard-34f5:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.filter-hard-34f5.fn-active-a344 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.steel-6a62 {
  position: relative;
}

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

.thumbnail-left-d0ec svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.main-fresh-cbcd svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.border-steel-8854[aria-expanded="true"] .cool_c019:nth-child(2) {
  opacity: 0;
}

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

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

  .wide_405d::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .wide_405d.description-current-cb0f {
    display: block;
    right: 0;
  }
  
  .aside_pink_4c4a {
    flex-direction: column;
    gap: 0;
  }
  
  .filter-hard-34f5 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .wide_405d::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;
  }
  
  .wide_405d.description-current-cb0f::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .wide_405d {
    display: none;
  }
  
  .border-steel-8854 {
    display: flex;
  }
  
  .old-5178 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .main-fresh-cbcd,
  .active_paper_0e43 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .steel-6a62 {
    position: relative;
  }
  
  .column_ac36 {
    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;
  }
  
  .thumbnail-left-d0ec[aria-expanded="true"] + .column_ac36 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .panel_fluid_887f {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .column-727d {
    gap: 8px;
  }
  
  .main-fresh-cbcd {
    display: none;
  }
  
  .active_paper_0e43 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .surface-dim-1932 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.media_small_e9cd svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.south-602f a {
  color: var(--color-primary);
  text-decoration: none;
}

.south-602f a:hover {
  text-decoration: underline;
}

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

.secondary-hovered-0fb0 {
  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) {
  .secondary-hovered-0fb0 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .secondary-hovered-0fb0 {
    font-size: 1.5rem;
  }
}

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

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

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

.shadow-large-7e3d {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

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

.action-0f8d {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .container-in-41b8 {
    grid-template-columns: 1fr;
  }
  
  .secondary-hovered-0fb0 {
    font-size: 1.75rem;
  }
  
  .east-f1af {
    order: -1;
    max-width: 100%;
  }
  
  .action-0f8d {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .secondary-hovered-0fb0 {
    font-size: 1.5rem;
  }
  
  .form_54dd {
    font-size: 1rem;
  }
  
  .south-602f {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .action-0f8d {
    max-width: 250px;
  }
}

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

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

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

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

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

.box-hovered-061e {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.box-hovered-061e:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.hover-under-6257 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.heading-white-4abf {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

.accordion-fast-188f {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.accordion-fast-188f img {
  max-width: 100%;
  height: auto;
  display: block;
}

.accordion-fast-188f pre,
.accordion-fast-188f code {
  overflow-x: auto;
  max-width: 100%;
}

.accordion-fast-188f 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);
}

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

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

.accordion-fast-188f p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

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

.accordion-fast-188f li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.accordion-fast-188f strong {
  font-weight: 600;
  color: var(--color-text);
}

.accordion-fast-188f a {
  color: var(--color-primary);
  text-decoration: underline;
}

.accordion-fast-188f a:hover {
  color: var(--color-primary-dark);
}

.focus-fluid-e5ee {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.focus-fluid-e5ee 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) {
  .carousel_a488 {
    grid-template-columns: 1fr;
  }
  
  .out-bdbe {
    font-size: 1.75rem;
  }
  
  .accordion-fast-188f {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .out-bdbe {
    font-size: 1.5rem;
  }
  
  .accordion-fast-188f h3 {
    font-size: 1.375rem;
  }
  
  .accordion-fast-188f h4 {
    font-size: 1.125rem;
  }
}

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

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

.content-west-fa5d {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.shadow_00bc {
  flex-shrink: 0;
}

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

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

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

.shade-2fdf,
.detail-black-2dc2,
.filter-small-1914 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.shade-2fdf thead,
.detail-black-2dc2 thead {
  background: var(--color-primary);
  color: white;
}

.shade-2fdf th,
.shade-2fdf td,
.detail-black-2dc2 th,
.detail-black-2dc2 td,
.filter-small-1914 th,
.filter-small-1914 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .shade-2fdf th,
  .shade-2fdf td,
  .detail-black-2dc2 th,
  .detail-black-2dc2 td,
  .filter-small-1914 th,
  .filter-small-1914 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .shade-2fdf,
  .detail-black-2dc2,
  .filter-small-1914 {
    min-width: 600px;
  }
}

.shade-2fdf th,
.detail-black-2dc2 th,
.filter-small-1914 th {
  font-weight: 600;
}

.shade-2fdf tbody tr:hover,
.detail-black-2dc2 tbody tr:hover,
.filter-small-1914 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.new_bb6a h4 {
  color: white;
}

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

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

.thick-109f:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

.simple-197b {
  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);
}

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

.pro-23f9 {
  font-weight: 600;
  color: white;
}

.thick-5184 {
  list-style: none;
  padding: 0;
}

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

.popup_6fa0 {
  color: #4caf50;
}

.image-action-d9f8 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.progress_first_a007 .summary_f36f {
  width: 100%;
  background: white;
}

.caption-liquid-b10e .summary_f36f {
  color: #667eea;
}

.next_97bd .summary_f36f {
  color: #f5576c;
}

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

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

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

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

.article-pro-e7fe h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .article-pro-e7fe {
    padding: var(--space-md);
  }
  
  .narrow_0188 {
    padding: var(--space-md);
  }
  
  .rough_53a6 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.fast-70bd li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.smooth_72db,
.green_aad0,
.message-d589,
.section_1857 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.green-5f30 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.media-5bbf {
  border-color: var(--color-success);
}

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

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

.media-5bbf .notification-0544 {
  background: #e8f5e9;
  color: var(--color-success);
}

.avatar_small_4a83 .notification-0544 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.fast-718e {
  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);
}

.west-1a9e {
  text-align: center;
}

.block-out-b27e {
  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);
}

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

.block-out-b27e .pro-23f9 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

.accordion-hot-b466 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.outer-5dec {
  border: 2px solid #4caf50;
}

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

.dropdown-static-fe17 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

.disabled-right-99ff {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

.background-3911 {
  text-align: right;
}

.background-3911 .shadow-in-5f7f {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.iron-e154 {
  background: #e8f5e9;
  color: #2e7d32;
}

.fast-c9ab {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

.photo-plasma-15c0 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.photo-plasma-15c0 strong {
  color: var(--color-primary);
}

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

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

/* ============================================
   20. FAQ SECTION
   ============================================ */
.frame-complex-2b83 {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

.section-pro-e4a5 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.gallery_f4ca[aria-expanded="true"] .section-pro-e4a5 {
  transform: rotate(180deg);
}

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

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

.column-large-840a ul,
.column-large-840a ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.column-large-840a li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

.block_4a3d,
.picture-green-8c7e {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.block_4a3d h4,
.picture-green-8c7e h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.block_4a3d ul,
.picture-green-8c7e ul {
  list-style: none;
  padding: 0;
}

.block_4a3d li,
.picture-green-8c7e li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.gas-4f3d {
  font-style: italic;
}

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

.texture-bronze-384b {
  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;
}

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

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

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

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

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

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

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

.upper-4dff {
  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);
}

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

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

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

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

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

.notification-94bb {
  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) */
.tabs-ef8a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.search-a214 a:hover {
  color: white;
}

.primary-stale-62fe {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.primary-stale-62fe 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);
}

.primary-stale-62fe a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

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

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

.full_9bc8 a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .notification-94bb,
  .tabs-ef8a {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.alert_7962 .shadow-large-7e3d {
  color: #4caf50;
  font-size: 0.875rem;
}

.container-fa43 {
  list-style: none;
  padding: 0;
}

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

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

.container-fa43 a:hover {
  color: white;
}

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

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

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

.focus_green_5eef a:hover {
  color: white;
}

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

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

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

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

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

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

.summary-ea24 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;
}

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

.fresh-3305:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero_b467 {
    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;
  }
  
  .secondary-hovered-0fb0 {
    font-size: 2rem;
  }
  
  .out-bdbe {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .container-in-41b8,
  .carousel_a488 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .border-8b4f,
  .iron_de60,
  .footer-narrow-3909,
  .liquid_e814,
  .row-6570,
  .card_small_502e,
  .orange_0ccc,
  .notification-94bb,
  .tabs-ef8a {
    grid-template-columns: 1fr;
  }
  
  .info_0681 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .silver-76a6 {
    padding: var(--space-lg) 0;
  }
  
  .logo_1fe3 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .logo_1fe3 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .summary_f36f {
    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;
  }
  
  .info_0681 {
    grid-template-columns: 1fr;
  }
  
  .gold_f21f,
  .inner-b17b,
  .content-large-1a31 {
    flex-direction: column;
    width: 100%;
  }
  
  .hover-under-6257,
  .short-ffbb,
  .gold_f21f .summary_f36f,
  .inner-b17b .summary_f36f {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .secondary-hovered-0fb0 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .out-bdbe {
    font-size: 1.375rem;
  }
  
  .info-motion-7d68 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .thumbnail-basic-fbcf,
  .main_5fed,
  .simple-963b,
  .stale_cba6,
  .title_new_cfe7 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .sidebar-2e4d {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .shade_6f7f {
    gap: var(--space-xs);
  }
  
  .media_small_e9cd {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .simple-197b {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .block-out-b27e {
    width: 150px;
    height: 150px;
  }
  
  .surface_smooth_33f1 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .border_gas_2357,
  .focused_3913,
  .gold_f21f,
  .texture-bronze-384b,
  .detail-copper-58ec,
  .detail-11f1,
  .border-steel-8854 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .silver-76a6 {
    page-break-inside: avoid;
  }
}

/* css-noise: cf5e */
.shadow-element-k4 {
  padding: 0.4rem;
  font-size: 14px;
  line-height: 1.1;
}
