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

.texture_53ff:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.badge_wide_8c8d):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. */
.badge_wide_8c8d,
header,
.dirty_0731,
.middle-3368,
.outline_easy_e6fd,
.status-north-c596,
.notification-1075,
.frame_iron_07e8,
.notice-solid-9815 {
  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
   ============================================ */
.badge_wide_8c8d {
  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);
}

.main-70a2 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

.nav-iron-4d86 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.middle-48b0 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.item_62a9 {
  flex: 1;
}

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

.search-36c2 {
  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);
}

.search-36c2:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.search-36c2.primary-plasma-151f {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.focus-7dc2 {
  position: relative;
}

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

.secondary-29b6 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.banner-98bf svg {
  flex-shrink: 0;
}

/* Header Download Button */
.accordion-north-619a {
  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;
}

.accordion-north-619a: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);
}

.accordion-north-619a svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.label-45d0[aria-expanded="true"] .accordion-2e20:nth-child(2) {
  opacity: 0;
}

.label-45d0[aria-expanded="true"] .accordion-2e20:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .item_62a9::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .item_62a9.input_motion_f856 {
    display: block;
    right: 0;
  }
  
  .iron_b048 {
    flex-direction: column;
    gap: 0;
  }
  
  .search-36c2 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .item_62a9::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;
  }
  
  .item_62a9.input_motion_f856::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .item_62a9 {
    display: none;
  }
  
  .label-45d0 {
    display: flex;
  }
  
  .surface_e23c {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .banner-98bf,
  .accordion-north-619a {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .focus-7dc2 {
    position: relative;
  }
  
  .in_10d1 {
    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;
  }
  
  .secondary-29b6[aria-expanded="true"] + .in_10d1 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .gradient-8a15 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .left-82b6 {
    gap: 8px;
  }
  
  .banner-98bf {
    display: none;
  }
  
  .accordion-north-619a {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .middle-48b0 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .accordion-north-619a {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .accordion-north-619a svg {
    width: 14px;
    height: 14px;
  }
  
  .avatar-new-4286 {
    gap: var(--space-sm);
  }
}

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

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

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

.shade_full_8517 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.container-52f5 a {
  color: var(--color-primary);
  text-decoration: none;
}

.container-52f5 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

.west-52cf {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .media-a6ac {
    grid-template-columns: 1fr;
  }
  
  .overlay_new_43e4 {
    font-size: 1.75rem;
  }
  
  .action_8456 {
    order: -1;
    max-width: 100%;
  }
  
  .layout_ad58 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .overlay_new_43e4 {
    font-size: 1.5rem;
  }
  
  .action-f217 {
    font-size: 1rem;
  }
  
  .container-52f5 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .layout_ad58 {
    max-width: 250px;
  }
}

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

.popup-5f3e {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

.gradient-black-09f7 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.component-thick-4374 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.new_1e7a 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) {
  .picture-b268 {
    grid-template-columns: 1fr;
  }
  
  .component-thick-4374 {
    font-size: 1.75rem;
  }
  
  .complex_542a {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .component-thick-4374 {
    font-size: 1.5rem;
  }
  
  .complex_542a h3 {
    font-size: 1.375rem;
  }
  
  .complex_542a h4 {
    font-size: 1.125rem;
  }
}

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

.item-pink-7ce9 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.button-243d {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.header-tall-87f5 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.sidebar-d691 {
  flex-shrink: 0;
}

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

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

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

.mask_fb81,
.list-4f82,
.detail_north_30e7 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.mask_fb81 thead,
.list-4f82 thead {
  background: var(--color-primary);
  color: white;
}

.mask_fb81 th,
.mask_fb81 td,
.list-4f82 th,
.list-4f82 td,
.detail_north_30e7 th,
.detail_north_30e7 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .mask_fb81 th,
  .mask_fb81 td,
  .list-4f82 th,
  .list-4f82 td,
  .detail_north_30e7 th,
  .detail_north_30e7 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .mask_fb81,
  .list-4f82,
  .detail_north_30e7 {
    min-width: 600px;
  }
}

.mask_fb81 th,
.list-4f82 th,
.detail_north_30e7 th {
  font-weight: 600;
}

.mask_fb81 tbody tr:hover,
.list-4f82 tbody tr:hover,
.detail_north_30e7 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.copper-7f69 h4 {
  color: white;
}

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

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

.plasma-dec5:last-child {
  border-bottom: none;
}

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

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

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

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

.text-hard-e738:hover {
  text-decoration: underline;
}

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

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

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

.info-solid-5aef {
  font-weight: 600;
  color: white;
}

.hero-down-576d {
  list-style: none;
  padding: 0;
}

.hero-down-576d li {
  padding: var(--space-xs) 0;
}

.brown_1eed {
  color: #4caf50;
}

.pressed-cc93 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.info-solid-5aef {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.background-c65f {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.item_fresh_3eef .photo-92e7 {
  width: 100%;
  background: white;
}

.surface_cool_6b08 .photo-92e7 {
  color: #667eea;
}

.section_222d .photo-92e7 {
  color: #f5576c;
}

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

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

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

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

.component-mini-2e0f h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .component-mini-2e0f {
    padding: var(--space-md);
  }
  
  .paper-a5fd {
    padding: var(--space-md);
  }
  
  .module-6d4f {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.gallery-brown-a874,
.frame_081e,
.container_cool_b29b,
.surface-dc80 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.dropdown-66d7 {
  border-color: var(--color-success);
}

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

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

.dropdown-66d7 .caption_fixed_4f3a {
  background: #e8f5e9;
  color: var(--color-success);
}

.dim-a2a1 .caption_fixed_4f3a {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gradient_up_871c {
  text-align: center;
}

.hover-in-3d3f {
  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);
}

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

.hover-in-3d3f .info-solid-5aef {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.gallery-1f7f {
  margin-bottom: var(--space-xl);
}

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

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

.hot-6ad0 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

.menu-pro-9a4c {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

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

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

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

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

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

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

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

.image-complex-1edb {
  text-align: right;
}

.image-complex-1edb .label_9133 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

.list-hard-5c8d {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

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

.item-fixed-f816 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.east-b6da {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.sort-dark-e1e7 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

.stone_cc40[aria-expanded="true"] .inner-6289 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.highlight_current_083d ul,
.pattern_lite_8c5f ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.middle-79a8 {
  font-style: italic;
}

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

.picture-743d {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.form_pro_07d7 .slider_yellow_ddb0 {
  color: #4caf50;
  font-size: 0.875rem;
}

.hover-last-fca1 {
  list-style: none;
  padding: 0;
}

.hover-last-fca1 li {
  margin-bottom: var(--space-xs);
}

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

.hover-last-fca1 a:hover {
  color: white;
}

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

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

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

.pattern_stone_842b a:hover {
  color: white;
}

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

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

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

.hidden-232c {
  font-size: 0.75rem;
  color: #666666;
}

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

.background-old-1cd1 {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.background-old-1cd1:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .block_a579 {
    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;
  }
  
  .overlay_new_43e4 {
    font-size: 2rem;
  }
  
  .component-thick-4374 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .media-a6ac,
  .picture-b268 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .layout-3eca,
  .container-fdfa,
  .label-liquid-bbac,
  .lower-9dc0,
  .box_c864,
  .action-3e24,
  .upper_b20d,
  .badge-3ed0 {
    grid-template-columns: 1fr;
  }
  
  .basic-d379 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .notification-1075 {
    padding: var(--space-lg) 0;
  }
  
  .header_gold_9c5b li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .header_gold_9c5b li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .photo-92e7 {
    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;
  }
  
  .basic-d379 {
    grid-template-columns: 1fr;
  }
  
  .west-52cf,
  .shadow_dec7,
  .hidden_3b89 {
    flex-direction: column;
    width: 100%;
  }
  
  .gradient-black-09f7,
  .stone_6fad,
  .west-52cf .photo-92e7,
  .shadow_dec7 .photo-92e7 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .overlay_new_43e4 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .component-thick-4374 {
    font-size: 1.375rem;
  }
  
  .summary-focused-90c2 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .table_326f,
  .basic-c49c,
  .widget_f56b,
  .primary-gold-c487,
  .silver-a102 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .nav-b354 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .notification-8ec8 {
    gap: var(--space-xs);
  }
  
  .shade_full_8517 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .detail_d700 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .hover-in-3d3f {
    width: 150px;
    height: 150px;
  }
  
  .fast_e59d {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .badge_wide_8c8d,
  .dirty_0731,
  .west-52cf,
  .picture-743d,
  .frame_iron_07e8,
  .notice-solid-9815,
  .label-45d0 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .notification-1075 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: b662 */
.promo-block-z2 {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 1.0;
}
