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

.current_8980:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.link-last-ba85,
header,
.inner_2402,
.hero_bf0c,
.caption-green-2344,
.item-middle-2e9b,
.notice-bronze-9297,
.hero_1f31,
.light-5820 {
  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
   ============================================ */
.link-last-ba85 {
  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);
}

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

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

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

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

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

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

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

.picture_731d {
  flex: 1;
}

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

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

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

.new_890a.fn-active-eee9 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

.element-green-84f9 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.fluid_caed svg {
  flex-shrink: 0;
}

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

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

.tabs-7a1f svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

.box-green-7f10 {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

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

.complex_05f0[aria-expanded="true"] .box-green-7f10:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .picture_731d {
    display: none;
  }
  
  .complex_05f0 {
    display: flex;
  }
  
  .wide_553b {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .fluid_caed,
  .tabs-7a1f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .last_3b8e {
    position: relative;
  }
  
  .tabs_732a {
    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;
  }
  
  .menu_121d[aria-expanded="true"] + .tabs_732a {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .accordion_c56c {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .element-green-84f9 {
    gap: 8px;
  }
  
  .fluid_caed {
    display: none;
  }
  
  .tabs-7a1f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .out_d093 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.banner_45d8 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

.disabled-069c {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

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

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

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

.hidden-short-6815 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.tabs-black-253c {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .thumbnail_dirty_ec14 {
    grid-template-columns: 1fr;
  }
  
  .gas_01bc {
    font-size: 1.75rem;
  }
  
  .overlay_fresh_5504 {
    order: -1;
    max-width: 100%;
  }
  
  .tabs-black-253c {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .gas_01bc {
    font-size: 1.5rem;
  }
  
  .box_outer_49da {
    font-size: 1rem;
  }
  
  .link_fast_41c6 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .tabs-black-253c {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tag-1928 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;
}

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

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

.frame-right-a1dc {
  background: var(--color-bg-section);
}

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

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

.module-slow-218d {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nav_9306 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) {
  .focused-f9c2 {
    grid-template-columns: 1fr;
  }
  
  .module-slow-218d {
    font-size: 1.75rem;
  }
  
  .tooltip_9293 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .module-slow-218d {
    font-size: 1.5rem;
  }
  
  .tooltip_9293 h3 {
    font-size: 1.375rem;
  }
  
  .tooltip_9293 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.aside-small-3d3d {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.feature_1b43 {
  flex-shrink: 0;
}

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

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

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

.status-right-cd8b,
.description_6494,
.video_blue_c31d {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.status-right-cd8b thead,
.description_6494 thead {
  background: var(--color-primary);
  color: white;
}

.status-right-cd8b th,
.status-right-cd8b td,
.description_6494 th,
.description_6494 td,
.video_blue_c31d th,
.video_blue_c31d td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .status-right-cd8b th,
  .status-right-cd8b td,
  .description_6494 th,
  .description_6494 td,
  .video_blue_c31d th,
  .video_blue_c31d td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .status-right-cd8b,
  .description_6494,
  .video_blue_c31d {
    min-width: 600px;
  }
}

.status-right-cd8b th,
.description_6494 th,
.video_blue_c31d th {
  font-weight: 600;
}

.status-right-cd8b tbody tr:hover,
.description_6494 tbody tr:hover,
.video_blue_c31d tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.wrapper-focused-93c6 h4 {
  color: white;
}

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

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

.component-52d5:last-child {
  border-bottom: none;
}

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

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

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

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

.current-40c1:hover {
  text-decoration: underline;
}

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

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

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

.gallery-f26e {
  font-weight: 600;
  color: white;
}

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

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

.tabs-white-1743 {
  color: #4caf50;
}

.hot-2897 {
  color: #ff9800;
}

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

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

.dropdown-short-8aca {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

.preview-static-2fb7 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.first_0001 .fast-4761 {
  width: 100%;
  background: white;
}

.notice_liquid_208b .fast-4761 {
  color: #667eea;
}

.mask-e3a0 .fast-4761 {
  color: #f5576c;
}

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

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

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

.large-46c1 {
  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);
}

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

.basic-0d95 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .basic_7874 {
    padding: var(--space-md);
  }
  
  .basic-0d95 {
    padding: var(--space-md);
  }
  
  .gold-5738 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.heading-9656,
.gas_09cf,
.wrapper-39d9,
.video_7dd7 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.glass-06d7:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

.texture-huge-b239 {
  border-color: var(--color-success);
}

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

.table-paper-9939 {
  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);
}

.texture-huge-b239 .table-paper-9939 {
  background: #e8f5e9;
  color: var(--color-success);
}

.frame-6935 .table-paper-9939 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.heading-advanced-3e85 {
  margin-top: var(--space-xxl);
}

.gradient-wide-e2eb {
  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);
}

.tabs_6d17 {
  text-align: center;
}

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

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

.popup_short_68d3 .gallery-f26e {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.medium-58fb {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.notice-orange-0ffc {
  border: 2px solid #4caf50;
}

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

.glass-8de6 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

.tag-current-1a07 {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

.list-hovered-8f91 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.section_tall_42f9 {
  text-align: right;
}

.section_tall_42f9 .dim_2b4b {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.hero-lower-8bef {
  background: #e8f5e9;
  color: #2e7d32;
}

.backdrop-84b8 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

.selected-d882 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

.tooltip_6025[aria-expanded="true"] .table_pro_10ab {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.widget_2923 ul,
.grid_cf71 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

.gallery-focused-a68d ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.layout-c470 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.list_2d70 .caption_fluid_6fcf {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.nav_5402 a:hover {
  color: white;
}

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

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

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

.lite_b76d a:hover {
  color: white;
}

.accordion-large-70f7 {
  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);
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .accordion-large-70f7 {
    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;
  }
  
  .gas_01bc {
    font-size: 2rem;
  }
  
  .module-slow-218d {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .thumbnail_dirty_ec14,
  .focused-f9c2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .outline-1aed,
  .tertiary_ae10,
  .shade-next-afee,
  .backdrop_d9b3,
  .footer_ab44,
  .outer_cab9,
  .hot_4999,
  .pattern_bb9b {
    grid-template-columns: 1fr;
  }
  
  .aside_north_3213 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .notice-bronze-9297 {
    padding: var(--space-lg) 0;
  }
  
  .tag-1928 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .tag-1928 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .fast-4761 {
    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;
  }
  
  .aside_north_3213 {
    grid-template-columns: 1fr;
  }
  
  .hidden-short-6815,
  .item-26bd,
  .section-over-a6f3 {
    flex-direction: column;
    width: 100%;
  }
  
  .column_pro_13d3,
  .layout_tiny_11eb,
  .hidden-short-6815 .fast-4761,
  .item-26bd .fast-4761 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .gas_01bc {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .module-slow-218d {
    font-size: 1.375rem;
  }
  
  .picture-80fc {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .hard_1d7a,
  .column_fefd,
  .search-thick-1b7d,
  .gradient_5747,
  .bottom-ac1d {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .preview_bcb9 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .status_8e27 {
    gap: var(--space-xs);
  }
  
  .banner_45d8 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .nav_31d6 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .popup_short_68d3 {
    width: 150px;
    height: 150px;
  }
  
  .focused_c2ff {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .link-last-ba85,
  .inner_2402,
  .hidden-short-6815,
  .footer_selected_0aec,
  .hero_1f31,
  .light-5820,
  .complex_05f0 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .notice-bronze-9297 {
    page-break-inside: avoid;
  }
}

/* css-noise: 24ad */
.promo-block-u6 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.1;
}
