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

.list_stone_c4d4:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.list-south-9bef):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. */
.list-south-9bef,
header,
.plasma_982c,
.basic-7b90,
.soft-1dde,
.backdrop-cbb8,
.white_4c29,
.highlight_large_5116,
.video-16c4 {
  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
   ============================================ */
.list-south-9bef {
  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);
}

.menu-easy-15d2 {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.list-south-9bef.outline-center-0f4d {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.stone_a47b img {
  height: 36px;
  width: auto;
  display: block;
}

.hover-305b {
  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;
}

.feature_selected_fbc3 {
  flex: 1;
}

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

.paper-8ea3 {
  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);
}

.paper-8ea3:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.paper-8ea3.focused_7d35 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

/* Header Login Button */
.huge-1e02 {
  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-1e02:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
  transform: translateY(-1px);
}

.huge-1e02 svg {
  flex-shrink: 0;
}

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

.column-374a: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);
}

.column-374a svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

  .feature_selected_fbc3::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .feature_selected_fbc3.accordion_c0af {
    display: block;
    right: 0;
  }
  
  .gold_e6f1 {
    flex-direction: column;
    gap: 0;
  }
  
  .paper-8ea3 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .feature_selected_fbc3::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;
  }
  
  .feature_selected_fbc3.accordion_c0af::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .feature_selected_fbc3 {
    display: none;
  }
  
  .overlay_bc1b {
    display: flex;
  }
  
  .hover-305b {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .huge-1e02,
  .column-374a {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .focus_pro_aead {
    position: relative;
  }
  
  .progress_3a55 {
    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;
  }
  
  .shadow_rough_6ce5[aria-expanded="true"] + .progress_3a55 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .main-91a1 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .box_center_50af {
    gap: 8px;
  }
  
  .huge-1e02 {
    display: none;
  }
  
  .column-374a {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .stone_a47b img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.texture_a582 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

.liquid-921b {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

.link-complex-da19 {
  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;
}

.hot-1a50 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hot-1a50 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .icon_dim_26b7 {
    grid-template-columns: 1fr;
  }
  
  .wide-2096 {
    font-size: 1.75rem;
  }
  
  .focus_short_b16b {
    order: -1;
    max-width: 100%;
  }
  
  .slider_brown_6e3b {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .wide-2096 {
    font-size: 1.5rem;
  }
  
  .layout-9f2c {
    font-size: 1rem;
  }
  
  .hover-aeb3 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .slider_brown_6e3b {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.dropdown-west-75c5 {
  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;
}

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

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

.hero-medium-10e1 {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.hero-medium-10e1:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

.middle-0b52 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.large-f8d2 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.current_f170 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) {
  .overlay-silver-b904 {
    grid-template-columns: 1fr;
  }
  
  .hover_pink_94f0 {
    font-size: 1.75rem;
  }
  
  .right-9246 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hover_pink_94f0 {
    font-size: 1.5rem;
  }
  
  .right-9246 h3 {
    font-size: 1.375rem;
  }
  
  .right-9246 h4 {
    font-size: 1.125rem;
  }
}

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

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

.static-4aa8 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.video-out-1126 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.module-east-09e7 strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

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

.green_0288 {
  flex-shrink: 0;
}

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

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

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

.disabled_c507,
.logo-5b46,
.banner_35d3 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.disabled_c507 thead,
.logo-5b46 thead {
  background: var(--color-primary);
  color: white;
}

.disabled_c507 th,
.disabled_c507 td,
.logo-5b46 th,
.logo-5b46 td,
.banner_35d3 th,
.banner_35d3 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .disabled_c507 th,
  .disabled_c507 td,
  .logo-5b46 th,
  .logo-5b46 td,
  .banner_35d3 th,
  .banner_35d3 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .disabled_c507,
  .logo-5b46,
  .banner_35d3 {
    min-width: 600px;
  }
}

.disabled_c507 th,
.logo-5b46 th,
.banner_35d3 th {
  font-weight: 600;
}

.disabled_c507 tbody tr:hover,
.logo-5b46 tbody tr:hover,
.banner_35d3 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.cool_ea13 h4 {
  color: white;
}

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

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

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

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

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

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

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

.box-tiny-f21d:hover {
  text-decoration: underline;
}

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

.next-82ea {
  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);
}

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

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

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

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

.clean_9eeb {
  color: #4caf50;
}

.dirty-014c {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.row-5d90 .dropdown-west-75c5 {
  width: 100%;
  background: white;
}

.up_7538 .dropdown-west-75c5 {
  color: #667eea;
}

.main_tiny_af3e .dropdown-west-75c5 {
  color: #f5576c;
}

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

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

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

.container-9e2d {
  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);
}

.text-selected-3d2e h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .text-selected-3d2e {
    padding: var(--space-md);
  }
  
  .paragraph_pressed_7ce6 {
    padding: var(--space-md);
  }
  
  .yellow-de8b {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.hover-stale-d387 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.white_ab73,
.row_fe67,
.silver-cc65,
.old-446e {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.button-prev-3a6b {
  border-color: var(--color-success);
}

.complex-30b6 {
  border-color: var(--color-warning);
}

.gallery-wood-d2be {
  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);
}

.button-prev-3a6b .gallery-wood-d2be {
  background: #e8f5e9;
  color: var(--color-success);
}

.complex-30b6 .gallery-wood-d2be {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.primary-out-cadf {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.grid-wide-3fa0 {
  text-align: center;
}

.pattern-light-0eb8 {
  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);
}

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

.pattern-light-0eb8 .black_5b30 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.tooltip-fast-8463 {
  color: var(--color-text-light);
}

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

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

.box-paper-bc84 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

.title-new-87a9 {
  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;
}

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

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

.accent-silver-4dcc {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.progress_92af {
  text-align: right;
}

.progress_92af .aside-5ff4 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.pagination-liquid-2bf6 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

.mask-up-edbf {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.red-ce22 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

.pattern-dirty-31b5 {
  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);
}

.pattern-dirty-31b5:hover {
  background: var(--color-bg-alt);
}

.table-86a3 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.pattern-dirty-31b5[aria-expanded="true"] .table-86a3 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.in_adf2 ul,
.form_8dad ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.accordion_92c6 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.media-in-df53 .frame_black_091a {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.stone_8b44 a:hover {
  color: white;
}

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

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

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

.description_last_f22c a:hover {
  color: white;
}

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

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

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

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

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

.panel-first-850b {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.panel-first-850b:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .bottom_36d8 {
    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;
  }
  
  .wide-2096 {
    font-size: 2rem;
  }
  
  .hover_pink_94f0 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .icon_dim_26b7,
  .overlay-silver-b904 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .card-tall-d85d,
  .south-b057,
  .red_5b97,
  .column_motion_60b2,
  .bronze-162e,
  .dynamic_9a20,
  .last-8ec1,
  .first_af17 {
    grid-template-columns: 1fr;
  }
  
  .detail_plasma_79d4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .white_4c29 {
    padding: var(--space-lg) 0;
  }
  
  .large-f8d2 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .large-f8d2 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .dropdown-west-75c5 {
    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;
  }
  
  .detail_plasma_79d4 {
    grid-template-columns: 1fr;
  }
  
  .message_large_5170,
  .gradient_e883,
  .stale_d479 {
    flex-direction: column;
    width: 100%;
  }
  
  .carousel_warm_bf74,
  .middle-0b52,
  .message_large_5170 .dropdown-west-75c5,
  .gradient_e883 .dropdown-west-75c5 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .wide-2096 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .hover_pink_94f0 {
    font-size: 1.375rem;
  }
  
  .notice_rough_b972 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .summary_8073,
  .form-9831,
  .item_hovered_8b48,
  .soft_2780,
  .logo_da8e {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .backdrop_over_ad85 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .focused-e5f6 {
    gap: var(--space-xs);
  }
  
  .texture_a582 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .next-82ea {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .pattern-light-0eb8 {
    width: 150px;
    height: 150px;
  }
  
  .sidebar_6020 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .list-south-9bef,
  .plasma_982c,
  .message_large_5170,
  .modal_f1a2,
  .highlight_large_5116,
  .video-16c4,
  .overlay_bc1b {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .white_4c29 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: b69d */
.shadow-element-w2 {
  padding: 0.5rem;
  font-size: 14px;
  line-height: 1.0;
}
