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

.highlight-7dee:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.button_plasma_9771):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. */
.button_plasma_9771,
header,
.hidden_current_e0c3,
.progress-stone-dda2,
.breadcrumb_light_d7d3,
.input-2edd,
.tiny-4f4e,
.button_d060,
.up_446d {
  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
   ============================================ */
.button_plasma_9771 {
  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);
}

.title-north-d0e5 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.outline-7f3b img {
  height: 36px;
  width: auto;
  display: block;
}

.disabled_purple_ac5a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: #e8f5e9;
  color: var(--color-success);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 12px;
  white-space: nowrap;
}

.summary_small_596b {
  flex: 1;
}

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

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

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

.texture-a256.icon_fresh_783d {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

/* Header Login Button */
.column-tall-1fa8 {
  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;
}

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

.column-tall-1fa8 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

/* Hamburger animation when active */
.content-small-3b17[aria-expanded="true"] .layout-inner-9ed2:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.content-small-3b17[aria-expanded="true"] .layout-inner-9ed2:nth-child(2) {
  opacity: 0;
}

.content-small-3b17[aria-expanded="true"] .layout-inner-9ed2:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Menu */
@media (max-width: 1100px) {
  .summary_small_596b {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    padding: 80px 0 20px;
    transition: right 0.3s ease-out;
    z-index: 999;
    overflow-y: auto; /* 移动端菜单内容过多时可滚动 */
    overflow-x: visible; /* 水平方向不滚动，确保下拉菜单可见 */
    /* 隐藏滚动条外观，但保留可滚动能力，视觉上更自然 */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }

  .summary_small_596b::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .summary_small_596b.banner-paper-ffd6 {
    display: block;
    right: 0;
  }
  
  .layout-6a1c {
    flex-direction: column;
    gap: 0;
  }
  
  .texture-a256 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .summary_small_596b::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-out;
  }
  
  .summary_small_596b.banner-paper-ffd6::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .summary_small_596b {
    display: none;
  }
  
  .content-small-3b17 {
    display: flex;
  }
  
  .disabled_purple_ac5a {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .column-tall-1fa8,
  .smooth_f354 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .modal_1823 {
    position: relative;
  }
  
  .pink-f56e {
    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;
  }
  
  .row_0be0[aria-expanded="true"] + .pink-f56e {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .row-355c {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .copper_24be {
    gap: 8px;
  }
  
  .column-tall-1fa8 {
    display: none;
  }
  
  .smooth_f354 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .outline-7f3b img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.background-d1d3 svg {
  flex-shrink: 0;
}

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

.background-d1d3 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.bottom-ed8a a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.aside-bronze-ff46 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .accent_warm_55f6 {
    grid-template-columns: 1fr;
  }
  
  .video-79f1 {
    font-size: 1.75rem;
  }
  
  .selected-c17e {
    order: -1;
    max-width: 100%;
  }
  
  .hidden_prev_52ee {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .video-79f1 {
    font-size: 1.5rem;
  }
  
  .block_pro_a077 {
    font-size: 1rem;
  }
  
  .bottom-ed8a {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .hidden_prev_52ee {
    max-width: 250px;
  }
}

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

.disabled-rough-162d {
  background: var(--color-primary);
  color: white;
}

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

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

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

.detail-basic-936b {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.detail-basic-936b:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

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

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

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

.aside-last-33f8 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

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

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

.icon-hot-1b4b {
  list-style: none;
  counter-reset: toc-counter;
}

.icon-hot-1b4b li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.icon-hot-1b4b 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);
}

.icon-hot-1b4b 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;
}

.icon-hot-1b4b li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.tiny-4f4e {
  padding: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.widget_selected_c8c2 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) {
  .summary_outer_25e1 {
    grid-template-columns: 1fr;
  }
  
  .sort-e689 {
    font-size: 1.75rem;
  }
  
  .title_c5d2 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .sort-e689 {
    font-size: 1.5rem;
  }
  
  .title_c5d2 h3 {
    font-size: 1.375rem;
  }
  
  .title_c5d2 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.column-focused-4ea8 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.title-hovered-fb8a {
  flex-shrink: 0;
}

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

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

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

.row-red-677d,
.pink_ced8,
.gas-16c9 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.row-red-677d thead,
.pink_ced8 thead {
  background: var(--color-primary);
  color: white;
}

.row-red-677d th,
.row-red-677d td,
.pink_ced8 th,
.pink_ced8 td,
.gas-16c9 th,
.gas-16c9 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .row-red-677d th,
  .row-red-677d td,
  .pink_ced8 th,
  .pink_ced8 td,
  .gas-16c9 th,
  .gas-16c9 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .row-red-677d,
  .pink_ced8,
  .gas-16c9 {
    min-width: 600px;
  }
}

.row-red-677d th,
.pink_ced8 th,
.gas-16c9 th {
  font-weight: 600;
}

.row-red-677d tbody tr:hover,
.pink_ced8 tbody tr:hover,
.gas-16c9 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.content-d64f h4 {
  color: white;
}

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

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

.article-ee90:last-child {
  border-bottom: none;
}

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

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

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

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

.article-pro-d35f:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.bottom_5934 {
  color: #4caf50;
}

.shade_dim_8599 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rough-32bf .section_b99d {
  width: 100%;
  background: white;
}

.block-4248 .section_b99d {
  color: #667eea;
}

.grid-bc81 .section_b99d {
  color: #f5576c;
}

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

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

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

.filter_white_7a8d {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

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

.form-1de9 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .upper_5888 {
    padding: var(--space-md);
  }
  
  .form-1de9 {
    padding: var(--space-md);
  }
  
  .next-4a31 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.under_4366,
.element-8459,
.summary_c0ef,
.text-stone-6bb9 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.button-inner-8040 {
  border-color: var(--color-success);
}

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

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

.button-inner-8040 .fixed_25f6 {
  background: #e8f5e9;
  color: var(--color-success);
}

.motion_8880 .fixed_25f6 {
  background: #fff3e0;
  color: var(--color-warning);
}

.overlay-inner-65d3 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.overlay-inner-65d3 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.background-stone-65e8 {
  text-align: center;
}

.breadcrumb-5b33 {
  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);
}

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

.breadcrumb-5b33 .green_43a6 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

.photo-94c5 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

.short-14b5 {
  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;
}

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

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

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

.pagination-c7dd {
  text-align: right;
}

.pagination-c7dd .dropdown_prev_e643 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.form-fb9b {
  background: #e3f2fd;
  color: #1565c0;
}

.badge-a639 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

.gold-62b8 {
  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);
}

.gold-62b8:hover {
  background: var(--color-bg-alt);
}

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

.gold-62b8[aria-expanded="true"] .row-dc63 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.modal_413a,
.preview-iron-953d {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.modal_413a h4,
.preview-iron-953d h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.modal_413a ul,
.preview-iron-953d ul {
  list-style: none;
  padding: 0;
}

.modal_413a li,
.preview-iron-953d li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

.column-red-4a14 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.column-red-4a14 ul {
  list-style: none;
  padding: 0;
}

.column-red-4a14 li {
  padding: var(--space-xs) 0;
  color: white;
}

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

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

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

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

.accent-91a6 {
  font-style: italic;
}

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

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

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

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

.image-motion-76cb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

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

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

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

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

.liquid-6b11 {
  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);
}

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

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

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

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

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

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

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

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

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

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

.caption-8f34 .aside-bronze-ff46 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.section_clean_d959 a:hover {
  color: white;
}

.surface-north-220a {
  list-style: none;
  padding: 0;
}

.surface-north-220a li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: #b0b0b0;
}

.surface-north-220a a {
  color: #b0b0b0;
  text-decoration: none;
}

.surface-north-220a a:hover {
  color: white;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .hard_5535 {
    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;
  }
  
  .video-79f1 {
    font-size: 2rem;
  }
  
  .sort-e689 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .accent_warm_55f6,
  .summary_outer_25e1 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .column_7ee8,
  .card-cb73,
  .accent_plasma_5676,
  .section_wood_0dfd,
  .right_6c08,
  .hover_36c3,
  .content_first_bffd,
  .caption-9925 {
    grid-template-columns: 1fr;
  }
  
  .filter_fresh_01b8 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .tiny-4f4e {
    padding: var(--space-lg) 0;
  }
  
  .icon-hot-1b4b li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .icon-hot-1b4b li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .section_b99d {
    min-height: 44px;
  }
  
  /* Optimize images for mobile */
  img {
    height: auto;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 1.5rem;
    --space-xl: 1.75rem;
    --space-xxl: 2rem;
  }
  
  .filter_fresh_01b8 {
    grid-template-columns: 1fr;
  }
  
  .summary_dc01,
  .image-motion-76cb,
  .active-74aa {
    flex-direction: column;
    width: 100%;
  }
  
  .shadow_easy_bd86,
  .black_6288,
  .summary_dc01 .section_b99d,
  .image-motion-76cb .section_b99d {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .video-79f1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .sort-e689 {
    font-size: 1.375rem;
  }
  
  .fluid_0770 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .gallery_fb2d,
  .progress_a784,
  .focused-3e26,
  .gallery-7fac,
  .accent-white-8ef9 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .heading_hot_8d2d {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .dark-ad14 {
    gap: var(--space-xs);
  }
  
  .background-d1d3 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .pagination_brown_7580 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .breadcrumb-5b33 {
    width: 150px;
    height: 150px;
  }
  
  .thick-fe2b {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .button_plasma_9771,
  .hidden_current_e0c3,
  .summary_dc01,
  .secondary_36fe,
  .button_d060,
  .up_446d,
  .content-small-3b17 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .tiny-4f4e {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 55b4 */
.promo-block-s5 {
  padding: 0.3rem;
  font-size: 13px;
  line-height: 1.1;
}
