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

.grid_purple_da1a:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.notification_8b1e):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. */
.notification_8b1e,
header,
.picture_790a,
.sidebar_north_699b,
.frame_ca5c,
.sidebar-4a4d,
.text_b262,
.info-left-ae12,
.over-a125 {
  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
   ============================================ */
.notification_8b1e {
  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);
}

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

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

/* Scrolled state */
.notification_8b1e.nav-dirty-89db {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.search-8ca6 img {
  height: 36px;
  width: auto;
  display: block;
}

.shadow-mini-1bf4 {
  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;
}

.picture-d8ca {
  flex: 1;
}

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

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

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

.mini-ff43.dim_3da5 {
  background: var(--color-primary);
  color: white;
}

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

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

.red-4b81 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.frame-5b34 svg {
  flex-shrink: 0;
}

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

.pattern-cold-bbc3: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);
}

.pattern-cold-bbc3 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.accent_iron_0dbd[aria-expanded="true"] .under-c8dc:nth-child(2) {
  opacity: 0;
}

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

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

  .picture-d8ca::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .picture-d8ca.sort-9f12 {
    display: block;
    right: 0;
  }
  
  .picture_7fbe {
    flex-direction: column;
    gap: 0;
  }
  
  .mini-ff43 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .picture-d8ca::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;
  }
  
  .picture-d8ca.sort-9f12::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .picture-d8ca {
    display: none;
  }
  
  .accent_iron_0dbd {
    display: flex;
  }
  
  .shadow-mini-1bf4 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .frame-5b34,
  .pattern-cold-bbc3 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .detail_2520 {
    position: relative;
  }
  
  .list_e9e8 {
    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;
  }
  
  .red-4b81[aria-expanded="true"] + .list_e9e8 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .heading-tiny-2cbf {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .footer_b05f {
    gap: 8px;
  }
  
  .frame-5b34 {
    display: none;
  }
  
  .pattern-cold-bbc3 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .search-8ca6 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.notification_f7ce svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.stale-e9dd a:hover {
  text-decoration: underline;
}

.small-9c9c {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

.texture-orange-ef5e {
  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;
}

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

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

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

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

.down-5d7a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.motion-b747 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

.active-fast-48e8 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

@media (max-width: 968px) {
  .background_b193 {
    grid-template-columns: 1fr;
  }
  
  .solid-7830 {
    font-size: 1.75rem;
  }
  
  .down-5d7a {
    order: -1;
    max-width: 100%;
  }
  
  .motion-b747 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .solid-7830 {
    font-size: 1.5rem;
  }
  
  .filter_1286 {
    font-size: 1rem;
  }
  
  .stale-e9dd {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .motion-b747 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.disabled-dim-42be {
  list-style: none;
  counter-reset: toc-counter;
}

.disabled-dim-42be li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.disabled-dim-42be 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);
}

.disabled-dim-42be 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;
}

.disabled-dim-42be li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

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

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

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

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

.selected-70ca {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.large-c7f7 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) {
  .main-outer-cf84 {
    grid-template-columns: 1fr;
  }
  
  .selected-70ca {
    font-size: 1.75rem;
  }
  
  .pattern_9465 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .selected-70ca {
    font-size: 1.5rem;
  }
  
  .pattern_9465 h3 {
    font-size: 1.375rem;
  }
  
  .pattern_9465 h4 {
    font-size: 1.125rem;
  }
}

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

.paragraph-7d3e {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.notification-right-22cd {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.row-8f17 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.detail-west-c0ad {
  flex-shrink: 0;
}

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

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

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

.hidden-99c5,
.disabled-in-1be8,
.chip-be3f {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.hidden-99c5 thead,
.disabled-in-1be8 thead {
  background: var(--color-primary);
  color: white;
}

.hidden-99c5 th,
.hidden-99c5 td,
.disabled-in-1be8 th,
.disabled-in-1be8 td,
.chip-be3f th,
.chip-be3f td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hidden-99c5 th,
  .hidden-99c5 td,
  .disabled-in-1be8 th,
  .disabled-in-1be8 td,
  .chip-be3f th,
  .chip-be3f td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .hidden-99c5,
  .disabled-in-1be8,
  .chip-be3f {
    min-width: 600px;
  }
}

.hidden-99c5 th,
.disabled-in-1be8 th,
.chip-be3f th {
  font-weight: 600;
}

.hidden-99c5 tbody tr:hover,
.disabled-in-1be8 tbody tr:hover,
.chip-be3f tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.column-c102 h4 {
  color: white;
}

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

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

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

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

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

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

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

.row-f1dd:hover {
  text-decoration: underline;
}

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

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

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

.tertiary-b6de {
  font-weight: 600;
  color: white;
}

.pro-f81d {
  list-style: none;
  padding: 0;
}

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

.overlay-large-634d {
  color: #4caf50;
}

.paragraph-d4eb {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.preview-warm-2ab1 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.column_f09c .footer-advanced-bef0 {
  width: 100%;
  background: white;
}

.fresh-6269 .footer-advanced-bef0 {
  color: #667eea;
}

.module_3996 .footer-advanced-bef0 {
  color: #f5576c;
}

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

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

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

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

.list-dirty-3579 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .list-dirty-3579 {
    padding: var(--space-md);
  }
  
  .icon_red_ab4e {
    padding: var(--space-md);
  }
  
  .dark-f157 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.shade-silver-4539 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.alert_6525,
.purple_415f,
.accordion_static_bf7c,
.shade_68ad {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.box-light-4e4a {
  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) {
  .box-light-4e4a {
    font-size: 0.625rem;
  }
}

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

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

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

.slow-532b h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.highlight-static-a6fb {
  border-color: var(--color-success);
}

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

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

.highlight-static-a6fb .component-b4fe {
  background: #e8f5e9;
  color: var(--color-success);
}

.logo_large_e08e .component-b4fe {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.avatar-80bb {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.avatar_3ca1 {
  text-align: center;
}

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

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

.light_8c40 .tertiary-b6de {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.secondary-easy-1225 {
  border: 2px solid #4caf50;
}

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

.complex-71e8 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.menu-c56d {
  text-align: right;
}

.menu-c56d .caption_9590 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.aside-ed35 {
  background: #e8f5e9;
  color: #2e7d32;
}

.inner-0cd9 {
  background: #e3f2fd;
  color: #1565c0;
}

.logo-4e75 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.badge-fluid-7dbf {
  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);
}

.badge-fluid-7dbf:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

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

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

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

.paper-818a {
  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);
}

.paper-818a:hover {
  background: var(--color-bg-alt);
}

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

.paper-818a[aria-expanded="true"] .disabled-9738 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bronze_4438 ul,
.stale_7bb5 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

.slider-simple-6226 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

.wrapper-rough-f7a4 {
  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);
}

.message_center_c5af {
  font-style: italic;
}

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .pattern-first-74fa {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

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

.thumbnail_5556 .tall_a809 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.layout_blue_b73b a:hover {
  color: white;
}

.frame-yellow-0d22 {
  list-style: none;
  padding: 0;
}

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

.frame-yellow-0d22 a {
  color: #b0b0b0;
  text-decoration: none;
}

.frame-yellow-0d22 a:hover {
  color: white;
}

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

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

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

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

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

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

.outline-ff91:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .heading-7760 {
    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;
  }
  
  .solid-7830 {
    font-size: 2rem;
  }
  
  .selected-70ca {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .background_b193,
  .main-outer-cf84 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .avatar-out-b75f,
  .banner_608e,
  .menu_large_209c,
  .orange_b40d,
  .outline-1f60,
  .modal-4d58,
  .pattern-first-74fa,
  .pro-e90d {
    grid-template-columns: 1fr;
  }
  
  .heading_bottom_4b49 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .text_b262 {
    padding: var(--space-lg) 0;
  }
  
  .disabled-dim-42be li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .disabled-dim-42be li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .footer-advanced-bef0 {
    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;
  }
  
  .heading_bottom_4b49 {
    grid-template-columns: 1fr;
  }
  
  .short_730e,
  .title_iron_a1f4,
  .highlight_2e54 {
    flex-direction: column;
    width: 100%;
  }
  
  .summary_out_ce79,
  .focused_51d1,
  .short_730e .footer-advanced-bef0,
  .title_iron_a1f4 .footer-advanced-bef0 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .solid-7830 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .selected-70ca {
    font-size: 1.375rem;
  }
  
  .image-in-b513 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .tooltip_dynamic_8384,
  .banner-0a24,
  .static_6870,
  .huge_af67,
  .main_advanced_e1af {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .box-light-4e4a {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .lite-28f9 {
    gap: var(--space-xs);
  }
  
  .notification_f7ce {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .tiny_15c6 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .light_8c40 {
    width: 150px;
    height: 150px;
  }
  
  .border-cold-f673 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .notification_8b1e,
  .picture_790a,
  .short_730e,
  .grid_iron_ad96,
  .info-left-ae12,
  .over-a125,
  .accent_iron_0dbd {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .text_b262 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 1314 */
.phantom-card-n7 {
  padding: 0.2rem;
  font-size: 11px;
  line-height: 1.1;
}
