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

.footer_light_1e01:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.active-d49e):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. */
.active-d49e,
header,
.title_full_b629,
.silver_6e6b,
.header-fd3d,
.slow_f889,
.icon-6b78,
.row_basic_9bf6,
.advanced-d3e5 {
  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
   ============================================ */
.active-d49e {
  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);
}

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

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

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

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

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

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

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

.solid_50b7 {
  flex: 1;
}

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

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

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

.hidden_upper_3eda.chip-gas-4fa6 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.hover-6836 {
  position: relative;
}

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

.sidebar-ef58 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.panel-bbe6 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.north_6915[aria-expanded="true"] .grid-6b20:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .solid_50b7 {
    display: none;
  }
  
  .north_6915 {
    display: flex;
  }
  
  .next-0843 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .panel-bbe6,
  .notice_0370 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .hover-6836 {
    position: relative;
  }
  
  .copper-c5c3 {
    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;
  }
  
  .sidebar-ef58[aria-expanded="true"] + .copper-c5c3 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .black_0b89 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .button-smooth-f6d4 {
    gap: 8px;
  }
  
  .panel-bbe6 {
    display: none;
  }
  
  .notice_0370 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .lower_b275 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.panel_full_c7f9 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.list-smooth-c2c9 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

.shade-top-b20b {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .backdrop-in-2f33 {
    grid-template-columns: 1fr;
  }
  
  .accordion_plasma_e4e5 {
    font-size: 1.75rem;
  }
  
  .current_576a {
    order: -1;
    max-width: 100%;
  }
  
  .text_01e0 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .accordion_plasma_e4e5 {
    font-size: 1.5rem;
  }
  
  .text_5f3f {
    font-size: 1rem;
  }
  
  .bronze_3e36 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .text_01e0 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.description-green-9913 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.description-green-9913 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);
}

.description-green-9913 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;
}

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

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

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

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

.modal-bright-1ee9 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slider-9567 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) {
  .simple_e3f1 {
    grid-template-columns: 1fr;
  }
  
  .west-b881 {
    font-size: 1.75rem;
  }
  
  .pattern_04a8 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .west-b881 {
    font-size: 1.5rem;
  }
  
  .pattern_04a8 h3 {
    font-size: 1.375rem;
  }
  
  .pattern_04a8 h4 {
    font-size: 1.125rem;
  }
}

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

.status-bronze-cdff {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.module-3097 {
  flex-shrink: 0;
}

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

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

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

.complex_29b2,
.dim_c347,
.liquid_1c55 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.complex_29b2 thead,
.dim_c347 thead {
  background: var(--color-primary);
  color: white;
}

.complex_29b2 th,
.complex_29b2 td,
.dim_c347 th,
.dim_c347 td,
.liquid_1c55 th,
.liquid_1c55 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .complex_29b2 th,
  .complex_29b2 td,
  .dim_c347 th,
  .dim_c347 td,
  .liquid_1c55 th,
  .liquid_1c55 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .complex_29b2,
  .dim_c347,
  .liquid_1c55 {
    min-width: 600px;
  }
}

.complex_29b2 th,
.dim_c347 th,
.liquid_1c55 th {
  font-weight: 600;
}

.complex_29b2 tbody tr:hover,
.dim_c347 tbody tr:hover,
.liquid_1c55 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.up-f5c5 h4 {
  color: white;
}

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

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

.dim-ebfc:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

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

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

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

.tiny_7e5a {
  color: #4caf50;
}

.border-motion-d973 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sort_cool_a4b3 .north-2253 {
  width: 100%;
  background: white;
}

.complex_20bd .north-2253 {
  color: #667eea;
}

.item_d930 .north-2253 {
  color: #f5576c;
}

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

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

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

.down-0e33 {
  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);
}

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

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

@media (max-width: 768px) {
  .main-ed42 {
    padding: var(--space-md);
  }
  
  .motion_73e6 {
    padding: var(--space-md);
  }
  
  .hover-orange-2939 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.box-soft-d1d2,
.heading-steel-d56f,
.tooltip-2d89,
.action-e995 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.form-98ae:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

.chip-mini-ae5b {
  border-color: var(--color-warning);
}

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

.widget_c485 .tabs_copper_1eb7 {
  background: #e8f5e9;
  color: var(--color-success);
}

.chip-mini-ae5b .tabs_copper_1eb7 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.image-8c80 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.dark-2f4b {
  text-align: center;
}

.stone-753e {
  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);
}

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

.stone-753e .header_gas_2172 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.mask-430e {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.accent-93f4 {
  border: 2px solid #4caf50;
}

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

.search-current-1004 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.link_5f77 {
  text-align: right;
}

.link_5f77 .lite-82f0 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.main-f110 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.warm-817d {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.item-prev-d5cd strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

.next_6150[aria-expanded="true"] .silver-d602 {
  transform: rotate(180deg);
}

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

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

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

.cool-303d li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.outline_b1f4 {
  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_97ba {
  padding: 12px 24px;
  background: #4caf50;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

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

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

.notification-stale-4432,
.fast_46b4 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.notification-stale-4432 h4,
.fast_46b4 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.notification-stale-4432 ul,
.fast_46b4 ul {
  list-style: none;
  padding: 0;
}

.notification-stale-4432 li,
.fast_46b4 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.texture_0eac {
  font-style: italic;
}

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

.layout-4fae {
  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;
}

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

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

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

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

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

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

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

.secondary-motion-a6e6 {
  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);
}

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

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

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

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

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

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

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

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

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

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

.hero-84ae .list-smooth-c2c9 {
  color: #4caf50;
  font-size: 0.875rem;
}

.shadow-3c87 {
  list-style: none;
  padding: 0;
}

.shadow-3c87 li {
  margin-bottom: var(--space-xs);
}

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

.shadow-3c87 a:hover {
  color: white;
}

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

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

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

.button_huge_d894 a:hover {
  color: white;
}

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

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

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

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

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

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

.hard-b99c:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .mini_cfb1 {
    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;
  }
  
  .accordion_plasma_e4e5 {
    font-size: 2rem;
  }
  
  .west-b881 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .backdrop-in-2f33,
  .simple_e3f1 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .pagination-e09c,
  .surface-68fe,
  .widget-cbf1,
  .title-df44,
  .input-easy-2ed9,
  .gradient_439f,
  .copper_f3f3,
  .texture-8c56 {
    grid-template-columns: 1fr;
  }
  
  .tooltip_silver_f5ea {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .icon-6b78 {
    padding: var(--space-lg) 0;
  }
  
  .description-green-9913 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .description-green-9913 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .north-2253 {
    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;
  }
  
  .tooltip_silver_f5ea {
    grid-template-columns: 1fr;
  }
  
  .shade-top-b20b,
  .picture_5a4e,
  .hidden_ea26 {
    flex-direction: column;
    width: 100%;
  }
  
  .photo-cbdc,
  .surface-faaa,
  .shade-top-b20b .north-2253,
  .picture_5a4e .north-2253 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .accordion_plasma_e4e5 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .west-b881 {
    font-size: 1.375rem;
  }
  
  .dropdown-middle-1939 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .header_green_3f6b,
  .hot-5447,
  .hero-out-d109,
  .header-8934,
  .accordion-smooth-5406 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .title_8376 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .list-gold-cf87 {
    gap: var(--space-xs);
  }
  
  .panel_full_c7f9 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .border_b63d {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .stone-753e {
    width: 150px;
    height: 150px;
  }
  
  .backdrop_soft_b7ac {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .active-d49e,
  .title_full_b629,
  .shade-top-b20b,
  .layout-4fae,
  .row_basic_9bf6,
  .advanced-d3e5,
  .north_6915 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .icon-6b78 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: e39c */
.phantom-card-l7 {
  padding: 0.1rem;
  font-size: 10px;
  line-height: 1.2;
}
