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

.short_de47:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.avatar_next_f497):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. */
.avatar_next_f497,
header,
.light-d505,
.west-8b7e,
.silver_37d7,
.top_7e64,
.item-f1af,
.hidden-b98f,
.header_fluid_b9d2 {
  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
   ============================================ */
.avatar_next_f497 {
  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);
}

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

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

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

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

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

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

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

.column_dim_10d9 {
  flex: 1;
}

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

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

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

.light_b6c3.highlight-3930 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.wide-e79e svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .column_dim_10d9::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .column_dim_10d9.black-084c {
    display: block;
    right: 0;
  }
  
  .search-9f3e {
    flex-direction: column;
    gap: 0;
  }
  
  .light_b6c3 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .column_dim_10d9::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;
  }
  
  .column_dim_10d9.black-084c::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .column_dim_10d9 {
    display: none;
  }
  
  .wood-a48b {
    display: flex;
  }
  
  .middle_0658 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .wide-e79e,
  .header_south_86b8 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .middle_a9d0 {
    position: relative;
  }
  
  .slider_b2c0 {
    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;
  }
  
  .grid_center_0ed8[aria-expanded="true"] + .slider_b2c0 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .logo-1050 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .nav_2c8b {
    gap: 8px;
  }
  
  .wide-e79e {
    display: none;
  }
  
  .header_south_86b8 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .focus_large_403d img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.secondary_soft_323d svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.purple-8a40 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

.avatar-center-77a5 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .up_5f54 {
    grid-template-columns: 1fr;
  }
  
  .banner-fab6 {
    font-size: 1.75rem;
  }
  
  .dynamic_f503 {
    order: -1;
    max-width: 100%;
  }
  
  .hidden_action_34e7 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .banner-fab6 {
    font-size: 1.5rem;
  }
  
  .lower_39da {
    font-size: 1rem;
  }
  
  .dirty_163d {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .hidden_action_34e7 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.logo-narrow-3648 {
  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;
}

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

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

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

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

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

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

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

.orange-9c2f {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

.title-copper-27de:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

.card-white-a025 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.card-white-a025 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);
}

.card-white-a025 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;
}

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

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

.stale-3aac {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.media_top_d53c 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) {
  .panel_action_fd19 {
    grid-template-columns: 1fr;
  }
  
  .form-af60 {
    font-size: 1.75rem;
  }
  
  .carousel_11f6 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .form-af60 {
    font-size: 1.5rem;
  }
  
  .carousel_11f6 h3 {
    font-size: 1.375rem;
  }
  
  .carousel_11f6 h4 {
    font-size: 1.125rem;
  }
}

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

.description-727a {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

.frame-gold-8071 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.description-3289 {
  flex-shrink: 0;
}

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

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

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

.easy-8a41,
.badge-red-bca2,
.gallery_028b {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.easy-8a41 thead,
.badge-red-bca2 thead {
  background: var(--color-primary);
  color: white;
}

.easy-8a41 th,
.easy-8a41 td,
.badge-red-bca2 th,
.badge-red-bca2 td,
.gallery_028b th,
.gallery_028b td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .easy-8a41 th,
  .easy-8a41 td,
  .badge-red-bca2 th,
  .badge-red-bca2 td,
  .gallery_028b th,
  .gallery_028b td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .easy-8a41,
  .badge-red-bca2,
  .gallery_028b {
    min-width: 600px;
  }
}

.easy-8a41 th,
.badge-red-bca2 th,
.gallery_028b th {
  font-weight: 600;
}

.easy-8a41 tbody tr:hover,
.badge-red-bca2 tbody tr:hover,
.gallery_028b tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.glass_893e h4 {
  color: white;
}

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

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

.breadcrumb-2e79:last-child {
  border-bottom: none;
}

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

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

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

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

.accent-light-7ba2:hover {
  text-decoration: underline;
}

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

.left-353e {
  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);
}

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

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

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

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

.modal_iron_c07c {
  color: #4caf50;
}

.menu_2451 {
  color: #ff9800;
}

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

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

.hidden-top-12c9 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.frame-6062 .logo-narrow-3648 {
  width: 100%;
  background: white;
}

.wrapper_b9d3 .logo-narrow-3648 {
  color: #667eea;
}

.small_7c0d .logo-narrow-3648 {
  color: #f5576c;
}

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

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

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

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

.backdrop-blue-010b h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .backdrop-blue-010b {
    padding: var(--space-md);
  }
  
  .narrow_e981 {
    padding: var(--space-md);
  }
  
  .disabled_9226 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.tooltip-over-5b78,
.block-yellow-bf5b,
.article-9c7d,
.banner_1797 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.container-2fd5 {
  border-color: var(--color-success);
}

.message-short-cfa9 {
  border-color: var(--color-warning);
}

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

.container-2fd5 .lower-a31f {
  background: #e8f5e9;
  color: var(--color-success);
}

.message-short-cfa9 .lower-a31f {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.warm-185f {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

.accordion-72cd {
  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);
}

.panel_894a {
  text-align: center;
}

.cool-41c5 {
  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);
}

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

.cool-41c5 .banner_8006 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.hidden-easy-a3a8 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.stone-1fc8 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.detail_50ce {
  text-align: right;
}

.detail_50ce .outline-dbb4 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

.popup-tall-2d55 {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

.notice-lower-e907 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.dim-4538 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

.shade-full-7a6b {
  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);
}

.shade-full-7a6b:hover {
  background: var(--color-bg-alt);
}

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

.shade-full-7a6b[aria-expanded="true"] .gas_74e2 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.yellow_6a96,
.hero-fluid-dd8c {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.yellow_6a96 h4,
.hero-fluid-dd8c h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.yellow_6a96 ul,
.hero-fluid-dd8c ul {
  list-style: none;
  padding: 0;
}

.yellow_6a96 li,
.hero-fluid-dd8c li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.fixed-461b {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.outer_47e9 .accordion-1604 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.picture_294c a:hover {
  color: white;
}

.overlay-2ad0 {
  list-style: none;
  padding: 0;
}

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

.overlay-2ad0 a {
  color: #b0b0b0;
  text-decoration: none;
}

.overlay-2ad0 a:hover {
  color: white;
}

.widget-copper-60d8 {
  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);
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .widget-copper-60d8 {
    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;
  }
  
  .banner-fab6 {
    font-size: 2rem;
  }
  
  .form-af60 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .up_5f54,
  .panel_action_fd19 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .fixed-00e4,
  .center_d559,
  .hero_left_d9c9,
  .disabled_warm_9423,
  .header-cold-0676,
  .upper-8b2c,
  .slider-90d4,
  .photo-last-e74b {
    grid-template-columns: 1fr;
  }
  
  .info-81e5 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .item-f1af {
    padding: var(--space-lg) 0;
  }
  
  .card-white-a025 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .card-white-a025 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .logo-narrow-3648 {
    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;
  }
  
  .info-81e5 {
    grid-template-columns: 1fr;
  }
  
  .purple-8a40,
  .layout-3ebb,
  .slider-4302 {
    flex-direction: column;
    width: 100%;
  }
  
  .sidebar_mini_ea73,
  .orange-9c2f,
  .purple-8a40 .logo-narrow-3648,
  .layout-3ebb .logo-narrow-3648 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .banner-fab6 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .form-af60 {
    font-size: 1.375rem;
  }
  
  .short_aca7 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .title-copper-27de,
  .main_e7b5,
  .highlight-plasma-1b03,
  .hidden-ffee,
  .focus-d3a1 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .slider_left_df07 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .large-85fc {
    gap: var(--space-xs);
  }
  
  .secondary_soft_323d {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .left-353e {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .cool-41c5 {
    width: 150px;
    height: 150px;
  }
  
  .mask_86b6 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .avatar_next_f497,
  .light-d505,
  .purple-8a40,
  .hidden_4c64,
  .hidden-b98f,
  .header_fluid_b9d2,
  .wood-a48b {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .item-f1af {
    page-break-inside: avoid;
  }
}

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

/* css-noise: d2cc */
.widget-item-w3 {
  padding: 0.3rem;
  font-size: 13px;
  line-height: 1.2;
}
