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

.green-4ef4:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.message_9bc8):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. */
.message_9bc8,
header,
.header_clean_2acf,
.primary_af7f,
.aside-selected-804d,
.south-e8fb,
.tiny_886d,
.inner_adc6,
.hidden-active-703c {
  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
   ============================================ */
.message_9bc8 {
  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);
}

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

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

/* Scrolled state */
.message_9bc8.active-solid-66ac {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.sidebar_98ec img {
  height: 36px;
  width: auto;
  display: block;
}

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

.black-af4f {
  flex: 1;
}

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

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

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

.box_f09d.first-3b81 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.east-72fe {
  position: relative;
}

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

.hero-393d svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.header_prev_62b3 svg {
  flex-shrink: 0;
}

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

.focus-small-fed3: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);
}

.focus-small-fed3 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.hot_332f[aria-expanded="true"] .gas-3492:nth-child(2) {
  opacity: 0;
}

.hot_332f[aria-expanded="true"] .gas-3492:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .black-af4f {
    display: none;
  }
  
  .hot_332f {
    display: flex;
  }
  
  .icon_d390 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .header_prev_62b3,
  .focus-small-fed3 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .east-72fe {
    position: relative;
  }
  
  .stone_f96b {
    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;
  }
  
  .hero-393d[aria-expanded="true"] + .stone_f96b {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .outline_4c5e {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .detail-ed75 {
    gap: 8px;
  }
  
  .header_prev_62b3 {
    display: none;
  }
  
  .focus-small-fed3 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .sidebar_98ec img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.pink-c8c3 svg {
  flex-shrink: 0;
}

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

.pink-c8c3 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.label-186d a {
  color: var(--color-primary);
  text-decoration: none;
}

.label-186d a:hover {
  text-decoration: underline;
}

.widget-under-e9d1 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

.bottom-5fb4 {
  display: flex;
  gap: var(--space-sm);
}

.summary-863b {
  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;
}

.hidden-next-7a14 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hidden-next-7a14 strong {
  font-weight: 600;
  color: var(--color-text);
}

.hidden-next-7a14 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

.container-95b5 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.north-a023 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .container_full_9c1e {
    grid-template-columns: 1fr;
  }
  
  .dark-f94f {
    font-size: 1.75rem;
  }
  
  .container-95b5 {
    order: -1;
    max-width: 100%;
  }
  
  .north-a023 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .dark-f94f {
    font-size: 1.5rem;
  }
  
  .sidebar_59d5 {
    font-size: 1rem;
  }
  
  .label-186d {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .north-a023 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.secondary-black-1fd1 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

.section-2bb3 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.section-2bb3 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);
}

.section-2bb3 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;
}

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

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

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

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

.background_red_6fb6 {
  display: inline-block;
  padding: 6px 16px;
  background: var(--color-primary-light);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: var(--space-md);
}

.icon-mini-8f59 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.article_2516 li:before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

@media (max-width: 968px) {
  .summary-north-931e {
    grid-template-columns: 1fr;
  }
  
  .icon-mini-8f59 {
    font-size: 1.75rem;
  }
  
  .cool_9259 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .icon-mini-8f59 {
    font-size: 1.5rem;
  }
  
  .cool_9259 h3 {
    font-size: 1.375rem;
  }
  
  .cool_9259 h4 {
    font-size: 1.125rem;
  }
}

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

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

.carousel-7d30 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.center_8b75 {
  flex-shrink: 0;
}

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

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

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

.south-30bd,
.thick_45d8,
.tertiary_slow_700e {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.south-30bd thead,
.thick_45d8 thead {
  background: var(--color-primary);
  color: white;
}

.south-30bd th,
.south-30bd td,
.thick_45d8 th,
.thick_45d8 td,
.tertiary_slow_700e th,
.tertiary_slow_700e td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .south-30bd th,
  .south-30bd td,
  .thick_45d8 th,
  .thick_45d8 td,
  .tertiary_slow_700e th,
  .tertiary_slow_700e td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .south-30bd,
  .thick_45d8,
  .tertiary_slow_700e {
    min-width: 600px;
  }
}

.south-30bd th,
.thick_45d8 th,
.tertiary_slow_700e th {
  font-weight: 600;
}

.south-30bd tbody tr:hover,
.thick_45d8 tbody tr:hover,
.tertiary_slow_700e tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.wrapper-large-43f4 h4 {
  color: white;
}

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

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

.title-under-2c2e:last-child {
  border-bottom: none;
}

.title-under-2c2e dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.title-under-2c2e dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

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

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

.banner-soft-7c45:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.out-3958 {
  color: #4caf50;
}

.row-ad96 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .feature-last-06cf {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

.heading_brown_06ba .carousel_north_fde4 {
  width: 100%;
  background: white;
}

.lower_8035 .carousel_north_fde4 {
  color: #667eea;
}

.feature_9890 .carousel_north_fde4 {
  color: #f5576c;
}

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

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

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

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

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

.notification-brown-e1ed {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .short_59bf {
    padding: var(--space-md);
  }
  
  .notification-brown-e1ed {
    padding: var(--space-md);
  }
  
  .card_simple_289e {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.summary-7c64,
.notice_6065,
.mini-f04f,
.steel_f886 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.layout-cool-66ad {
  border-color: var(--color-warning);
}

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

.avatar_a725 .row-1267 {
  background: #e8f5e9;
  color: var(--color-success);
}

.layout-cool-66ad .row-1267 {
  background: #fff3e0;
  color: var(--color-warning);
}

.accent-medium-17f6 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.accent-medium-17f6 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.menu-mini-2a21 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

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

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

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

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

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

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

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

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

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

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

.section-simple-a196 {
  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);
}

.box-1e7a {
  text-align: center;
}

.focus-white-c4bd {
  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);
}

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

.focus-white-c4bd .glass_f2b7 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.content-c4b6 {
  margin-bottom: var(--space-xl);
}

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

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

.card-cold-d1d1 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.image-complex-23e2 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.lower-40b7 {
  text-align: right;
}

.lower-40b7 .lower-6459 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

.surface-advanced-8f88 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

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

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

.south-81a8 {
  background: #e3f2fd;
  color: #1565c0;
}

.breadcrumb-easy-4dca {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.menu-prev-31b8 strong {
  color: var(--color-primary);
}

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

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

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

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

.disabled-41e7 {
  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);
}

.disabled-41e7:hover {
  background: var(--color-bg-alt);
}

.shadow-out-56c7 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.disabled-41e7[aria-expanded="true"] .shadow-out-56c7 {
  transform: rotate(180deg);
}

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

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

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

.hard-7d92 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.table_37bb ul,
.smooth_db10 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

.breadcrumb-54a9 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.plasma-1713 {
  font-style: italic;
}

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

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

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

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

.carousel-over-1a51 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.popup-dark-df5d .bottom-5fb4 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.narrow_bfb0 a:hover {
  color: white;
}

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

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

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

.detail_b04c a:hover {
  color: white;
}

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

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

.tall-1a47 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

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

@media (max-width: 768px) {
  .tall_9f3d {
    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;
  }
  
  .dark-f94f {
    font-size: 2rem;
  }
  
  .icon-mini-8f59 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .container_full_9c1e,
  .summary-north-931e {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .wood_90ea,
  .popup-active-f1e7,
  .feature-last-06cf,
  .progress-tall-d9fd,
  .hovered_028f,
  .surface_north_732a,
  .content_58ea,
  .pressed_cd42 {
    grid-template-columns: 1fr;
  }
  
  .main-last-de5c {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .tiny_886d {
    padding: var(--space-lg) 0;
  }
  
  .section-2bb3 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .section-2bb3 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .carousel_north_fde4 {
    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;
  }
  
  .main-last-de5c {
    grid-template-columns: 1fr;
  }
  
  .module_active_8236,
  .carousel-over-1a51,
  .accordion-small-4f8a {
    flex-direction: column;
    width: 100%;
  }
  
  .secondary-black-1fd1,
  .nav_inner_016c,
  .module_active_8236 .carousel_north_fde4,
  .carousel-over-1a51 .carousel_north_fde4 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .dark-f94f {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .icon-mini-8f59 {
    font-size: 1.375rem;
  }
  
  .purple-31eb {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .thumbnail_3cff,
  .gradient_orange_8ae4,
  .carousel_west_a0ae,
  .aside-mini-6391,
  .item_11f6 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .nav_copper_db59 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .block-9ef0 {
    gap: var(--space-xs);
  }
  
  .pink-c8c3 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .form_solid_84aa {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .focus-white-c4bd {
    width: 150px;
    height: 150px;
  }
  
  .aside_easy_6f31 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .message_9bc8,
  .header_clean_2acf,
  .module_active_8236,
  .thumbnail-6081,
  .inner_adc6,
  .hidden-active-703c,
  .hot_332f {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .tiny_886d {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 9b9a */
.shadow-element-e3 {
  padding: 0.1rem;
  font-size: 10px;
  line-height: 1.2;
}
