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

.column_4dee:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.modal-wood-91ff,
header,
.grid-inner-8034,
.section_liquid_3584,
.overlay_8806,
.gold-2e6d,
.hard-a118,
.advanced-ebcb,
.form-tall-ce65 {
  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
   ============================================ */
.modal-wood-91ff {
  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);
}

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

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

/* Scrolled state */
.modal-wood-91ff.logo-new-bd82 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.first-58c8 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.active_0c92 {
  flex: 1;
}

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

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

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

.list-e807.fn-active-0e2f {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.chip-6c23 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.module_next_78b2 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .active_0c92 {
    display: none;
  }
  
  .frame_first_b3ec {
    display: flex;
  }
  
  .first_6ebb {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .module_next_78b2,
  .slow-f08f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .chip-6c23 {
    position: relative;
  }
  
  .middle_5180 {
    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;
  }
  
  .slider_hot_f4fe[aria-expanded="true"] + .middle_5180 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .paragraph_4a4e {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .top_aa18 {
    gap: 8px;
  }
  
  .module_next_78b2 {
    display: none;
  }
  
  .slow-f08f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .first-58c8 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.preview_tall_9ae2 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.banner-1ea3 a {
  color: var(--color-primary);
  text-decoration: none;
}

.banner-1ea3 a:hover {
  text-decoration: underline;
}

.input-wide-131b {
  color: var(--color-text-lighter);
}

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

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

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

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

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

.breadcrumb-610f {
  display: flex;
  gap: var(--space-sm);
}

.hero-gold-af60 {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--color-primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

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

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

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

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

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

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

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

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

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

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

.caption-top-0f17 {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

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

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

@media (max-width: 968px) {
  .component_de01 {
    grid-template-columns: 1fr;
  }
  
  .accordion_light_135a {
    font-size: 1.75rem;
  }
  
  .green_d5d9 {
    order: -1;
    max-width: 100%;
  }
  
  .advanced_a85d {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .accordion_light_135a {
    font-size: 1.5rem;
  }
  
  .module-b6ff {
    font-size: 1rem;
  }
  
  .banner-1ea3 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .advanced_a85d {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

.component-9e24 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.thumbnail_b9e3 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) {
  .hot_f80a {
    grid-template-columns: 1fr;
  }
  
  .media_d551 {
    font-size: 1.75rem;
  }
  
  .carousel-b1c9 {
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

.notice_8beb {
  flex-shrink: 0;
}

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

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

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

.highlight-medium-8334,
.slider-787f,
.menu_9460 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.highlight-medium-8334 thead,
.slider-787f thead {
  background: var(--color-primary);
  color: white;
}

.highlight-medium-8334 th,
.highlight-medium-8334 td,
.slider-787f th,
.slider-787f td,
.menu_9460 th,
.menu_9460 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .highlight-medium-8334 th,
  .highlight-medium-8334 td,
  .slider-787f th,
  .slider-787f td,
  .menu_9460 th,
  .menu_9460 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .highlight-medium-8334,
  .slider-787f,
  .menu_9460 {
    min-width: 600px;
  }
}

.highlight-medium-8334 th,
.slider-787f th,
.menu_9460 th {
  font-weight: 600;
}

.highlight-medium-8334 tbody tr:hover,
.slider-787f tbody tr:hover,
.menu_9460 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.preview_1bf7 h4 {
  color: white;
}

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

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

.hard-55ad:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

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

.over-6851 {
  list-style: none;
  padding: 0;
}

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

.paragraph_green_8218 {
  color: #4caf50;
}

.pink_ac4f {
  color: #ff9800;
}

.link-full-75f7 {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sort-7be7 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.in_02ba .dynamic_b67d {
  width: 100%;
  background: white;
}

.pattern-9f6a .dynamic_b67d {
  color: #667eea;
}

.media-yellow-8f46 .dynamic_b67d {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .footer-b9f8 {
    padding: var(--space-md);
  }
  
  .old_8e87 {
    padding: var(--space-md);
  }
  
  .dropdown-brown-aa55 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.sort-center-d3bf li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.module-6509,
.fast-0d00,
.shadow_brown_8da4,
.button-3328 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.tag-fixed-4e89 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

@media (max-width: 768px) {
  .caption-fixed-552c {
    grid-template-columns: 1fr;
  }
}

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

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

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

.preview-old-5a93 {
  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);
}

.disabled_a775 .preview-old-5a93 {
  background: #e8f5e9;
  color: var(--color-success);
}

.breadcrumb_tiny_9454 .preview-old-5a93 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.summary-cool-e886 {
  text-align: center;
}

.detail-67f2 {
  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);
}

.shade-active-6ff7 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.detail-67f2 .media_prev_a946 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.widget-clean-5e1e p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.paragraph-current-99ea {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.silver-7780 {
  border: 2px solid #4caf50;
}

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

.fluid-9eab {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.block-3820 {
  text-align: right;
}

.block-3820 .tall-1918 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

.focus-out-71ee {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

.primary-6105 {
  background: #e8f5e9;
  color: #2e7d32;
}

.summary-eddb {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

.row-small-83cc span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.down-6ba3 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.accent-hard-836f {
  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);
}

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

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

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

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

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

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

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

.wide_6dcd ul,
.wood_8ba8 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.first-6b05 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.widget-hot-4b36 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget-hot-4b36 li {
  margin-bottom: var(--space-xs);
}

.widget-hot-4b36 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.widget-hot-4b36 a:hover {
  color: white;
}

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

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

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

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

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

.out-d82c a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .box-first-91b5,
  .outline-de78 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.background_wide_5ac4 .breadcrumb-610f {
  color: #4caf50;
  font-size: 0.875rem;
}

.dim-043a {
  list-style: none;
  padding: 0;
}

.dim-043a li {
  margin-bottom: var(--space-xs);
}

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

.dim-043a a:hover {
  color: white;
}

.column-over-f16b {
  list-style: none;
  padding: 0;
}

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

.column-over-f16b a {
  color: #b0b0b0;
  text-decoration: none;
}

.column-over-f16b a:hover {
  color: white;
}

.blue-8f4c {
  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);
}

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

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

.logo-over-430e {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.hot-7908 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;
}

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

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

@media (max-width: 768px) {
  .blue-8f4c {
    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;
  }
  
  .accordion_light_135a {
    font-size: 2rem;
  }
  
  .media_d551 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .component_de01,
  .hot_f80a {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .shadow_b33e,
  .caption-fixed-552c,
  .primary_71f5,
  .label_new_ee32,
  .soft_bf56,
  .white-7853,
  .basic-508a,
  .box-first-91b5,
  .outline-de78 {
    grid-template-columns: 1fr;
  }
  
  .filter_yellow_8b83 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .hard-a118 {
    padding: var(--space-lg) 0;
  }
  
  .bright_d7c7 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .bright_d7c7 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .dynamic_b67d {
    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;
  }
  
  .filter_yellow_8b83 {
    grid-template-columns: 1fr;
  }
  
  .tabs_2349,
  .solid_b50d,
  .card_tall_aeda {
    flex-direction: column;
    width: 100%;
  }
  
  .form_818a,
  .component-9e24,
  .tabs_2349 .dynamic_b67d,
  .solid_b50d .dynamic_b67d {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .accordion_light_135a {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .media_d551 {
    font-size: 1.375rem;
  }
  
  .left_a0eb {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .focused-2f22,
  .thumbnail-a876,
  .notice_right_70e3,
  .picture-focused-aeb2,
  .alert_north_7d4c {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .thumbnail_919a {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .surface-dda0 {
    gap: var(--space-xs);
  }
  
  .preview_tall_9ae2 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .menu_new_8e84 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .detail-67f2 {
    width: 150px;
    height: 150px;
  }
  
  .shade-active-6ff7 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .modal-wood-91ff,
  .grid-inner-8034,
  .tabs_2349,
  .overlay_707a,
  .advanced-ebcb,
  .form-tall-ce65,
  .frame_first_b3ec {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .hard-a118 {
    page-break-inside: avoid;
  }
}

/* css-noise: be7e */
.shadow-element-y3 {
  padding: 0.3rem;
  font-size: 12px;
  line-height: 1.1;
}
