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

.button_fixed_6061:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container.
   html/body are excluded on purpose: releasing their max-width removes the
   last guard against a horizontally scrollable page. */
.heading-cold-08ad,
header,
.tabs-26e9,
.west_b6c8,
.in-71a6,
.chip-cb03,
.column-prev-cfe8,
.footer_selected_7468,
.secondary-7aa5 {
  max-width: none;
}

/* overflow-x stays off <html>: pairing it with body's hidden turns <html>
   into its own scroll container and breaks the sticky header. */
html,
body {
  width: 100%;
  max-width: 100%;
}

/* 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
   ============================================ */
.heading-cold-08ad {
  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);
}

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

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

/* Scrolled state */
.heading-cold-08ad.medium-c54a {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.preview-bec8 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.out_797c {
  flex: 1;
}

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

.component-pressed-4bda {
  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);
}

.component-pressed-4bda:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.component-pressed-4bda.large_f334 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.article-basic-94d0 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.text-east-fbc0 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.south-17d0[aria-expanded="true"] .hidden-bronze-cfbd:nth-child(2) {
  opacity: 0;
}

.south-17d0[aria-expanded="true"] .hidden-bronze-cfbd:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .out_797c {
    display: none;
  }
  
  .south-17d0 {
    display: flex;
  }
  
  .accent-6622 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .text-east-fbc0,
  .white_b64f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .article-basic-94d0 {
    position: relative;
  }
  
  .huge-e3a8 {
    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;
  }
  
  .focus_static_9d1f[aria-expanded="true"] + .huge-e3a8 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .old_35c0 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .paragraph-f6b8 {
    gap: 8px;
  }
  
  .text-east-fbc0 {
    display: none;
  }
  
  .white_b64f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .preview-bec8 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.heading_1fae svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

.gold-9c2d {
  color: var(--color-text-lighter);
}

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

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

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

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

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

.prev-722a {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

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

.tag-e7b2 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

.pagination-fresh-265f {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

@media (max-width: 968px) {
  .icon_4739 {
    grid-template-columns: 1fr;
  }
  
  .footer-green-2934 {
    font-size: 1.75rem;
  }
  
  .sidebar-beed {
    order: -1;
    max-width: 100%;
  }
  
  .tag-e7b2 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .footer-green-2934 {
    font-size: 1.5rem;
  }
  
  .breadcrumb_medium_f936 {
    font-size: 1rem;
  }
  
  .tabs_wide_2d54 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .tag-e7b2 {
    max-width: 250px;
  }
}

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

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

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

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

.light-5da5:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.status-3a8c {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.blue-a66a 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;
}

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

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.column-prev-cfe8 {
  padding: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

.pagination-simple-1e84 {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.pagination-simple-1e84 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.pagination-simple-1e84 pre,
.pagination-simple-1e84 code {
  overflow-x: auto;
  max-width: 100%;
}

.pagination-simple-1e84 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);
}

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

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

.pagination-simple-1e84 p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.pagination-simple-1e84 ul,
.pagination-simple-1e84 ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.pagination-simple-1e84 li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.pagination-simple-1e84 strong {
  font-weight: 600;
  color: var(--color-text);
}

.pagination-simple-1e84 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.pagination-simple-1e84 a:hover {
  color: var(--color-primary-dark);
}

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

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

.under_3e2a 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) {
  .carousel-active-a3e7 {
    grid-template-columns: 1fr;
  }
  
  .icon_lower_4f37 {
    font-size: 1.75rem;
  }
  
  .pagination-simple-1e84 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .icon_lower_4f37 {
    font-size: 1.5rem;
  }
  
  .pagination-simple-1e84 h3 {
    font-size: 1.375rem;
  }
  
  .pagination-simple-1e84 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.pagination-3d5c {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.overlay_copper_74b4 {
  flex-shrink: 0;
}

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

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

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

.short_4397,
.shadow_first_4192,
.shadow-complex-ad85 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.short_4397 thead,
.shadow_first_4192 thead {
  background: var(--color-primary);
  color: white;
}

.short_4397 th,
.short_4397 td,
.shadow_first_4192 th,
.shadow_first_4192 td,
.shadow-complex-ad85 th,
.shadow-complex-ad85 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .short_4397 th,
  .short_4397 td,
  .shadow_first_4192 th,
  .shadow_first_4192 td,
  .shadow-complex-ad85 th,
  .shadow-complex-ad85 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .short_4397,
  .shadow_first_4192,
  .shadow-complex-ad85 {
    min-width: 600px;
  }
}

.short_4397 th,
.shadow_first_4192 th,
.shadow-complex-ad85 th {
  font-weight: 600;
}

.short_4397 tbody tr:hover,
.shadow_first_4192 tbody tr:hover,
.shadow-complex-ad85 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.banner-8038 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

.black-477d {
  font-weight: 600;
  color: white;
}

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

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

.sort_inner_b39c {
  color: #4caf50;
}

.slider-8612 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.modal-dark-16ac h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.text-fixed-c63c .bright-d438 {
  width: 100%;
  background: white;
}

.lite_a9eb .bright-d438 {
  color: #667eea;
}

.media_clean_d0fa .bright-d438 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .badge_green_59db {
    padding: var(--space-md);
  }
  
  .search_short_5cbb {
    padding: var(--space-md);
  }
  
  .background_1a50 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.tertiary-red-a7ec li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.header_in_cebf,
.huge-0bab,
.frame-liquid-34d5,
.widget-liquid-3907 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.header-orange-5522:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

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

.slider_first_b99b .feature_8b10 {
  background: #e8f5e9;
  color: var(--color-success);
}

.easy-2822 .feature_8b10 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.caption_tiny_0fa1 {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: var(--space-xl);
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.tabs-under-aea6 {
  text-align: center;
}

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

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

.footer_0aa3 .black-477d {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.input-wood-72d9 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

.popup-4a00 {
  border: 2px solid #4caf50;
}

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

.thumbnail-688e {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.border-dark-4f43 {
  text-align: right;
}

.border-dark-4f43 .active_clean_954d {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.tertiary-c1e1 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.paragraph-up-764e {
  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);
}

.paragraph-up-764e:hover {
  background: var(--color-bg-alt);
}

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

.paragraph-up-764e[aria-expanded="true"] .footer_action_34e9 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.text-5ef0 {
  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);
}

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

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

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

.dark_6348,
.short-7a59 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.dark_6348 h4,
.short-7a59 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.dark_6348 ul,
.short-7a59 ul {
  list-style: none;
  padding: 0;
}

.dark_6348 li,
.short-7a59 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

.notification-action-5a10 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.notification-action-5a10 ul {
  list-style: none;
  padding: 0;
}

.notification-action-5a10 li {
  padding: var(--space-xs) 0;
  color: white;
}

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

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

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

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

.aside_d1f1 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.border-medium-fc53 {
  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);
}

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

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

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

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

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

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

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

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

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

.content-lower-84dc {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.content-lower-84dc .prev-722a {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.alert_f5ea a:hover {
  color: white;
}

.status-medium-2f68 {
  list-style: none;
  padding: 0;
}

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

.status-medium-2f68 a {
  color: #b0b0b0;
  text-decoration: none;
}

.status-medium-2f68 a:hover {
  color: white;
}

.sidebar-glass-beeb {
  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);
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .sidebar-glass-beeb {
    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;
  }
  
  .footer-green-2934 {
    font-size: 2rem;
  }
  
  .icon_lower_4f37 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .icon_4739,
  .carousel-active-a3e7 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .overlay_2531,
  .texture-basic-a667,
  .pagination-4459,
  .new_bed0,
  .upper_f1bd,
  .light_6ce2,
  .prev-5bc7,
  .aside-922d {
    grid-template-columns: 1fr;
  }
  
  .accordion-5825 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .column-prev-cfe8 {
    padding: var(--space-lg) 0;
  }
  
  .blue-a66a li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .blue-a66a li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .bright-d438 {
    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;
  }
  
  .accordion-5825 {
    grid-template-columns: 1fr;
  }
  
  .in_edc7,
  .slow-df6e,
  .outer_d802 {
    flex-direction: column;
    width: 100%;
  }
  
  .status-3a8c,
  .frame_eead,
  .in_edc7 .bright-d438,
  .slow-df6e .bright-d438 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .footer-green-2934 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .icon_lower_4f37 {
    font-size: 1.375rem;
  }
  
  .hidden_yellow_b783 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .photo-06e0,
  .dropdown_stale_dd30,
  .focus-81bc,
  .old_4570,
  .overlay_d35d {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .backdrop_6497 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .stale-9e3f {
    gap: var(--space-xs);
  }
  
  .heading_1fae {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .label_dim_06c9 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .footer_0aa3 {
    width: 150px;
    height: 150px;
  }
  
  .upper-2a24 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .heading-cold-08ad,
  .tabs-26e9,
  .in_edc7,
  .middle-d3a0,
  .footer_selected_7468,
  .secondary-7aa5,
  .south-17d0 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .column-prev-cfe8 {
    page-break-inside: avoid;
  }
}

/* css-noise: eb39 */
.paragraph-tiny-75fd {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}

/* css-noise: 9c73 */
.phantom-card-g9 {
  padding: 0.1rem;
  font-size: 11px;
  line-height: 1.0;
}
