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

.aside-10d4:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.complex_e7f8,
header,
.short-79b5,
.pagination-b24a,
.background_short_e9a7,
.badge_dirty_a618,
.soft-920a,
.article_573f,
.form-3dfe {
  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
   ============================================ */
.complex_e7f8 {
  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);
}

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

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

/* Scrolled state */
.complex_e7f8.footer-inner-836a {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

.hero-advanced-2242 {
  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;
}

.summary_73f5 {
  flex: 1;
}

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

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

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

.green_d837.fn-active-8c63 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.section-slow-3fbb {
  position: relative;
}

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

.gallery-7d68 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

/* Header Login Button */
.description_copper_b716 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
}

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

.description_copper_b716 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.out-33c2[aria-expanded="true"] .up_9c07:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .summary_73f5 {
    display: none;
  }
  
  .out-33c2 {
    display: flex;
  }
  
  .hero-advanced-2242 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .description_copper_b716,
  .simple-1940 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .section-slow-3fbb {
    position: relative;
  }
  
  .layout_solid_59ee {
    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;
  }
  
  .gallery-7d68[aria-expanded="true"] + .layout_solid_59ee {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .slider_dirty_df69 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .main_up_ebbd {
    gap: 8px;
  }
  
  .description_copper_b716 {
    display: none;
  }
  
  .simple-1940 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .caption_complex_e2bf img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.description_ba52 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tabs-purple-87fa {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

.caption-huge-b6fc {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .heading_wide_0c9f {
    grid-template-columns: 1fr;
  }
  
  .grid_c638 {
    font-size: 1.75rem;
  }
  
  .caption-huge-b6fc {
    order: -1;
    max-width: 100%;
  }
  
  .pink_4850 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .grid_c638 {
    font-size: 1.5rem;
  }
  
  .border_wide_ab30 {
    font-size: 1rem;
  }
  
  .disabled_d035 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .pink_4850 {
    max-width: 250px;
  }
}

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

.main-liquid-2c7f {
  background: var(--color-primary);
  color: white;
}

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

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

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

.accent-brown-5acd {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.accent-brown-5acd:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.center_4b85 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) {
  .disabled_paper_4ff5 {
    grid-template-columns: 1fr;
  }
  
  .logo-b6cb {
    font-size: 1.75rem;
  }
  
  .prev_aa18 {
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

.article_hot_cf75 {
  flex-shrink: 0;
}

.dropdown-dim-494f strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

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

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

.upper-2f58,
.gas_22b9,
.wrapper-7afc {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.upper-2f58 thead,
.gas_22b9 thead {
  background: var(--color-primary);
  color: white;
}

.upper-2f58 th,
.upper-2f58 td,
.gas_22b9 th,
.gas_22b9 td,
.wrapper-7afc th,
.wrapper-7afc td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .upper-2f58 th,
  .upper-2f58 td,
  .gas_22b9 th,
  .gas_22b9 td,
  .wrapper-7afc th,
  .wrapper-7afc td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .upper-2f58,
  .gas_22b9,
  .wrapper-7afc {
    min-width: 600px;
  }
}

.upper-2f58 th,
.gas_22b9 th,
.wrapper-7afc th {
  font-weight: 600;
}

.upper-2f58 tbody tr:hover,
.gas_22b9 tbody tr:hover,
.wrapper-7afc tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.pattern-a6e3 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

.solid-cf16 {
  font-weight: 600;
  color: white;
}

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

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

.layout-fluid-12e6 {
  color: #4caf50;
}

.content_ebb7 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.upper-830b .soft-3234 {
  width: 100%;
  background: white;
}

.pattern_bba9 .soft-3234 {
  color: #667eea;
}

.list-brown-87ae .soft-3234 {
  color: #f5576c;
}

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

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

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

.text-68a1 {
  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);
}

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

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

@media (max-width: 768px) {
  .upper-4ee8 {
    padding: var(--space-md);
  }
  
  .breadcrumb_b605 {
    padding: var(--space-md);
  }
  
  .content-f43a {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.module_a8e9,
.pro-2b88,
.gas_b741,
.large_a1b8 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.secondary-fast-db2f:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

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

.layout-dcf9 .summary_liquid_34cc {
  background: #e8f5e9;
  color: var(--color-success);
}

.fixed-9301 .summary_liquid_34cc {
  background: #fff3e0;
  color: var(--color-warning);
}

.secondary-paper-6b89 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.secondary-paper-6b89 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

.accordion-under-ab2a {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

.notification-last-48d1 {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

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

.summary-old-0d07 {
  margin-top: var(--space-xxl);
}

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

.list_narrow_acc2 {
  text-align: center;
}

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

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

.light-5321 .solid-cf16 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.media-plasma-dc49 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.narrow-37f7 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.hover-east-4eca {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.box-rough-e5f1 {
  text-align: right;
}

.box-rough-e5f1 .detail-outer-1221 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.rough-c71d {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

.widget-mini-7a08 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

.first-3119 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

.static-93d4 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.white-8c40 {
  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);
}

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

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

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

.tertiary-dbe7,
.content-567e {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.tertiary-dbe7 h4,
.content-567e h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.tertiary-dbe7 ul,
.content-567e ul {
  list-style: none;
  padding: 0;
}

.tertiary-dbe7 li,
.content-567e li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.item_ea51 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.gallery-69c9 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

.outline_2c1f a:hover {
  color: white;
}

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

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

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

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

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

.bright-9530 a:hover {
  color: white;
}

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

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

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

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

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

.wrapper_top_ab7a .tabs-purple-87fa {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.header_outer_daa2 a:hover {
  color: white;
}

.cool-7a2b {
  list-style: none;
  padding: 0;
}

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

.cool-7a2b a {
  color: #b0b0b0;
  text-decoration: none;
}

.cool-7a2b a:hover {
  color: white;
}

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

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

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

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

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

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

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

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

.summary-gas-f4c1:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .fresh_2300 {
    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;
  }
  
  .grid_c638 {
    font-size: 2rem;
  }
  
  .logo-b6cb {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .heading_wide_0c9f,
  .disabled_paper_4ff5 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .carousel_d80a,
  .content_thick_7829,
  .logo_green_178a,
  .text_stone_efea,
  .detail-5e95,
  .backdrop_17fa,
  .soft-2678,
  .outline_yellow_1225,
  .video_dynamic_0c34 {
    grid-template-columns: 1fr;
  }
  
  .outline_c74b {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .soft-920a {
    padding: var(--space-lg) 0;
  }
  
  .tall_3eb6 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .tall_3eb6 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .soft-3234 {
    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;
  }
  
  .outline_c74b {
    grid-template-columns: 1fr;
  }
  
  .row_clean_d883,
  .black-96f4,
  .shadow_gold_c1a7 {
    flex-direction: column;
    width: 100%;
  }
  
  .caption_hovered_7168,
  .middle-f593,
  .row_clean_d883 .soft-3234,
  .black-96f4 .soft-3234 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .grid_c638 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .logo-b6cb {
    font-size: 1.375rem;
  }
  
  .wood-c114 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .shadow-6260,
  .caption_south_2475,
  .status-8125,
  .center_cc93,
  .wrapper-inner-4e32 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .tooltip_slow_641f {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .search_mini_461d {
    gap: var(--space-xs);
  }
  
  .description_ba52 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .summary-bf69 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .light-5321 {
    width: 150px;
    height: 150px;
  }
  
  .item_6a0d {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .complex_e7f8,
  .short-79b5,
  .row_clean_d883,
  .easy_5743,
  .article_573f,
  .form-3dfe,
  .out-33c2 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .soft-920a {
    page-break-inside: avoid;
  }
}

/* css-noise: 7943 */
.phantom-card-p4 {
  padding: 0.5rem;
  font-size: 10px;
  line-height: 1.1;
}
