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

.tooltip-f3d1:focus {
  top: 0;
}

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

@media (max-width: 768px) {
  .footer-bottom-2a65 {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .footer-bottom-2a65 {
    padding: 0 12px;
  }
}

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.secondary_clean_191a):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. */
.secondary_clean_191a,
header,
.hot_a331,
.shadow-next-084f,
.dynamic_5ac6,
.texture-71c4,
.wrapper_inner_e75e,
.surface_plasma_f039,
.hard-3ba9 {
  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
   ============================================ */
.secondary_clean_191a {
  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);
}

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

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

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

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

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

.article-9f3c img {
  height: 36px;
  width: auto;
  display: block;
}

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

.focus-bac4 {
  flex: 1;
}

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

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

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

.black_8bc3.cool-b56a {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

.detail-iron-e16e {
  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;
}

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

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

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

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

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

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

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

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

.notice_purple_e881 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .focus-bac4::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .focus-bac4.message-9faa {
    display: block;
    right: 0;
  }
  
  .silver-f6f4 {
    flex-direction: column;
    gap: 0;
  }
  
  .black_8bc3 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .focus-bac4::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;
  }
  
  .focus-bac4.message-9faa::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .focus-bac4 {
    display: none;
  }
  
  .notice_gold_88b7 {
    display: flex;
  }
  
  .backdrop_6a08 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .notice_purple_e881,
  .breadcrumb_4e19 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .module_dynamic_21a1 {
    position: relative;
  }
  
  .detail-iron-e16e {
    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;
  }
  
  .dark_ec0a[aria-expanded="true"] + .detail-iron-e16e {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .hovered-507d {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .sort_d684 {
    gap: 8px;
  }
  
  .notice_purple_e881 {
    display: none;
  }
  
  .breadcrumb_4e19 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .article-9f3c img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.summary_left_f183 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.sort-c970 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.slider-new-5e53 {
  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;
}

.action-450c {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.action-450c strong {
  font-weight: 600;
  color: var(--color-text);
}

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

.shadow-liquid-d203 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .dynamic_26eb {
    grid-template-columns: 1fr;
  }
  
  .layout-6264 {
    font-size: 1.75rem;
  }
  
  .dirty_c7e4 {
    order: -1;
    max-width: 100%;
  }
  
  .module_9841 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .layout-6264 {
    font-size: 1.5rem;
  }
  
  .summary-inner-7766 {
    font-size: 1rem;
  }
  
  .sort-c970 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .module_9841 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.photo-35b0 {
  background: var(--color-bg-section);
}

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

.item-9f09 {
  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);
}

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

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

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

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

.caption-fluid-62d0 {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.caption-fluid-62d0 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.caption-fluid-62d0 pre,
.caption-fluid-62d0 code {
  overflow-x: auto;
  max-width: 100%;
}

.caption-fluid-62d0 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);
}

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

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

.caption-fluid-62d0 p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.caption-fluid-62d0 ul,
.caption-fluid-62d0 ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.caption-fluid-62d0 li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

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

.caption-fluid-62d0 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.caption-fluid-62d0 a:hover {
  color: var(--color-primary-dark);
}

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

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

.narrow-0cf0 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) {
  .static_9ed6 {
    grid-template-columns: 1fr;
  }
  
  .green-a4c0 {
    font-size: 1.75rem;
  }
  
  .caption-fluid-62d0 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .green-a4c0 {
    font-size: 1.5rem;
  }
  
  .caption-fluid-62d0 h3 {
    font-size: 1.375rem;
  }
  
  .caption-fluid-62d0 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

.disabled-tiny-99a4 strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

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

.thumbnail_steel_7bba {
  flex-shrink: 0;
}

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

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

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

.column-motion-d2c9,
.cold_10d7,
.shade_fresh_0fb6 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.column-motion-d2c9 thead,
.cold_10d7 thead {
  background: var(--color-primary);
  color: white;
}

.column-motion-d2c9 th,
.column-motion-d2c9 td,
.cold_10d7 th,
.cold_10d7 td,
.shade_fresh_0fb6 th,
.shade_fresh_0fb6 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .column-motion-d2c9 th,
  .column-motion-d2c9 td,
  .cold_10d7 th,
  .cold_10d7 td,
  .shade_fresh_0fb6 th,
  .shade_fresh_0fb6 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .column-motion-d2c9,
  .cold_10d7,
  .shade_fresh_0fb6 {
    min-width: 600px;
  }
}

.column-motion-d2c9 th,
.cold_10d7 th,
.shade_fresh_0fb6 th {
  font-weight: 600;
}

.column-motion-d2c9 tbody tr:hover,
.cold_10d7 tbody tr:hover,
.shade_fresh_0fb6 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.summary-middle-e35d h4 {
  color: white;
}

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

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

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

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

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

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

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

.motion-a02a:hover {
  text-decoration: underline;
}

.section-medium-382a {
  text-align: center;
  margin-bottom: var(--space-md);
}

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

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

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

.highlight-fresh-621e {
  list-style: none;
  padding: 0;
}

.highlight-fresh-621e li {
  padding: var(--space-xs) 0;
}

.background_6848 {
  color: #4caf50;
}

.thumbnail_be04 {
  color: #ff9800;
}

.box-yellow-24df {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.purple_2231 .dark-c41d {
  width: 100%;
  background: white;
}

.small_3a60 .dark-c41d {
  color: #667eea;
}

.middle-aff7 .dark-c41d {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.backdrop-green-163a {
  max-width: 900px;
  margin: 0 auto;
}

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

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

.filter-prev-4b6c {
  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);
}

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

.status-1f9c {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .accent-7752 {
    padding: var(--space-md);
  }
  
  .status-1f9c {
    padding: var(--space-md);
  }
  
  .warm-0bf8 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.nav-under-0591,
.hover_3cc9,
.steel_84fe,
.green-c784 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.preview-soft-df19 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.gradient-lite-bb9f {
  border-color: var(--color-success);
}

.purple-45d8 {
  border-color: var(--color-warning);
}

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

.gradient-lite-bb9f .advanced_9b07 {
  background: #e8f5e9;
  color: var(--color-success);
}

.purple-45d8 .advanced_9b07 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.component-5d42 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.notice-thick-112b {
  margin-top: var(--space-xxl);
}

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

.label_4b25 {
  text-align: center;
}

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

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

.slow-e9d3 .dirty_256f {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.up-1de5 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

.texture-plasma-43d8 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

.column-dirty-a99b {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.over-0139 {
  text-align: right;
}

.over-0139 .pagination_a2aa {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.thumbnail-up-a80e {
  background: #e8f5e9;
  color: #2e7d32;
}

.container-over-ec53 {
  background: #e3f2fd;
  color: #1565c0;
}

.outer-db8f {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.medium-41a1 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

.image-slow-458a {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.iron_44d5[aria-expanded="true"] .image-slow-458a {
  transform: rotate(180deg);
}

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

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

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

.rough-4e85 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.down-2ad4 {
  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);
}

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

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

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

.new_f7a2,
.surface-0d16 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.new_f7a2 h4,
.surface-0d16 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.new_f7a2 ul,
.surface-0d16 ul {
  list-style: none;
  padding: 0;
}

.new_f7a2 li,
.surface-0d16 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.button-complex-61d4 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.label-narrow-6a5f {
  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);
}

.label-narrow-6a5f:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.label-narrow-6a5f p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

.feature-3835 .element_55ea {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.video_blue_8775 a:hover {
  color: white;
}

.widget-133d {
  list-style: none;
  padding: 0;
}

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

.widget-133d a {
  color: #b0b0b0;
  text-decoration: none;
}

.widget-133d a:hover {
  color: white;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .accent_dynamic_c1b7 {
    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;
  }
  
  .layout-6264 {
    font-size: 2rem;
  }
  
  .green-a4c0 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .dynamic_26eb,
  .static_9ed6 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .box-d2fd,
  .row_old_458f,
  .full_d1da,
  .border_plasma_fbae,
  .notice-acc1,
  .cold-6709,
  .thumbnail_narrow_d4e2,
  .texture_light_bd65 {
    grid-template-columns: 1fr;
  }
  
  .title-d4f6 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .wrapper_inner_e75e {
    padding: var(--space-lg) 0;
  }
  
  .accent_0954 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .accent_0954 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .dark-c41d {
    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;
  }
  
  .title-d4f6 {
    grid-template-columns: 1fr;
  }
  
  .shadow-liquid-d203,
  .basic-f19f,
  .tertiary_7370 {
    flex-direction: column;
    width: 100%;
  }
  
  .pressed_0566,
  .article_top_7ced,
  .shadow-liquid-d203 .dark-c41d,
  .basic-f19f .dark-c41d {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .layout-6264 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .green-a4c0 {
    font-size: 1.375rem;
  }
  
  .overlay-center-5f82 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .border-center-ae32,
  .disabled_bc46,
  .sort_ac5d,
  .summary_hovered_e73d,
  .dropdown_4b84 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .article_focused_abb6 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .north-9d2b {
    gap: var(--space-xs);
  }
  
  .summary_left_f183 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .in-de39 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .slow-e9d3 {
    width: 150px;
    height: 150px;
  }
  
  .sort_outer_7750 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .secondary_clean_191a,
  .hot_a331,
  .shadow-liquid-d203,
  .focus-1485,
  .surface_plasma_f039,
  .hard-3ba9,
  .notice_gold_88b7 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .wrapper_inner_e75e {
    page-break-inside: avoid;
  }
}

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

/* css-noise: a3cb */
.widget-item-t5 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.0;
}
