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

.warm-55a6:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.nav-tiny-ee1a):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. */
.nav-tiny-ee1a,
header,
.background-4c19,
.frame-f07b,
.grid_11f1,
.chip_e3fe,
.iron-67a7,
.under_9646,
.mask_small_5fbc {
  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
   ============================================ */
.nav-tiny-ee1a {
  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);
}

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

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

/* Scrolled state */
.nav-tiny-ee1a.motion-9872 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.surface-in-4049 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.component-pink-6335 {
  flex: 1;
}

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

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

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

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

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

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

.tooltip-4a86 svg {
  transition: transform 0.2s ease;
}

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

.disabled-6dfa {
  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;
}

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

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

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

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

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

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

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

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

.tiny-9b9f svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.widget_e4ea[aria-expanded="true"] .chip-76d5:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .component-pink-6335 {
    display: none;
  }
  
  .widget_e4ea {
    display: flex;
  }
  
  .column-c7c9 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .tiny-9b9f,
  .progress_inner_e032 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .title_first_f93c {
    position: relative;
  }
  
  .disabled-6dfa {
    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;
  }
  
  .tooltip-4a86[aria-expanded="true"] + .disabled-6dfa {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .box_right_7a5c {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .gallery-6bd2 {
    gap: 8px;
  }
  
  .tiny-9b9f {
    display: none;
  }
  
  .progress_inner_e032 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .surface-in-4049 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.fixed-d779 svg {
  flex-shrink: 0;
}

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

.fixed-d779 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .smooth-9ab8 {
    grid-template-columns: 1fr;
  }
  
  .fixed-f18a {
    font-size: 1.75rem;
  }
  
  .accent_glass_f2da {
    order: -1;
    max-width: 100%;
  }
  
  .image_next_46ef {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .fixed-f18a {
    font-size: 1.5rem;
  }
  
  .pattern_pressed_b244 {
    font-size: 1rem;
  }
  
  .fresh_12d6 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .image_next_46ef {
    max-width: 250px;
  }
}

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

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

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

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

.icon-clean-9487:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.iron-67a7 {
  padding: var(--space-xxl) 0;
}

.card-small-f6d5 {
  background: var(--color-bg-section);
}

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

.out-8d9e {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shade_tiny_3ad2 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) {
  .tabs-over-07fc {
    grid-template-columns: 1fr;
  }
  
  .hard_0f76 {
    font-size: 1.75rem;
  }
  
  .plasma_0393 {
    max-width: 100%;
  }
}

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

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

.notice-full-f91d {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.shadow-fast-0be9 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.carousel-2a1b {
  flex-shrink: 0;
}

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

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

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

.form-c47b,
.image_black_72b9,
.primary-old-a165 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.form-c47b thead,
.image_black_72b9 thead {
  background: var(--color-primary);
  color: white;
}

.form-c47b th,
.form-c47b td,
.image_black_72b9 th,
.image_black_72b9 td,
.primary-old-a165 th,
.primary-old-a165 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .form-c47b th,
  .form-c47b td,
  .image_black_72b9 th,
  .image_black_72b9 td,
  .primary-old-a165 th,
  .primary-old-a165 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .form-c47b,
  .image_black_72b9,
  .primary-old-a165 {
    min-width: 600px;
  }
}

.form-c47b th,
.image_black_72b9 th,
.primary-old-a165 th {
  font-weight: 600;
}

.form-c47b tbody tr:hover,
.image_black_72b9 tbody tr:hover,
.primary-old-a165 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.panel-bfaf h4 {
  color: white;
}

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

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

.picture-f7d2:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

.middle-85b5 {
  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);
}

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

.tiny-92d2 {
  font-weight: 600;
  color: white;
}

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

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

.filter-4282 {
  color: #4caf50;
}

.tabs-old-8759 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.list-cool-c8cc {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

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

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

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

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

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

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

.under-998e {
  margin-top: var(--space-xxl);
}

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

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

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

.image-blue-8c86 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.image-blue-8c86 ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.image-blue-8c86 li {
  padding: var(--space-xs) 0;
  color: white;
}

.image-blue-8c86 .shadow_mini_03c4 {
  width: 100%;
  background: white;
}

.left_9f97 .shadow_mini_03c4 {
  color: #667eea;
}

.table-c316 .shadow_mini_03c4 {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.chip-new-6b11 {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.action_ce8b,
.table_972d,
.progress-dynamic-739b,
.tabs-56ee {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.shade-medium-cccf {
  border-color: var(--color-warning);
}

.menu-narrow-1a9d {
  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);
}

.brown_ff2a .menu-narrow-1a9d {
  background: #e8f5e9;
  color: var(--color-success);
}

.shade-medium-cccf .menu-narrow-1a9d {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.feature_lite_3f5a {
  text-align: center;
}

.focused-2c84 {
  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);
}

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

.focused-2c84 .tiny-92d2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.blue-954b {
  margin-bottom: var(--space-xl);
}

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

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

.border-45cb {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.up-451f {
  text-align: right;
}

.up-451f .media_in_08d9 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.pagination_down_93b1 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.old-90f5 {
  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);
}

.old-90f5:hover {
  background: var(--color-bg-alt);
}

.notification-99d5 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.old-90f5[aria-expanded="true"] .notification-99d5 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.caption_tall_7798,
.right-ac3e {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.caption_tall_7798 h4,
.right-ac3e h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.caption_tall_7798 ul,
.right-ac3e ul {
  list-style: none;
  padding: 0;
}

.caption_tall_7798 li,
.right-ac3e li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.gold-827d {
  font-style: italic;
}

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

.backdrop-tall-c509 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.label-solid-1576 .notice_0dd9 {
  color: #4caf50;
  font-size: 0.875rem;
}

.last-7fe5 {
  list-style: none;
  padding: 0;
}

.last-7fe5 li {
  margin-bottom: var(--space-xs);
}

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

.last-7fe5 a:hover {
  color: white;
}

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

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

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

.sidebar_cold_2f9d a:hover {
  color: white;
}

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

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

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

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

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

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

.silver-d1ba:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .solid-d651 {
    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;
  }
  
  .fixed-f18a {
    font-size: 2rem;
  }
  
  .hard_0f76 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .smooth-9ab8,
  .tabs-over-07fc {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .aside-mini-5811,
  .sidebar_83ab,
  .dropdown_51c2,
  .cool-95b4,
  .main_out_1b24,
  .active_east_5096,
  .dark-715f,
  .menu-4925 {
    grid-template-columns: 1fr;
  }
  
  .input_2058 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .iron-67a7 {
    padding: var(--space-lg) 0;
  }
  
  .badge_middle_4b56 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .badge_middle_4b56 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .shadow_mini_03c4 {
    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;
  }
  
  .input_2058 {
    grid-template-columns: 1fr;
  }
  
  .dark_805f,
  .component-large-d753,
  .advanced_3515 {
    flex-direction: column;
    width: 100%;
  }
  
  .container_cd43,
  .filter_e2fc,
  .dark_805f .shadow_mini_03c4,
  .component-large-d753 .shadow_mini_03c4 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .fixed-f18a {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .hard_0f76 {
    font-size: 1.375rem;
  }
  
  .wide_c60f {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .texture_east_975e,
  .stone_5f48,
  .overlay_stone_9840,
  .filter_f723,
  .full-014f {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .cool-425a {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .pink_0581 {
    gap: var(--space-xs);
  }
  
  .fixed-d779 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .middle-85b5 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .focused-2c84 {
    width: 150px;
    height: 150px;
  }
  
  .info_0247 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .nav-tiny-ee1a,
  .background-4c19,
  .dark_805f,
  .backdrop-tall-c509,
  .under_9646,
  .mask_small_5fbc,
  .widget_e4ea {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .iron-67a7 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: d8ec */
.promo-block-e7 {
  padding: 0.1rem;
  font-size: 13px;
  line-height: 1.2;
}
