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

.grid_5229:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.tabs_fadd,
header,
.video-0eb9,
.link-next-e57c,
.input-medium-2dbe,
.grid-green-ba4b,
.image-0246,
.table_small_7836,
.thick-114c {
  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
   ============================================ */
.tabs_fadd {
  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);
}

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

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

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

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

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

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

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

.primary_soft_2593 {
  flex: 1;
}

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

.outer-2b58 {
  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);
}

.outer-2b58:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.outer-2b58.fn-active-c643 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

.image-left-a047 {
  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;
}

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

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

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

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

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

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

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

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

.short-b14d svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .primary_soft_2593::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .primary_soft_2593.container-clean-e526 {
    display: block;
    right: 0;
  }
  
  .picture-d77b {
    flex-direction: column;
    gap: 0;
  }
  
  .outer-2b58 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .primary_soft_2593::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;
  }
  
  .primary_soft_2593.container-clean-e526::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .primary_soft_2593 {
    display: none;
  }
  
  .full_656d {
    display: flex;
  }
  
  .gallery_in_a6a7 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .short-b14d,
  .primary_focused_c688 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .box_center_3d68 {
    position: relative;
  }
  
  .image-left-a047 {
    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;
  }
  
  .logo_6f27[aria-expanded="true"] + .image-left-a047 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .component_d2eb {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .photo_492c {
    gap: 8px;
  }
  
  .short-b14d {
    display: none;
  }
  
  .primary_focused_c688 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .detail_3fc4 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.dim_a981 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

.frame-west-bbcb {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

.widget-fixed-976c {
  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;
}

.sort-paper-5ff5 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sort-paper-5ff5 strong {
  font-weight: 600;
  color: var(--color-text);
}

.sort-paper-5ff5 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.sidebar-paper-f226 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

.frame-full-1ff3 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

@media (max-width: 968px) {
  .wood-69e5 {
    grid-template-columns: 1fr;
  }
  
  .rough_9663 {
    font-size: 1.75rem;
  }
  
  .badge_liquid_3abe {
    order: -1;
    max-width: 100%;
  }
  
  .row_b25f {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .rough_9663 {
    font-size: 1.5rem;
  }
  
  .pro-efbe {
    font-size: 1rem;
  }
  
  .brown_ff92 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .row_b25f {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.notification-first-55b5 {
  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);
}

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

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

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

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

.backdrop-solid-5608 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.backdrop-solid-5608 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);
}

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

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

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

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

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

.backdrop-solid-5608 strong {
  font-weight: 600;
  color: var(--color-text);
}

.backdrop-solid-5608 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.backdrop-solid-5608 a:hover {
  color: var(--color-primary-dark);
}

.down-3d54 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.down-3d54 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) {
  .light-204b {
    grid-template-columns: 1fr;
  }
  
  .notification-first-55b5 {
    font-size: 1.75rem;
  }
  
  .backdrop-solid-5608 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .notification-first-55b5 {
    font-size: 1.5rem;
  }
  
  .backdrop-solid-5608 h3 {
    font-size: 1.375rem;
  }
  
  .backdrop-solid-5608 h4 {
    font-size: 1.125rem;
  }
}

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

.alert-copper-fb41 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.hidden-red-8f07 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

.main-gas-1a48 strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

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

.label_9611 {
  flex-shrink: 0;
}

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

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

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

.text_down_2442,
.backdrop-west-772e,
.fixed-e93f {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.text_down_2442 thead,
.backdrop-west-772e thead {
  background: var(--color-primary);
  color: white;
}

.text_down_2442 th,
.text_down_2442 td,
.backdrop-west-772e th,
.backdrop-west-772e td,
.fixed-e93f th,
.fixed-e93f td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .text_down_2442 th,
  .text_down_2442 td,
  .backdrop-west-772e th,
  .backdrop-west-772e td,
  .fixed-e93f th,
  .fixed-e93f td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .text_down_2442,
  .backdrop-west-772e,
  .fixed-e93f {
    min-width: 600px;
  }
}

.text_down_2442 th,
.backdrop-west-772e th,
.fixed-e93f th {
  font-weight: 600;
}

.text_down_2442 tbody tr:hover,
.backdrop-west-772e tbody tr:hover,
.fixed-e93f tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.content-soft-be36 h4 {
  color: white;
}

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

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

.dirty-c889:last-child {
  border-bottom: none;
}

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

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

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

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

.dim-3aee:hover {
  text-decoration: underline;
}

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

.caption-prev-8b94 {
  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);
}

.caption-prev-8b94 span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

.image-basic-a341 {
  list-style: none;
  padding: 0;
}

.image-basic-a341 li {
  padding: var(--space-xs) 0;
}

.tertiary_easy_2888 {
  color: #4caf50;
}

.video-4234 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

.shade-over-1e93:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.shade-over-1e93 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

.breadcrumb-easy-24ee {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.medium_d7de .feature-6b21 {
  width: 100%;
  background: white;
}

.outline_in_85e6 .feature-6b21 {
  color: #667eea;
}

.nav_clean_6c59 .feature-6b21 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .dim_6196 {
    padding: var(--space-md);
  }
  
  .link_liquid_b17b {
    padding: var(--space-md);
  }
  
  .complex-925f {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.overlay-4558,
.under_ab3b,
.modal_54c0,
.pagination-under-46c4 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.accent_82bf .hot-7682 {
  background: #e8f5e9;
  color: var(--color-success);
}

.badge_active_8d87 .hot-7682 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.status-8b14 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

.fresh-3c93 {
  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);
}

.thumbnail_fe4b {
  text-align: center;
}

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

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

.accent-1635 .aside_lower_4836 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.pink-2da9 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.large_4127 {
  text-align: right;
}

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

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

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

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

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

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

.narrow-2e6c {
  background: #e8f5e9;
  color: #2e7d32;
}

.chip-4b93 {
  background: #e3f2fd;
  color: #1565c0;
}

.highlight-bright-ab08 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.large-80d7 {
  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);
}

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

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

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

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

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

.notification-gas-6b73 {
  text-align: center;
  margin-top: var(--space-xl);
}

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

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

.media-cold-1986 {
  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);
}

.media-cold-1986:hover {
  background: var(--color-bg-alt);
}

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

.media-cold-1986[aria-expanded="true"] .alert_6e56 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.main-slow-3243,
.wood-7b4f {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.main-slow-3243 h4,
.wood-7b4f h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.main-slow-3243 ul,
.wood-7b4f ul {
  list-style: none;
  padding: 0;
}

.main-slow-3243 li,
.wood-7b4f li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

.texture-soft-2cb0 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.texture-soft-2cb0 ul {
  list-style: none;
  padding: 0;
}

.texture-soft-2cb0 li {
  padding: var(--space-xs) 0;
  color: white;
}

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

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

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

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

.top_9d2f {
  font-style: italic;
}

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

.primary-mini-32ad {
  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;
}

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

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

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

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

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

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

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

.stone-14bb {
  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);
}

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

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

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

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

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

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

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

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

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

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

.full-4c9d .badge_hot_0884 {
  color: #4caf50;
  font-size: 0.875rem;
}

.tabs-in-9a9d {
  list-style: none;
  padding: 0;
}

.tabs-in-9a9d li {
  margin-bottom: var(--space-xs);
}

.tabs-in-9a9d a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.tabs-in-9a9d a:hover {
  color: white;
}

.component-c34e {
  list-style: none;
  padding: 0;
}

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

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

.component-c34e a:hover {
  color: white;
}

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

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

.frame-pressed-2fb1 a {
  color: #4caf50;
  text-decoration: none;
}

.aside-plasma-a557 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .nav_bc27 {
    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;
  }
  
  .rough_9663 {
    font-size: 2rem;
  }
  
  .notification-first-55b5 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .wood-69e5,
  .light-204b {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .column-91a0,
  .north-8fe4,
  .card-yellow-2148,
  .popup_d234,
  .inner-348e,
  .new_9bda,
  .tall_c031,
  .mask-inner-8f2c {
    grid-template-columns: 1fr;
  }
  
  .logo-8eaf {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .image-0246 {
    padding: var(--space-lg) 0;
  }
  
  .tabs_b13f li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .tabs_b13f li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .feature-6b21 {
    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;
  }
  
  .logo-8eaf {
    grid-template-columns: 1fr;
  }
  
  .sidebar-paper-f226,
  .thick_e5f0,
  .primary_76df {
    flex-direction: column;
    width: 100%;
  }
  
  .banner_d342,
  .short_08a5,
  .sidebar-paper-f226 .feature-6b21,
  .thick_e5f0 .feature-6b21 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .rough_9663 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .notification-first-55b5 {
    font-size: 1.375rem;
  }
  
  .widget_medium_81ee {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .selected-ba13,
  .shade-over-1e93,
  .in-4e97,
  .alert_63a6,
  .header-95de {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .north-536c {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .in-8cac {
    gap: var(--space-xs);
  }
  
  .dim_a981 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .caption-prev-8b94 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .accent-1635 {
    width: 150px;
    height: 150px;
  }
  
  .message_right_bbb1 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .tabs_fadd,
  .video-0eb9,
  .sidebar-paper-f226,
  .primary-mini-32ad,
  .table_small_7836,
  .thick-114c,
  .full_656d {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .image-0246 {
    page-break-inside: avoid;
  }
}

/* css-noise: f9aa */
.promo-block-h5 {
  padding: 0.1rem;
  font-size: 14px;
  line-height: 1.1;
}
