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

.notice_9b35:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.medium-4e71):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. */
.medium-4e71,
header,
.main-warm-7a0b,
.hidden-gas-df6e,
.notice_f4bc,
.down-259f,
.tabs-fdee,
.medium-c48c,
.overlay_fluid_d4f3 {
  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
   ============================================ */
.medium-4e71 {
  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);
}

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

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

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

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

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

.paper-1113 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.backdrop_3b8d {
  flex: 1;
}

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

.aside-left-d5f1 {
  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);
}

.aside-left-d5f1:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.aside-left-d5f1.popup_051f {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.disabled-iron-bc11 {
  position: relative;
}

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

.pressed-dbf0 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.huge-deee svg {
  flex-shrink: 0;
}

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

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

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

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

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

.container-clean-636a {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

/* Hamburger animation when active */
.texture-up-0129[aria-expanded="true"] .container-clean-636a:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.texture-up-0129[aria-expanded="true"] .container-clean-636a:nth-child(2) {
  opacity: 0;
}

.texture-up-0129[aria-expanded="true"] .container-clean-636a:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .backdrop_3b8d::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .backdrop_3b8d.detail-smooth-54fe {
    display: block;
    right: 0;
  }
  
  .content_0a4a {
    flex-direction: column;
    gap: 0;
  }
  
  .aside-left-d5f1 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .backdrop_3b8d::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;
  }
  
  .backdrop_3b8d.detail-smooth-54fe::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .backdrop_3b8d {
    display: none;
  }
  
  .texture-up-0129 {
    display: flex;
  }
  
  .section_white_f35f {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .huge-deee,
  .west_b4c5 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .disabled-iron-bc11 {
    position: relative;
  }
  
  .hover_top_ff79 {
    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;
  }
  
  .pressed-dbf0[aria-expanded="true"] + .hover_top_ff79 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .progress-new-5c97 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .tertiary_focused_1707 {
    gap: 8px;
  }
  
  .huge-deee {
    display: none;
  }
  
  .west_b4c5 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .paper-1113 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.column-dim-9e16 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.column-dim-9e16 svg {
  flex-shrink: 0;
}

.column-dim-9e16 a {
  color: var(--color-primary);
  text-decoration: none;
}

.column-dim-9e16 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

.layout-purple-0f5b {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

@media (max-width: 1024px) {
  .layout-purple-0f5b {
    font-size: 2rem;
  }
}

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

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

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

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

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

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

.liquid-43bf {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.liquid-43bf strong {
  font-weight: 600;
  color: var(--color-text);
}

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

.tag-9c57 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .box_pink_903c {
    grid-template-columns: 1fr;
  }
  
  .layout-purple-0f5b {
    font-size: 1.75rem;
  }
  
  .purple-e994 {
    order: -1;
    max-width: 100%;
  }
  
  .hot_5802 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .layout-purple-0f5b {
    font-size: 1.5rem;
  }
  
  .pagination-01af {
    font-size: 1rem;
  }
  
  .primary_d946 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .hot_5802 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.shade_cold_3541 {
  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-7d0b {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

.smooth-13dc {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

.title-stale-649f {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

.shadow-a10a 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.notification_23cf 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) {
  .banner_4fc3 {
    grid-template-columns: 1fr;
  }
  
  .tooltip-e8d2 {
    font-size: 1.75rem;
  }
  
  .center_fb70 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .tooltip-e8d2 {
    font-size: 1.5rem;
  }
  
  .center_fb70 h3 {
    font-size: 1.375rem;
  }
  
  .center_fb70 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.static-648b {
  flex-shrink: 0;
}

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

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

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

.label-huge-8a8c,
.thumbnail_c4d6,
.input_07e3 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.label-huge-8a8c thead,
.thumbnail_c4d6 thead {
  background: var(--color-primary);
  color: white;
}

.label-huge-8a8c th,
.label-huge-8a8c td,
.thumbnail_c4d6 th,
.thumbnail_c4d6 td,
.input_07e3 th,
.input_07e3 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .label-huge-8a8c th,
  .label-huge-8a8c td,
  .thumbnail_c4d6 th,
  .thumbnail_c4d6 td,
  .input_07e3 th,
  .input_07e3 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .label-huge-8a8c,
  .thumbnail_c4d6,
  .input_07e3 {
    min-width: 600px;
  }
}

.label-huge-8a8c th,
.thumbnail_c4d6 th,
.input_07e3 th {
  font-weight: 600;
}

.label-huge-8a8c tbody tr:hover,
.thumbnail_c4d6 tbody tr:hover,
.input_07e3 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.hidden-current-5d58 h4 {
  color: white;
}

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

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

.list-motion-26a3:last-child {
  border-bottom: none;
}

.list-motion-26a3 dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.list-motion-26a3 dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

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

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

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

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

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

.block-green-adc7 {
  color: #4caf50;
}

.filter_inner_2c68 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.motion-8d9f {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.filter-64b5 .shade_cold_3541 {
  width: 100%;
  background: white;
}

.heading_f13d .shade_cold_3541 {
  color: #667eea;
}

.gradient_in_f432 .shade_cold_3541 {
  color: #f5576c;
}

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

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

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

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

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

.focus-slow-42f9 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .layout-warm-5717 {
    padding: var(--space-md);
  }
  
  .focus-slow-42f9 {
    padding: var(--space-md);
  }
  
  .photo-2feb {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.huge-54cf li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.middle_8b3e,
.nav-650c,
.feature-bright-8deb,
.frame-57ab {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.accordion_00c4 .progress_stale_1d8b {
  background: #e8f5e9;
  color: var(--color-success);
}

.status_stale_c4ac .progress_stale_1d8b {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.inner-26c7 {
  margin-top: var(--space-xxl);
}

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

.hovered_1a01 {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.highlight-5002 {
  text-align: right;
}

.highlight-5002 .fast_5495 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.footer-selected-8405 {
  background: #e3f2fd;
  color: #1565c0;
}

.backdrop-c886 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.east-dc35 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.detail_liquid_200f[aria-expanded="true"] .east-dc35 {
  transform: rotate(180deg);
}

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

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

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

.banner-419c li {
  margin-bottom: var(--space-xs);
}

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

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

.shade-gas-0ddc code {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.5;
}

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

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

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

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

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

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

.button_bronze_2d71,
.static-1db8 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.button_bronze_2d71 h4,
.static-1db8 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.button_bronze_2d71 ul,
.static-1db8 ul {
  list-style: none;
  padding: 0;
}

.button_bronze_2d71 li,
.static-1db8 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.clean-9aae {
  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);
}

.overlay_up_27d2 {
  font-style: italic;
}

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

.box-cool-4949 {
  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;
}

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

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

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

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

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

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

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

.wrapper-309f {
  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);
}

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

.banner-gold-778c {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.dim-09be .iron_4186 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.smooth_77bb a:hover {
  color: white;
}

.bronze-e07c {
  list-style: none;
  padding: 0;
}

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

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

.bronze-e07c a:hover {
  color: white;
}

.solid_3052 {
  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_f733 p {
  font-size: 0.875rem;
  color: #808080;
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

@media (max-width: 768px) {
  .solid_3052 {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   24. RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 1200px) {
  :root {
    font-size: 15px;
  }
}

@media (max-width: 968px) {
  :root {
    --space-xxl: 3rem;
  }
  
  .layout-purple-0f5b {
    font-size: 2rem;
  }
  
  .tooltip-e8d2 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .box_pink_903c,
  .banner_4fc3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .secondary-f0aa,
  .sort_160e,
  .active-93bb,
  .dim-8fd5,
  .under_19b9,
  .highlight_fluid_c2b4,
  .detail-current-9788,
  .slider_57a2 {
    grid-template-columns: 1fr;
  }
  
  .overlay_1c0f {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .tabs-fdee {
    padding: var(--space-lg) 0;
  }
  
  .shadow-a10a li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .shadow-a10a li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .shade_cold_3541 {
    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;
  }
  
  .overlay_1c0f {
    grid-template-columns: 1fr;
  }
  
  .tag-9c57,
  .secondary-7bae,
  .sidebar-6ee4 {
    flex-direction: column;
    width: 100%;
  }
  
  .smooth-13dc,
  .description-a635,
  .tag-9c57 .shade_cold_3541,
  .secondary-7bae .shade_cold_3541 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .layout-purple-0f5b {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .tooltip-e8d2 {
    font-size: 1.375rem;
  }
  
  .search-3209 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .hover_4e6b,
  .black_7c10,
  .medium_10d5,
  .highlight_fa8d,
  .panel_gold_65f2 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .shadow_first_0df0 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .surface_white_370e {
    gap: var(--space-xs);
  }
  
  .column-dim-9e16 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .pro_a9a1 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .popup_bronze_9105 {
    width: 150px;
    height: 150px;
  }
  
  .tabs_last_417d {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .medium-4e71,
  .main-warm-7a0b,
  .tag-9c57,
  .box-cool-4949,
  .medium-c48c,
  .overlay_fluid_d4f3,
  .texture-up-0129 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .tabs-fdee {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 10af */
.promo-block-l2 {
  padding: 0.2rem;
  font-size: 10px;
  line-height: 1.2;
}
