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

.outline_blue_2d53:focus {
  top: 0;
}

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

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

@media (max-width: 480px) {
  .button-first-8e8d {
    padding: 0 12px;
  }
}

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

/* Allow specific elements to exceed container */
html,
body,
.center_4228,
header,
.in_ec87,
.grid_focused_b62e,
.warm_b2aa,
.clean_494a,
.last_2a5f,
.pagination_fluid_8f5c,
.cool_bb8f {
  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
   ============================================ */
.center_4228 {
  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);
}

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

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

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

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

.primary-mini-2ba5 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.media-6f26 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.bottom_60ac {
  flex: 1;
}

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

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

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

.brown-fa38.fn-active-79d3 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.pattern-4ba2 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

.secondary-last-72fd {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.new_dc98 svg {
  flex-shrink: 0;
}

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

.content-8dbf: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);
}

.content-8dbf svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.gas_3295[aria-expanded="true"] .breadcrumb-warm-cb41:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .bottom_60ac {
    display: none;
  }
  
  .gas_3295 {
    display: flex;
  }
  
  .menu_64d2 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .new_dc98,
  .content-8dbf {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .pattern-4ba2 {
    position: relative;
  }
  
  .dynamic_4a00 {
    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;
  }
  
  .input_818f[aria-expanded="true"] + .dynamic_4a00 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .tertiary_f824 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .secondary-last-72fd {
    gap: 8px;
  }
  
  .new_dc98 {
    display: none;
  }
  
  .content-8dbf {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .media-6f26 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.outer-7db0 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.outer-7db0 svg {
  flex-shrink: 0;
}

.outer-7db0 a {
  color: var(--color-primary);
  text-decoration: none;
}

.outer-7db0 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.preview-16c9 {
  display: flex;
  gap: var(--space-sm);
}

.background-clean-b4bf {
  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;
}

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

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

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

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

.fresh-34ae {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .gradient-d272 {
    grid-template-columns: 1fr;
  }
  
  .highlight-f21f {
    font-size: 1.75rem;
  }
  
  .fresh-34ae {
    order: -1;
    max-width: 100%;
  }
  
  .menu_outer_bac2 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .highlight-f21f {
    font-size: 1.5rem;
  }
  
  .photo_silver_baa3 {
    font-size: 1rem;
  }
  
  .hero_wood_9f04 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .menu_outer_bac2 {
    max-width: 250px;
  }
}

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

.preview-gas-30e4 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sidebar-north-a2b7 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.sidebar-north-a2b7 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);
}

.sidebar-north-a2b7 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;
}

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

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

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

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

.status-tiny-baa2 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.large_2ec7 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) {
  .detail_north_8b89 {
    grid-template-columns: 1fr;
  }
  
  .gold_1083 {
    font-size: 1.75rem;
  }
  
  .alert_next_001b {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .gold_1083 {
    font-size: 1.5rem;
  }
  
  .alert_next_001b h3 {
    font-size: 1.375rem;
  }
  
  .alert_next_001b h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.small_64c1 {
  flex-shrink: 0;
}

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

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

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

.tabs-south-7ed6,
.summary-paper-fd43,
.pink_1afc {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.tabs-south-7ed6 thead,
.summary-paper-fd43 thead {
  background: var(--color-primary);
  color: white;
}

.tabs-south-7ed6 th,
.tabs-south-7ed6 td,
.summary-paper-fd43 th,
.summary-paper-fd43 td,
.pink_1afc th,
.pink_1afc td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .tabs-south-7ed6 th,
  .tabs-south-7ed6 td,
  .summary-paper-fd43 th,
  .summary-paper-fd43 td,
  .pink_1afc th,
  .pink_1afc td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .tabs-south-7ed6,
  .summary-paper-fd43,
  .pink_1afc {
    min-width: 600px;
  }
}

.tabs-south-7ed6 th,
.summary-paper-fd43 th,
.pink_1afc th {
  font-weight: 600;
}

.tabs-south-7ed6 tbody tr:hover,
.summary-paper-fd43 tbody tr:hover,
.pink_1afc tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.status-basic-ec04 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

.banner-e1c4 {
  list-style: none;
  padding: 0;
}

.banner-e1c4 li {
  padding: var(--space-xs) 0;
}

.texture_inner_e878 {
  color: #4caf50;
}

.picture-b49e {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.widget-active-04ce {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

.frame-lite-f382 {
  margin-top: var(--space-xxl);
}

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

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

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

.nav-east-6f9b {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.nav-east-6f9b ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.nav-east-6f9b li {
  padding: var(--space-xs) 0;
  color: white;
}

.nav-east-6f9b .gradient-1c64 {
  width: 100%;
  background: white;
}

.picture-fa43 .gradient-1c64 {
  color: #667eea;
}

.accent-mini-aafa .gradient-1c64 {
  color: #f5576c;
}

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

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

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

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

.row-upper-9663 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.pagination-purple-8062 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .row-upper-9663 {
    padding: var(--space-md);
  }
  
  .pagination-purple-8062 {
    padding: var(--space-md);
  }
  
  .message_yellow_2ef1 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.dim-10b6,
.photo_b5b5,
.iron-aa10,
.content_fast_0f30 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .tag-warm-16ee {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

.photo_06dc .thick-7c85 {
  background: #e8f5e9;
  color: var(--color-success);
}

.outline_f54b .thick-7c85 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.container-bottom-7baf {
  margin-top: var(--space-xxl);
}

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

.slider_dark_4909 {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.input-hard-df15 {
  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;
}

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

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

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

.cold-65e6 {
  text-align: right;
}

.cold-65e6 .advanced_268a {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

.feature-a5fe {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.overlay-d0c7 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

.picture-wood-1fd5 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.menu_gold_c8ec[aria-expanded="true"] .picture-wood-1fd5 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.white_e848 ul,
.chip_new_6a24 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

.sort-fast-0802 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.fixed_6a87 {
  font-style: italic;
}

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

.message-088f {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.glass_5185 {
  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-medium-be05 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.hot-5f11 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hot-5f11 li {
  margin-bottom: var(--space-xs);
}

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

.hot-5f11 a:hover {
  color: white;
}

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

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

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

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

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

.title_e4dd a:hover {
  color: white;
}

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

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

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

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

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

.prev_6566 .preview-16c9 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.white_d180 a:hover {
  color: white;
}

.banner-b06d {
  list-style: none;
  padding: 0;
}

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

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

.banner-b06d a:hover {
  color: white;
}

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

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

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

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

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

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

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

.header-plasma-009f {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.header-plasma-009f:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .slow_954a {
    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;
  }
  
  .highlight-f21f {
    font-size: 2rem;
  }
  
  .gold_1083 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .gradient-d272,
  .detail_north_8b89 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .mini-1bc0,
  .tag-warm-16ee,
  .tall_f602,
  .card_1845,
  .footer_narrow_7569,
  .sort-0543,
  .light-bcc4,
  .glass_5185,
  .tabs-medium-be05 {
    grid-template-columns: 1fr;
  }
  
  .search_yellow_72f8 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .last_2a5f {
    padding: var(--space-lg) 0;
  }
  
  .sidebar-north-a2b7 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .sidebar-north-a2b7 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .gradient-1c64 {
    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;
  }
  
  .search_yellow_72f8 {
    grid-template-columns: 1fr;
  }
  
  .chip_easy_eaf1,
  .red-e13b,
  .hard_422c {
    flex-direction: column;
    width: 100%;
  }
  
  .highlight-f7f8,
  .background_full_558f,
  .chip_easy_eaf1 .gradient-1c64,
  .red-e13b .gradient-1c64 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .highlight-f21f {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .gold_1083 {
    font-size: 1.375rem;
  }
  
  .sidebar-6e76 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .box-3cea,
  .gold_5b36,
  .tag-09ae,
  .blue_61e3,
  .tabs-next-5e29 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .caption_ecbb {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .menu_action_83cb {
    gap: var(--space-xs);
  }
  
  .outer-7db0 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .bronze_5dc3 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .orange_1c66 {
    width: 150px;
    height: 150px;
  }
  
  .iron-9c4b {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .center_4228,
  .in_ec87,
  .chip_easy_eaf1,
  .message-088f,
  .pagination_fluid_8f5c,
  .cool_bb8f,
  .gas_3295 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .last_2a5f {
    page-break-inside: avoid;
  }
}

/* css-noise: 8074 */
.promo-block-e1 {
  padding: 0.4rem;
  font-size: 11px;
  line-height: 1.3;
}
