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

.detail_motion_0917:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.static_15ba):not(header) {
  max-width: 100%;
}

/* Allow specific elements to exceed container */
html,
body,
.static_15ba,
header,
.motion_aa46,
.card_medium_04b6,
.element-blue-c460,
.bottom_13d8,
.caption_lower_fcbe,
.paragraph_silver_3927,
.label_brown_d8a0 {
  max-width: none;
}

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

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

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

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

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

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

.info-ff25 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.thumbnail-5ebe {
  flex: 1;
}

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

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

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

.column_7994.fn-active-4523 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.modal-6c91 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.paragraph-new-28e3[aria-expanded="true"] .border-d261:nth-child(2) {
  opacity: 0;
}

.paragraph-new-28e3[aria-expanded="true"] .border-d261:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .thumbnail-5ebe::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .thumbnail-5ebe.fast-a37e {
    display: block;
    right: 0;
  }
  
  .tooltip-dbc9 {
    flex-direction: column;
    gap: 0;
  }
  
  .column_7994 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .thumbnail-5ebe::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;
  }
  
  .thumbnail-5ebe.fast-a37e::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .thumbnail-5ebe {
    display: none;
  }
  
  .paragraph-new-28e3 {
    display: flex;
  }
  
  .texture_c4e2 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .modal-6c91,
  .main_medium_3232 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .form_upper_9d66 {
    position: relative;
  }
  
  .huge_5432 {
    position: static; /* 移动端不浮动，直接堆叠 */
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--color-primary);
    padding-left: 20px;
    margin-top: 0;
    /* 用 max-height 过渡实现自然展开/收起，而不是生硬的 display 切换 */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
  }
  
  .tooltip_4e6b[aria-expanded="true"] + .huge_5432 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .overlay_43d3 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .iron_3fe3 {
    gap: 8px;
  }
  
  .modal-6c91 {
    display: none;
  }
  
  .main_medium_3232 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .info-ff25 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.container_0bdb svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.hard-145c a {
  color: var(--color-primary);
  text-decoration: none;
}

.hard-145c a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.title-action-16a2 {
  display: flex;
  gap: var(--space-sm);
}

.layout-83a4 {
  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;
}

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

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

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

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

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

.highlight-b087 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .form_bright_0a6f {
    grid-template-columns: 1fr;
  }
  
  .container_ae31 {
    font-size: 1.75rem;
  }
  
  .column_ab7b {
    order: -1;
    max-width: 100%;
  }
  
  .highlight-b087 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .container_ae31 {
    font-size: 1.5rem;
  }
  
  .modal-caba {
    font-size: 1rem;
  }
  
  .hard-145c {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .highlight-b087 {
    max-width: 250px;
  }
}

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

.tag-steel-0dc4 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.progress-282e {
  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);
}

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

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

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

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

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

.row-8abc img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.row-8abc 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);
}

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

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

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

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

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

.row-8abc strong {
  font-weight: 600;
  color: var(--color-text);
}

.row-8abc a {
  color: var(--color-primary);
  text-decoration: underline;
}

.row-8abc a:hover {
  color: var(--color-primary-dark);
}

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

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

.medium-d96b 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) {
  .up_336f {
    grid-template-columns: 1fr;
  }
  
  .rough-baba {
    font-size: 1.75rem;
  }
  
  .row-8abc {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .rough-baba {
    font-size: 1.5rem;
  }
  
  .row-8abc h3 {
    font-size: 1.375rem;
  }
  
  .row-8abc h4 {
    font-size: 1.125rem;
  }
}

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

.modal-99b7 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.old-65ec {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.gallery-lite-f183 {
  flex-shrink: 0;
}

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

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

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

.orange-718b,
.section-light-a26a,
.north_91a5 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.orange-718b thead,
.section-light-a26a thead {
  background: var(--color-primary);
  color: white;
}

.orange-718b th,
.orange-718b td,
.section-light-a26a th,
.section-light-a26a td,
.north_91a5 th,
.north_91a5 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .orange-718b th,
  .orange-718b td,
  .section-light-a26a th,
  .section-light-a26a td,
  .north_91a5 th,
  .north_91a5 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .orange-718b,
  .section-light-a26a,
  .north_91a5 {
    min-width: 600px;
  }
}

.orange-718b th,
.section-light-a26a th,
.north_91a5 th {
  font-weight: 600;
}

.orange-718b tbody tr:hover,
.section-light-a26a tbody tr:hover,
.north_91a5 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.media-right-a11c h4 {
  color: white;
}

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

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

.photo-862d:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

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

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

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

.tag-green-f4c8 {
  color: #4caf50;
}

.center-15e2 {
  color: #ff9800;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .badge-advanced-59c8 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gradient-fresh-9931 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.container-67c7 .large-a409 {
  width: 100%;
  background: white;
}

.label_0417 .large-a409 {
  color: #667eea;
}

.icon_e350 .large-a409 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .warm-8934 {
    padding: var(--space-md);
  }
  
  .layout_b031 {
    padding: var(--space-md);
  }
  
  .tiny_9e5e {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.pagination-e7f1,
.video_c706,
.focus-white-0d94,
.paragraph-9719 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header-5a6e {
  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);
}

.content_out_69f6 .header-5a6e {
  background: #e8f5e9;
  color: var(--color-success);
}

.button_new_c644 .header-5a6e {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.preview-slow-690e {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

.tooltip-purple-436a {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

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

.grid-gold-40c2 {
  margin-top: var(--space-xxl);
}

.link-6fec {
  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);
}

.dropdown-liquid-abff {
  text-align: center;
}

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

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

.status_fd0a .sidebar_ab28 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.inner-930f p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.element-pink-bd80 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.hidden-green-5bc7 {
  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;
}

.title-smooth-45a2 {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

.basic_4d4c {
  text-align: right;
}

.basic_4d4c .mask_2021 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.grid-cc5f {
  background: #e8f5e9;
  color: #2e7d32;
}

.surface-green-2a8d {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

.grid-focused-3a63 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

.disabled-selected-04dc {
  text-align: center;
  margin-top: var(--space-xl);
}

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

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

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

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

.layout-in-b789 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.image-f16a[aria-expanded="true"] .layout-in-b789 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.main_dirty_c939 ul,
.fast_c094 ul {
  list-style: none;
  padding: 0;
}

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

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

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

.shade-short-34da {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.shade-short-34da ul {
  list-style: none;
  padding: 0;
}

.shade-short-34da li {
  padding: var(--space-xs) 0;
  color: white;
}

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

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

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

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

.title-north-4a64 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

.hero-iron-913f {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

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

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

/* Footer variant: footer-content (subpages) */
.panel_gold_69bb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.focused-dc7b {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

.focused-dc7b a:hover {
  color: white;
}

.medium-c436 {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.medium-c436 a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid #424242;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.medium-c436 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.hover-red-dd17 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hover-red-dd17 a {
  color: #808080;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.hover-red-dd17 a:hover {
  color: white;
}

.widget_06cb > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

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

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

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

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

.notice-e2dd .title-action-16a2 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.rough_2b71 a:hover {
  color: white;
}

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

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

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

.grid_short_83d6 a:hover {
  color: white;
}

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

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

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

.red-101d {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.article_hot_51ce a:hover {
  color: white;
}

/* Element selectors: survive CMS class obfuscation on deploy */
footer > div > div:last-child > div:last-child a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

footer > div > div:last-child > div:last-child a:hover {
  color: white;
}

.gradient-hot-4b8e {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.gradient-hot-4b8e:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .widget_06cb {
    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;
  }
  
  .container_ae31 {
    font-size: 2rem;
  }
  
  .rough-baba {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .form_bright_0a6f,
  .up_336f {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .badge-advanced-59c8,
  .shadow_copper_6cfc,
  .simple-cbd2,
  .secondary-f529,
  .logo_hard_0b6b,
  .huge_843d,
  .gas-1f71,
  .thick_cd8d,
  .panel_gold_69bb {
    grid-template-columns: 1fr;
  }
  
  .tiny-4100 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .caption_lower_fcbe {
    padding: var(--space-lg) 0;
  }
  
  .layout_cbb9 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .layout_cbb9 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .large-a409 {
    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;
  }
  
  .tiny-4100 {
    grid-template-columns: 1fr;
  }
  
  .sidebar_simple_a88e,
  .up-9c4a,
  .section-085a {
    flex-direction: column;
    width: 100%;
  }
  
  .pressed_419b,
  .panel_d02b,
  .sidebar_simple_a88e .large-a409,
  .up-9c4a .large-a409 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .container_ae31 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .rough-baba {
    font-size: 1.375rem;
  }
  
  .header_4fb5 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .tertiary-4d50,
  .hidden_last_2e9b,
  .hovered_da62,
  .status_purple_d18b,
  .steel-98ac {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .slow_4f39 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .selected_d0f3 {
    gap: var(--space-xs);
  }
  
  .container_0bdb {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .gradient-acf5 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .status_fd0a {
    width: 150px;
    height: 150px;
  }
  
  .small-f8c5 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .static_15ba,
  .motion_aa46,
  .sidebar_simple_a88e,
  .article_right_d8ac,
  .paragraph_silver_3927,
  .label_brown_d8a0,
  .paragraph-new-28e3 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .caption_lower_fcbe {
    page-break-inside: avoid;
  }
}

/* css-noise: 7017 */
.promo-block-l1 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.0;
}
