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

.dark-c956:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.outline_a13d):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. */
.outline_a13d,
header,
.element-left-1a50,
.photo-lower-7ded,
.paragraph_6b36,
.list-narrow-b50f,
.plasma-664d,
.hover_71cc,
.image-b5b1 {
  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
   ============================================ */
.outline_a13d {
  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);
}

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

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

/* Scrolled state */
.outline_a13d.list-smooth-4e62 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.block-selected-eff3 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.hidden_4917 {
  flex: 1;
}

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

.panel-action-4176 {
  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);
}

.panel-action-4176:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.panel-action-4176.message_west_ec93 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.element-0d3d {
  position: relative;
}

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

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

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

.tertiary-6cd9 {
  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;
}

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

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

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

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

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

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

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

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

.progress_0b0d svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .hidden_4917::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .hidden_4917.main_30ea {
    display: block;
    right: 0;
  }
  
  .content-easy-4955 {
    flex-direction: column;
    gap: 0;
  }
  
  .panel-action-4176 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .hidden_4917::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;
  }
  
  .hidden_4917.main_30ea::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .hidden_4917 {
    display: none;
  }
  
  .component_6fc9 {
    display: flex;
  }
  
  .full_6e22 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .progress_0b0d,
  .disabled-d91c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .element-0d3d {
    position: relative;
  }
  
  .tertiary-6cd9 {
    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;
  }
  
  .avatar_6176[aria-expanded="true"] + .tertiary-6cd9 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .accent-paper-1db7 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .mask_cddd {
    gap: 8px;
  }
  
  .progress_0b0d {
    display: none;
  }
  
  .disabled-d91c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .block-selected-eff3 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.content-warm-4300 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.content-warm-4300 svg {
  flex-shrink: 0;
}

.content-warm-4300 a {
  color: var(--color-primary);
  text-decoration: none;
}

.content-warm-4300 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.container-stale-5d06 a {
  color: var(--color-primary);
  text-decoration: none;
}

.container-stale-5d06 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

.heading-right-cdf3 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

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

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

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

.label-steel-1516 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

.element-last-80ad {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

@media (max-width: 968px) {
  .block_left_686a {
    grid-template-columns: 1fr;
  }
  
  .in-4a6f {
    font-size: 1.75rem;
  }
  
  .label-steel-1516 {
    order: -1;
    max-width: 100%;
  }
  
  .dark_1d50 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .in-4a6f {
    font-size: 1.5rem;
  }
  
  .component_cool_6f48 {
    font-size: 1rem;
  }
  
  .container-stale-5d06 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .dark_1d50 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.popup-4b1f {
  list-style: none;
  counter-reset: toc-counter;
}

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

.popup-4b1f 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);
}

.popup-4b1f 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;
}

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

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

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

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

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

.overlay-79cf {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.light-b233 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) {
  .hard-094b {
    grid-template-columns: 1fr;
  }
  
  .overlay-79cf {
    font-size: 1.75rem;
  }
  
  .pressed_f4a7 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .overlay-79cf {
    font-size: 1.5rem;
  }
  
  .pressed_f4a7 h3 {
    font-size: 1.375rem;
  }
  
  .pressed_f4a7 h4 {
    font-size: 1.125rem;
  }
}

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

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

.pattern-yellow-d8eb {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.active-motion-2eef {
  flex-shrink: 0;
}

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

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

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

.detail-plasma-63c2,
.tooltip-large-8e15,
.pink-3eff {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.detail-plasma-63c2 thead,
.tooltip-large-8e15 thead {
  background: var(--color-primary);
  color: white;
}

.detail-plasma-63c2 th,
.detail-plasma-63c2 td,
.tooltip-large-8e15 th,
.tooltip-large-8e15 td,
.pink-3eff th,
.pink-3eff td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .detail-plasma-63c2 th,
  .detail-plasma-63c2 td,
  .tooltip-large-8e15 th,
  .tooltip-large-8e15 td,
  .pink-3eff th,
  .pink-3eff td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .detail-plasma-63c2,
  .tooltip-large-8e15,
  .pink-3eff {
    min-width: 600px;
  }
}

.detail-plasma-63c2 th,
.tooltip-large-8e15 th,
.pink-3eff th {
  font-weight: 600;
}

.detail-plasma-63c2 tbody tr:hover,
.tooltip-large-8e15 tbody tr:hover,
.pink-3eff tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.disabled_old_1f5f h4 {
  color: white;
}

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

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

.primary-af26:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

.yellow-06bb {
  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);
}

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

.focus-dirty-fa83 {
  font-weight: 600;
  color: white;
}

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

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

.outline-wide-deb6 {
  color: #4caf50;
}

.accordion-complex-f26e {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.accordion-north-b1f3 .description_east_4534 {
  width: 100%;
  background: white;
}

.table_ec5c .description_east_4534 {
  color: #667eea;
}

.left_98d1 .description_east_4534 {
  color: #f5576c;
}

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

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

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

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

.cold-89a4 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .cold-89a4 {
    padding: var(--space-md);
  }
  
  .easy-afd6 {
    padding: var(--space-md);
  }
  
  .section_tiny_5aef {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.component-last-4237 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.tabs-light-e9ee,
.filter_stone_1548,
.box-df70,
.tag_short_e115 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.caption-fixed-c958:hover {
  background: var(--color-primary-dark);
}

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

.input-2bc8 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.nav_hard_faf5 .component_black_3e87 {
  background: #e8f5e9;
  color: var(--color-success);
}

.center_c3ba .component_black_3e87 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.slow-6c62 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.detail-white-07f4 {
  margin-top: var(--space-xxl);
}

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

.left_7b6f {
  text-align: center;
}

.chip-057f {
  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);
}

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

.chip-057f .focus-dirty-fa83 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.large-75fd {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

.content-iron-ef03 {
  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;
}

.tabs-mini-68e2 {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

.hard_229f {
  text-align: right;
}

.hard_229f .last_17b2 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.texture-huge-006d {
  background: #e8f5e9;
  color: #2e7d32;
}

.motion-11f5 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hero_d628[aria-expanded="true"] .avatar_medium_9c94 {
  transform: rotate(180deg);
}

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

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

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

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

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

.footer-south-57d5 {
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: #9cdcfe;
}

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

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

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

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

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

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

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

.border-advanced-4e31,
.iron-8cce {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.border-advanced-4e31 h4,
.iron-8cce h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.border-advanced-4e31 ul,
.iron-8cce ul {
  list-style: none;
  padding: 0;
}

.border-advanced-4e31 li,
.iron-8cce li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.plasma_7ac8 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.backdrop-easy-76f5 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.backdrop-easy-76f5 .pro_b04b {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.focus_aacb a:hover {
  color: white;
}

.frame-a5b5 {
  list-style: none;
  padding: 0;
}

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

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

.frame-a5b5 a:hover {
  color: white;
}

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

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

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

.notification-easy-2a60 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.easy-720e:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .chip_c18a {
    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;
  }
  
  .in-4a6f {
    font-size: 2rem;
  }
  
  .overlay-79cf {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .block_left_686a,
  .hard-094b {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .heading_c8c9,
  .description-liquid-8213,
  .info_8f15,
  .basic-5ce3,
  .filter_narrow_609e,
  .media_simple_014d,
  .lower-ffd0,
  .up-fb36 {
    grid-template-columns: 1fr;
  }
  
  .preview_6067 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .plasma-664d {
    padding: var(--space-lg) 0;
  }
  
  .popup-4b1f li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .popup-4b1f li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .description_east_4534 {
    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;
  }
  
  .preview_6067 {
    grid-template-columns: 1fr;
  }
  
  .steel_bb50,
  .popup-16eb,
  .form-c2bc {
    flex-direction: column;
    width: 100%;
  }
  
  .button_235c,
  .feature-b3e7,
  .steel_bb50 .description_east_4534,
  .popup-16eb .description_east_4534 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .in-4a6f {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .overlay-79cf {
    font-size: 1.375rem;
  }
  
  .alert-482e {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .footer_2949,
  .section-a9c2,
  .section_full_a0c4,
  .black-062c,
  .purple_b32b {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .purple_f938 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .modal-0f1a {
    gap: var(--space-xs);
  }
  
  .content-warm-4300 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .yellow-06bb {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .chip-057f {
    width: 150px;
    height: 150px;
  }
  
  .shade-up-fb83 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .outline_a13d,
  .element-left-1a50,
  .steel_bb50,
  .progress_0db5,
  .hover_71cc,
  .image-b5b1,
  .component_6fc9 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .plasma-664d {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 1763 */
.widget-item-x3 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.2;
}
