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

.mask_30e8:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.focus-fixed-c8d3):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. */
.focus-fixed-c8d3,
header,
.pattern-pressed-0a95,
.tooltip-huge-bbba,
.block_9838,
.west-838d,
.heading_d9b0,
.accordion-advanced-b5f8,
.component-prev-eaeb {
  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
   ============================================ */
.focus-fixed-c8d3 {
  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);
}

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

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

/* Scrolled state */
.focus-fixed-c8d3.lite-4839 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.message-short-9d28 img {
  height: 36px;
  width: auto;
  display: block;
}

.input-fast-a610 {
  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;
}

.tag-fluid-05a9 {
  flex: 1;
}

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

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

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

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

/* Dropdown Navigation */
.table-c4aa {
  position: relative;
}

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

.out-851d svg {
  transition: transform 0.2s ease;
}

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

.block-3e0d {
  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;
}

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

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

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

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

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

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

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

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

.backdrop_first_1925 svg {
  flex-shrink: 0;
}

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

.dynamic-94a1: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);
}

.dynamic-94a1 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

  .tag-fluid-05a9::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .tag-fluid-05a9.mask-9bab {
    display: block;
    right: 0;
  }
  
  .wrapper-brown-5a5c {
    flex-direction: column;
    gap: 0;
  }
  
  .header_a7ed {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .tag-fluid-05a9::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;
  }
  
  .tag-fluid-05a9.mask-9bab::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .tag-fluid-05a9 {
    display: none;
  }
  
  .highlight_tiny_2c2e {
    display: flex;
  }
  
  .input-fast-a610 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .backdrop_first_1925,
  .dynamic-94a1 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .table-c4aa {
    position: relative;
  }
  
  .block-3e0d {
    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;
  }
  
  .out-851d[aria-expanded="true"] + .block-3e0d {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .dropdown-orange-4564 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .search-df5c {
    gap: 8px;
  }
  
  .backdrop_first_1925 {
    display: none;
  }
  
  .dynamic-94a1 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .message-short-9d28 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.article-easy-8276 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-easy-8276 svg {
  flex-shrink: 0;
}

.article-easy-8276 a {
  color: var(--color-primary);
  text-decoration: none;
}

.article-easy-8276 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.liquid-74bb a {
  color: var(--color-primary);
  text-decoration: none;
}

.liquid-74bb a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.shade-1e7b {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

.pattern-copper-755b {
  display: flex;
  align-items: center;
  justify-content: center;
}

.static-8959 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .tabs_pressed_68af {
    grid-template-columns: 1fr;
  }
  
  .shadow_c3e1 {
    font-size: 1.75rem;
  }
  
  .pattern-copper-755b {
    order: -1;
    max-width: 100%;
  }
  
  .static-8959 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .shadow_c3e1 {
    font-size: 1.5rem;
  }
  
  .form-down-e301 {
    font-size: 1rem;
  }
  
  .liquid-74bb {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .static-8959 {
    max-width: 250px;
  }
}

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

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

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

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

.row-bronze-2998:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.notice-stale-09cb {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.copper-31ae {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.copper-31ae 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) {
  .message_6d84 {
    grid-template-columns: 1fr;
  }
  
  .blue-cd37 {
    font-size: 1.75rem;
  }
  
  .main_small_4d94 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .blue-cd37 {
    font-size: 1.5rem;
  }
  
  .main_small_4d94 h3 {
    font-size: 1.375rem;
  }
  
  .main_small_4d94 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

.search-small-20e1 strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

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

.dirty-eebc {
  flex-shrink: 0;
}

.modal-cold-0e85 strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

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

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

.mask-dynamic-9c85,
.active-fluid-1085,
.border-df26 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.mask-dynamic-9c85 thead,
.active-fluid-1085 thead {
  background: var(--color-primary);
  color: white;
}

.mask-dynamic-9c85 th,
.mask-dynamic-9c85 td,
.active-fluid-1085 th,
.active-fluid-1085 td,
.border-df26 th,
.border-df26 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .mask-dynamic-9c85 th,
  .mask-dynamic-9c85 td,
  .active-fluid-1085 th,
  .active-fluid-1085 td,
  .border-df26 th,
  .border-df26 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .mask-dynamic-9c85,
  .active-fluid-1085,
  .border-df26 {
    min-width: 600px;
  }
}

.mask-dynamic-9c85 th,
.active-fluid-1085 th,
.border-df26 th {
  font-weight: 600;
}

.mask-dynamic-9c85 tbody tr:hover,
.active-fluid-1085 tbody tr:hover,
.border-df26 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

/* ============================================
   14. SIDEBAR
   ============================================ */
.breadcrumb-out-37d4 {
  position: sticky;
  top: 80px;
  align-self: start;
}

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

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

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

.pagination_bcf4 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

.notification-f60c {
  font-weight: 600;
  color: white;
}

.action-36d2 {
  list-style: none;
  padding: 0;
}

.action-36d2 li {
  padding: var(--space-xs) 0;
}

.icon_cff1 {
  color: #4caf50;
}

.bottom-ad34 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer-bottom-b660 .surface-662e {
  width: 100%;
  background: white;
}

.menu_a27a .surface-662e {
  color: #667eea;
}

.layout_6006 .surface-662e {
  color: #f5576c;
}

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

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

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

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

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

.icon-glass-864d {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .disabled_55f5 {
    padding: var(--space-md);
  }
  
  .icon-glass-864d {
    padding: var(--space-md);
  }
  
  .surface-a0b4 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.west-6e1a li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.box_bright_7d90,
.pagination-072a,
.row-blue-a359,
.box-219b {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.active-next-2ec3 {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

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

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

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

.copper-5d2a h4 {
  margin-bottom: var(--space-md);
}

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

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

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

@media (max-width: 768px) {
  .status-in-54d5 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

.notice_d98e .active_04fe {
  background: #e8f5e9;
  color: var(--color-success);
}

.easy_479e .active_04fe {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.pattern-complex-068e {
  margin-top: var(--space-xxl);
}

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

.orange_2953 {
  text-align: center;
}

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

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

.summary_plasma_baf5 .notification-f60c {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.carousel-down-89c4 {
  color: var(--color-text-light);
}

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

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

.copper-7b7d {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

.tooltip-cold-1ad3 {
  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;
}

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

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

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

.text-390e {
  text-align: right;
}

.text-390e .solid-ee86 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.old-67e1 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.thumbnail_paper_5b2d[aria-expanded="true"] .out-cc62 {
  transform: rotate(180deg);
}

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

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

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

.brown-264d li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.liquid-2fb3 {
  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);
}

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

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

@media (max-width: 768px) {
  .title-silver-01db {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

.bronze_f240 ul,
.green_4fe6 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.warm_1923 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.main-cold-bbf1 .shade-1e7b {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.tiny_960e a:hover {
  color: white;
}

.mask-9bdb {
  list-style: none;
  padding: 0;
}

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

.mask-9bdb a {
  color: #b0b0b0;
  text-decoration: none;
}

.mask-9bdb a:hover {
  color: white;
}

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

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

.heading-dark-f98d a {
  color: #4caf50;
  text-decoration: none;
}

.table-08cf {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .glass_7e70 {
    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;
  }
  
  .shadow_c3e1 {
    font-size: 2rem;
  }
  
  .blue-cd37 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .tabs_pressed_68af,
  .message_6d84 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .focus-1c64,
  .status-in-54d5,
  .easy-d225,
  .mask_6f34,
  .title-silver-01db,
  .sort_middle_d42c,
  .search-dark-9419,
  .pro-840d {
    grid-template-columns: 1fr;
  }
  
  .disabled_9f6f {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .heading_d9b0 {
    padding: var(--space-lg) 0;
  }
  
  .slow_0192 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .slow_0192 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .surface-662e {
    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;
  }
  
  .disabled_9f6f {
    grid-template-columns: 1fr;
  }
  
  .center_a132,
  .list-69a6,
  .hero_0b20 {
    flex-direction: column;
    width: 100%;
  }
  
  .notice-stale-09cb,
  .middle_3c8a,
  .center_a132 .surface-662e,
  .list-69a6 .surface-662e {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .shadow_c3e1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .blue-cd37 {
    font-size: 1.375rem;
  }
  
  .chip-first-6438 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .sidebar_8dfc,
  .warm_a81f,
  .tabs-6cc2,
  .panel_dc4e,
  .large_6967 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .complex_1e6e {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .dropdown_first_beeb {
    gap: var(--space-xs);
  }
  
  .article-easy-8276 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .article_d957 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .summary_plasma_baf5 {
    width: 150px;
    height: 150px;
  }
  
  .tooltip-efc3 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .focus-fixed-c8d3,
  .pattern-pressed-0a95,
  .center_a132,
  .last_cc6f,
  .accordion-advanced-b5f8,
  .component-prev-eaeb,
  .highlight_tiny_2c2e {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .heading_d9b0 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 65f1 */
.widget-item-w0 {
  padding: 0.4rem;
  font-size: 14px;
  line-height: 1.1;
}
