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

.tabs-e290:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.heading_8bfd):not(header) {
  max-width: 100%;
}

/* Allow specific elements to exceed container */
html,
body,
.heading_8bfd,
header,
.hover_752a,
.tooltip-prev-bb18,
.input_7aed,
.silver-c275,
.hero_6520,
.dropdown_63d8,
.text_4689 {
  max-width: none;
}

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

.title-iron-f7c0 {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.heading_8bfd.description-iron-c2cb {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.advanced-7f0f {
  flex: 1;
}

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

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

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

.box_east_df62.fn-active-c178 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.focus-b9e1 {
  position: relative;
}

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

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

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

.center-88de {
  position: absolute;
  top: calc(100% + 8px); /* 距离父元素8px，更自然 */
  left: 0;
  min-width: 200px;
  width: max-content; /* 自动适应内容宽度 */
  max-width: 300px; /* 最大宽度限制 */
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.08);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1001;
  /* 关键：确保没有overflow，内容完全可见 */
  overflow: visible;
  max-height: none;
  height: auto;
}

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

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

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

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

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

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

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

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

.breadcrumb_hard_b236 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.top-7990[aria-expanded="true"] .full-fb64:nth-child(2) {
  opacity: 0;
}

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

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

  .advanced-7f0f::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .advanced-7f0f.highlight-hard-dc38 {
    display: block;
    right: 0;
  }
  
  .sort_fce6 {
    flex-direction: column;
    gap: 0;
  }
  
  .box_east_df62 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .advanced-7f0f::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;
  }
  
  .advanced-7f0f.highlight-hard-dc38::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .advanced-7f0f {
    display: none;
  }
  
  .top-7990 {
    display: flex;
  }
  
  .selected_bedb {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .breadcrumb_hard_b236,
  .detail_f624 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .focus-b9e1 {
    position: relative;
  }
  
  .center-88de {
    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;
  }
  
  .out_0245[aria-expanded="true"] + .center-88de {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .grid_97fa {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .simple-6568 {
    gap: 8px;
  }
  
  .breadcrumb_hard_b236 {
    display: none;
  }
  
  .detail_f624 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .outline_mini_69fc img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.shadow-left-4639 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.shadow-left-4639 svg {
  flex-shrink: 0;
}

.shadow-left-4639 a {
  color: var(--color-primary);
  text-decoration: none;
}

.shadow-left-4639 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.fixed-fa0e a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

.widget-375f {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.widget-375f strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

.surface-gold-3104 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

.hero-fluid-00c3 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

@media (max-width: 968px) {
  .aside_middle_33ad {
    grid-template-columns: 1fr;
  }
  
  .focused-ae00 {
    font-size: 1.75rem;
  }
  
  .texture_copper_3dfa {
    order: -1;
    max-width: 100%;
  }
  
  .surface-gold-3104 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .focused-ae00 {
    font-size: 1.5rem;
  }
  
  .search-6ae6 {
    font-size: 1rem;
  }
  
  .fixed-fa0e {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .surface-gold-3104 {
    max-width: 250px;
  }
}

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

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

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

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

.wrapper-thick-6641:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

.warm-f6ed {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.text_light_32f2 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;
}

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

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

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

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

.sort-5dba {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fresh-0028 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) {
  .column-narrow-fff5 {
    grid-template-columns: 1fr;
  }
  
  .hard-7a3b {
    font-size: 1.75rem;
  }
  
  .gradient_e8c9 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hard-7a3b {
    font-size: 1.5rem;
  }
  
  .gradient_e8c9 h3 {
    font-size: 1.375rem;
  }
  
  .gradient_e8c9 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.pink-8abc {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.up-3a4a {
  flex-shrink: 0;
}

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

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

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

.title-wide-87b0,
.panel_down_00cd,
.paragraph-090e {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.title-wide-87b0 thead,
.panel_down_00cd thead {
  background: var(--color-primary);
  color: white;
}

.title-wide-87b0 th,
.title-wide-87b0 td,
.panel_down_00cd th,
.panel_down_00cd td,
.paragraph-090e th,
.paragraph-090e td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .title-wide-87b0 th,
  .title-wide-87b0 td,
  .panel_down_00cd th,
  .panel_down_00cd td,
  .paragraph-090e th,
  .paragraph-090e td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .title-wide-87b0,
  .panel_down_00cd,
  .paragraph-090e {
    min-width: 600px;
  }
}

.title-wide-87b0 th,
.panel_down_00cd th,
.paragraph-090e th {
  font-weight: 600;
}

.title-wide-87b0 tbody tr:hover,
.panel_down_00cd tbody tr:hover,
.paragraph-090e tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.pro-9b3e h4 {
  color: white;
}

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

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

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

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

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

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

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

.component-cold-5c18:hover {
  text-decoration: underline;
}

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

.disabled-right-f446 {
  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);
}

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

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

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

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

.gradient-tiny-d604 {
  color: #4caf50;
}

.disabled_480e {
  color: #ff9800;
}

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

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

.hero-fresh-6b43 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

.notification-stale-e380 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.notification-feb1 .warm-3fb8 {
  width: 100%;
  background: white;
}

.block_2d0b .warm-3fb8 {
  color: #667eea;
}

.silver_7c4c .warm-3fb8 {
  color: #f5576c;
}

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

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

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

.tabs-simple-293c {
  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);
}

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

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

@media (max-width: 768px) {
  .fresh_8f25 {
    padding: var(--space-md);
  }
  
  .backdrop_f3a4 {
    padding: var(--space-md);
  }
  
  .accent_a351 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.accordion-219e li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.layout-2b52,
.focused_04ae,
.outline_last_8a6c,
.right-c1f3 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.fast-9dc0:hover {
  background: var(--color-primary-dark);
}

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

.hover-3ef2 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.surface-888c {
  border-color: var(--color-success);
}

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

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

.surface-888c .wide_0265 {
  background: #e8f5e9;
  color: var(--color-success);
}

.avatar-8759 .wide_0265 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

.icon-lower-0d8b {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.menu-east-66c8 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.popup-tiny-25f0 {
  margin-top: var(--space-xxl);
}

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

.copper-fe04 {
  text-align: center;
}

.wrapper-upper-7614 {
  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);
}

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

.wrapper-upper-7614 .steel_f78d {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.title-silver-d2db {
  border: 2px solid #4caf50;
}

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

.pagination-outer-e0b8 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.modal_white_27c0 {
  text-align: right;
}

.modal_white_27c0 .lite-b02a {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.video-north-6f38 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

.notification-020c {
  background: #e3f2fd;
  color: #1565c0;
}

.nav-soft-e227 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.hovered-21d3 {
  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);
}

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

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

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

.tag-black-a444 strong {
  color: var(--color-primary);
}

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

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

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

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

.card-fixed-5280 {
  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);
}

.card-fixed-5280:hover {
  background: var(--color-bg-alt);
}

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

.card-fixed-5280[aria-expanded="true"] .hovered_7eba {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.clean-b2c9,
.sort_121d {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.clean-b2c9 h4,
.sort_121d h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.clean-b2c9 ul,
.sort_121d ul {
  list-style: none;
  padding: 0;
}

.clean-b2c9 li,
.sort_121d li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.nav-29f0 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.background-df09 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.tiny-8ab8 {
  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);
}

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

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

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

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

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

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

/* Footer variant: footer-content (subpages) */
.iron-4b0f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.border-96f3 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.border-96f3 li {
  margin-bottom: var(--space-xs);
}

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

.border-96f3 a:hover {
  color: white;
}

.under-e640 {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.under-e640 a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid #424242;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.under-e640 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.description-ffe0 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.description-ffe0 a {
  color: #808080;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.description-ffe0 a:hover {
  color: white;
}

.over-4527 > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

@media (max-width: 768px) {
  .footer_af2f,
  .iron-4b0f {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.gold-c756 .outline_d541 {
  color: #4caf50;
  font-size: 0.875rem;
}

.gas-2c93 {
  list-style: none;
  padding: 0;
}

.gas-2c93 li {
  margin-bottom: var(--space-xs);
}

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

.gas-2c93 a:hover {
  color: white;
}

.secondary-fluid-b450 {
  list-style: none;
  padding: 0;
}

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

.secondary-fluid-b450 a {
  color: #b0b0b0;
  text-decoration: none;
}

.secondary-fluid-b450 a:hover {
  color: white;
}

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

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

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

.west-0f50 {
  font-size: 0.75rem;
  color: #666666;
}

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

.list-selected-92a2 a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.list-selected-92a2 a:hover {
  color: white;
}

/* Element selectors: survive CMS class obfuscation on deploy */
footer > div > div:last-child > div:last-child a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

footer > div > div:last-child > div:last-child a:hover {
  color: white;
}

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

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

@media (max-width: 768px) {
  .over-4527 {
    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;
  }
  
  .focused-ae00 {
    font-size: 2rem;
  }
  
  .hard-7a3b {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .aside_middle_33ad,
  .column-narrow-fff5 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .shadow_pressed_aa38,
  .section-ba84,
  .card_8971,
  .hovered-d410,
  .east_6e0f,
  .light-20bf,
  .over_15c4,
  .footer_af2f,
  .iron-4b0f {
    grid-template-columns: 1fr;
  }
  
  .border-left-8347 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .hero_6520 {
    padding: var(--space-lg) 0;
  }
  
  .text_light_32f2 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .text_light_32f2 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .warm-3fb8 {
    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;
  }
  
  .border-left-8347 {
    grid-template-columns: 1fr;
  }
  
  .tag-wood-d6a9,
  .mask_copper_fd2f,
  .component_892a {
    flex-direction: column;
    width: 100%;
  }
  
  .plasma_dbe9,
  .warm-f6ed,
  .tag-wood-d6a9 .warm-3fb8,
  .mask_copper_fd2f .warm-3fb8 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .focused-ae00 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .hard-7a3b {
    font-size: 1.375rem;
  }
  
  .tabs-south-a910 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .west_05dc,
  .panel-bright-1543,
  .accordion_4332,
  .widget-green-f966,
  .hidden-easy-8722 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .avatar_glass_5b08 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .title_bbb6 {
    gap: var(--space-xs);
  }
  
  .shadow-left-4639 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .disabled-right-f446 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .wrapper-upper-7614 {
    width: 150px;
    height: 150px;
  }
  
  .easy_adfc {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .heading_8bfd,
  .hover_752a,
  .tag-wood-d6a9,
  .accent_huge_7b93,
  .dropdown_63d8,
  .text_4689,
  .top-7990 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .hero_6520 {
    page-break-inside: avoid;
  }
}

/* css-noise: f0ab */
.ghost-box-d0 {
  padding: 0.5rem;
  font-size: 14px;
  line-height: 1.3;
}
