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

.notification-a560:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.link_137a,
header,
.filter-wood-5b86,
.hard_7af5,
.article-center-8d70,
.item_56d8,
.gallery-liquid-3eb1,
.caption_79a5,
.down-5afc {
  max-width: none;
}

/* Critical mobile fix: prevent any overflow */
section,
article,
div,
main {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Ensure images never cause overflow */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure SVG icons don't cause issues */
svg {
  max-width: 100%;
  height: auto;
}

/* ============================================
   4. HEADER & NAVIGATION
   ============================================ */
.link_137a {
  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);
}

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

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

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

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

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

.sidebar-9a1c img {
  height: 36px;
  width: auto;
  display: block;
}

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

.inner_37ac {
  flex: 1;
}

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

.avatar-cold-5016 {
  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);
}

.avatar-cold-5016:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.avatar-cold-5016.fn-active-1224 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.paragraph-5473 {
  position: relative;
}

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

.detail-4bea svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.overlay_gold_0a24 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.input-bottom-aab1[aria-expanded="true"] .label-9dfa:nth-child(2) {
  opacity: 0;
}

.input-bottom-aab1[aria-expanded="true"] .label-9dfa:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .inner_37ac {
    display: none;
  }
  
  .input-bottom-aab1 {
    display: flex;
  }
  
  .sidebar-1121 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .overlay_gold_0a24,
  .detail_a307 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .paragraph-5473 {
    position: relative;
  }
  
  .active_cc61 {
    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;
  }
  
  .detail-4bea[aria-expanded="true"] + .active_cc61 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .up-3516 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .left_b148 {
    gap: 8px;
  }
  
  .overlay_gold_0a24 {
    display: none;
  }
  
  .detail_a307 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .sidebar-9a1c img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.video_e3bf svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .wood_4417 {
    grid-template-columns: 1fr;
  }
  
  .wood-5681 {
    font-size: 1.75rem;
  }
  
  .bronze_ee2c {
    order: -1;
    max-width: 100%;
  }
  
  .link_thick_4467 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .wood-5681 {
    font-size: 1.5rem;
  }
  
  .lower_199e {
    font-size: 1rem;
  }
  
  .disabled_f686 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .link_thick_4467 {
    max-width: 250px;
  }
}

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

.block-4bac {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

.pagination-bronze-562b {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.inner-aa59 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;
}

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

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.gallery-liquid-3eb1 {
  padding: var(--space-xxl) 0;
}

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

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

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

.popup-simple-a64b {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.notice_8f28 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) {
  .narrow_3ebf {
    grid-template-columns: 1fr;
  }
  
  .popup-simple-a64b {
    font-size: 1.75rem;
  }
  
  .hero-f1f9 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .popup-simple-a64b {
    font-size: 1.5rem;
  }
  
  .hero-f1f9 h3 {
    font-size: 1.375rem;
  }
  
  .hero-f1f9 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.tag-huge-76d2 {
  flex-shrink: 0;
}

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

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

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

.caption-hard-44aa,
.button_medium_f841,
.tag_bright_f408 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.caption-hard-44aa thead,
.button_medium_f841 thead {
  background: var(--color-primary);
  color: white;
}

.caption-hard-44aa th,
.caption-hard-44aa td,
.button_medium_f841 th,
.button_medium_f841 td,
.tag_bright_f408 th,
.tag_bright_f408 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .caption-hard-44aa th,
  .caption-hard-44aa td,
  .button_medium_f841 th,
  .button_medium_f841 td,
  .tag_bright_f408 th,
  .tag_bright_f408 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .caption-hard-44aa,
  .button_medium_f841,
  .tag_bright_f408 {
    min-width: 600px;
  }
}

.caption-hard-44aa th,
.button_medium_f841 th,
.tag_bright_f408 th {
  font-weight: 600;
}

.caption-hard-44aa tbody tr:hover,
.button_medium_f841 tbody tr:hover,
.tag_bright_f408 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.secondary-selected-f089 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

.outline-a6f3 {
  font-weight: 600;
  color: white;
}

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

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

.media_bright_0592 {
  color: #4caf50;
}

.hero-fc7c {
  color: #ff9800;
}

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

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

.badge-liquid-5da0 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.center_4dd6 .element-4912 {
  width: 100%;
  background: white;
}

.picture-dim-8f9c .element-4912 {
  color: #667eea;
}

.cold-2b8a .element-4912 {
  color: #f5576c;
}

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

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

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

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

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

.stale-2ee5 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .overlay_basic_7c17 {
    padding: var(--space-md);
  }
  
  .stale-2ee5 {
    padding: var(--space-md);
  }
  
  .thick-3c12 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.background-4d41 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.sidebar_cool_7aa0,
.aside-fresh-947a,
.info-51c1,
.breadcrumb_soft_5149 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.pagination-4cc4 {
  border-color: var(--color-warning);
}

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

.liquid_88cc .video_stale_ac14 {
  background: #e8f5e9;
  color: var(--color-success);
}

.pagination-4cc4 .video_stale_ac14 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.orange_a3e2 {
  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-complex-d7fa {
  text-align: center;
}

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

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

.row_718e .outline-a6f3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.hidden-hovered-c998 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

.complex-87db {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.fluid_fb14 {
  text-align: right;
}

.fluid_fb14 .hidden-0d8c {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.slider-motion-914f {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

.sort-a177 {
  background: #e3f2fd;
  color: #1565c0;
}

.progress-1bd6 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.backdrop-plasma-3f9c {
  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);
}

.backdrop-plasma-3f9c:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.texture-in-1cde code {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.5;
}

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

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

.hero_c373 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

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

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

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

.gradient_tall_5374,
.heading-924a {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.gradient_tall_5374 h4,
.heading-924a h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.gradient_tall_5374 ul,
.heading-924a ul {
  list-style: none;
  padding: 0;
}

.gradient_tall_5374 li,
.heading-924a li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.input-simple-8c7c {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.media-44d1 {
  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);
}

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

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

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

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

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

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

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

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

.logo-steel-526d {
  list-style: none;
  padding: 0;
  margin: 0;
}

.logo-steel-526d li {
  margin-bottom: var(--space-xs);
}

.logo-steel-526d a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.logo-steel-526d a:hover {
  color: white;
}

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

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

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

.pattern-dim-0101 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.pattern-dim-0101 a:hover {
  color: white;
}

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

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

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

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

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

.shadow-28db .alert_dac4 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.title_d0b0 a:hover {
  color: white;
}

.glass-dff0 {
  list-style: none;
  padding: 0;
}

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

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

.glass-dff0 a:hover {
  color: white;
}

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

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

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

.table-action-9bc9 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.in-91fc 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;
}

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

.section-4fcf:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .progress_af85 {
    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;
  }
  
  .wood-5681 {
    font-size: 2rem;
  }
  
  .popup-simple-a64b {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .wood_4417,
  .narrow_3ebf {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .button-south-032a,
  .outline-aebf,
  .carousel-down-5668,
  .right_e5e0,
  .huge_0a89,
  .progress-tall-d31c,
  .fast-8ea7,
  .container-north-0037,
  .disabled_iron_3dba {
    grid-template-columns: 1fr;
  }
  
  .focus-south-242d {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .gallery-liquid-3eb1 {
    padding: var(--space-lg) 0;
  }
  
  .inner-aa59 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .inner-aa59 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .element-4912 {
    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;
  }
  
  .focus-south-242d {
    grid-template-columns: 1fr;
  }
  
  .block_7b67,
  .item_glass_3754,
  .liquid_0e85 {
    flex-direction: column;
    width: 100%;
  }
  
  .top_9373,
  .pagination-bronze-562b,
  .block_7b67 .element-4912,
  .item_glass_3754 .element-4912 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .wood-5681 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .popup-simple-a64b {
    font-size: 1.375rem;
  }
  
  .list-stale-34bc {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .dirty_02c9,
  .orange_1f8e,
  .summary-6a06,
  .nav_2938,
  .slider_227b {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .widget_focused_38ad {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .gradient-848e {
    gap: var(--space-xs);
  }
  
  .video_e3bf {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .logo_gold_345e {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .row_718e {
    width: 150px;
    height: 150px;
  }
  
  .gallery_fc90 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .link_137a,
  .filter-wood-5b86,
  .block_7b67,
  .feature-a7b7,
  .caption_79a5,
  .down-5afc,
  .input-bottom-aab1 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .gallery-liquid-3eb1 {
    page-break-inside: avoid;
  }
}

/* css-noise: 8e6a */
.widget-item-q1 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.3;
}
