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

.outline-a179:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.avatar_c1dd,
header,
.status_south_0440,
.modal_gold_2286,
.pattern-1475,
.active_b75f,
.complex-3a91,
.pagination-pink-17fd,
.bottom-79d8 {
  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
   ============================================ */
.avatar_c1dd {
  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);
}

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

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

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

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

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

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

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

.caption-fddc {
  flex: 1;
}

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

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

.solid-9fc7:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.solid-9fc7.fn-active-fdc4 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.component-large-d901 {
  position: relative;
}

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

.video-hard-1410 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.item_soft_eb4b svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .caption-fddc {
    display: none;
  }
  
  .action_82da {
    display: flex;
  }
  
  .widget_dim_243c {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .item_soft_eb4b,
  .outline_purple_b6c3 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .component-large-d901 {
    position: relative;
  }
  
  .top_0674 {
    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;
  }
  
  .video-hard-1410[aria-expanded="true"] + .top_0674 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .paper_a3e2 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

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

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

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

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

.grid-purple-d6b0 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.grid-purple-d6b0 svg {
  flex-shrink: 0;
}

.grid-purple-d6b0 a {
  color: var(--color-primary);
  text-decoration: none;
}

.grid-purple-d6b0 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.element-middle-c740 a {
  color: var(--color-primary);
  text-decoration: none;
}

.element-middle-c740 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .hover_inner_3052 {
    grid-template-columns: 1fr;
  }
  
  .dropdown_759c {
    font-size: 1.75rem;
  }
  
  .orange_f86c {
    order: -1;
    max-width: 100%;
  }
  
  .notice_cold_2892 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .dropdown_759c {
    font-size: 1.5rem;
  }
  
  .tabs_over_3b94 {
    font-size: 1rem;
  }
  
  .element-middle-c740 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .notice_cold_2892 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

.steel-e106 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

.footer-light-142d {
  list-style: none;
  counter-reset: toc-counter;
}

.footer-light-142d li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.footer-light-142d 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);
}

.footer-light-142d 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;
}

.footer-light-142d li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

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

.frame-73a2 {
  background: var(--color-bg-section);
}

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

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

.tag-16a7 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.glass_7015 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) {
  .gradient-241d {
    grid-template-columns: 1fr;
  }
  
  .tag-16a7 {
    font-size: 1.75rem;
  }
  
  .accordion_new_aa63 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .tag-16a7 {
    font-size: 1.5rem;
  }
  
  .accordion_new_aa63 h3 {
    font-size: 1.375rem;
  }
  
  .accordion_new_aa63 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.top_788c {
  flex-shrink: 0;
}

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

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

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

.hard-db39,
.outline_c8ae,
.tooltip-16f4 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.hard-db39 thead,
.outline_c8ae thead {
  background: var(--color-primary);
  color: white;
}

.hard-db39 th,
.hard-db39 td,
.outline_c8ae th,
.outline_c8ae td,
.tooltip-16f4 th,
.tooltip-16f4 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hard-db39 th,
  .hard-db39 td,
  .outline_c8ae th,
  .outline_c8ae td,
  .tooltip-16f4 th,
  .tooltip-16f4 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .hard-db39,
  .outline_c8ae,
  .tooltip-16f4 {
    min-width: 600px;
  }
}

.hard-db39 th,
.outline_c8ae th,
.tooltip-16f4 th {
  font-weight: 600;
}

.hard-db39 tbody tr:hover,
.outline_c8ae tbody tr:hover,
.tooltip-16f4 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.preview_iron_7aed h4 {
  color: white;
}

.feature-active-4d38 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

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

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

.picture-2176 {
  list-style: none;
  padding: 0;
}

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

.blue_5d5b {
  color: #4caf50;
}

.breadcrumb_down_d760 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tag_e2b4 .center_35c9 {
  width: 100%;
  background: white;
}

.wide_0426 .center_35c9 {
  color: #667eea;
}

.text_e4be .center_35c9 {
  color: #f5576c;
}

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

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

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

.list-cool-3a40 {
  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);
}

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

.summary-hard-b8a5 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .purple_931d {
    padding: var(--space-md);
  }
  
  .summary-hard-b8a5 {
    padding: var(--space-md);
  }
  
  .steel-0f9c {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.filter_8221,
.primary_5a1f,
.hidden-a429,
.section-26da {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.element-bright-5b4a {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.slider_purple_6e44 {
  display: block;
  padding: var(--space-sm);
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
  overflow-wrap: break-word;
  margin: var(--space-sm) 0;
}

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

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

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

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

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

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

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

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

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

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

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

.mini-56d0 {
  border-color: var(--color-warning);
}

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

.bright_32d5 .notification_next_6d91 {
  background: #e8f5e9;
  color: var(--color-success);
}

.mini-56d0 .notification_next_6d91 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.gallery_selected_5c43 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.hover-a6c3 {
  text-align: center;
}

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

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

.table_upper_e071 .smooth_283d {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.outline-wood-1aa9 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

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

.column-short-3bf7 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

.tertiary-action-7126 {
  color: var(--color-text-light);
}

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

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

.photo-cool-90ae {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

.carousel-small-548d {
  text-align: right;
}

.carousel-small-548d .backdrop-ae43 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.highlight-up-839d {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

.badge-bottom-3f9f {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

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

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

.notice-e31e {
  background: #fff3e0;
  color: #e65100;
}

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

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

.panel-steel-6551 {
  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);
}

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

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

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

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

.logo-easy-4f8e {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

.notice-4bbe {
  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);
}

.notice-4bbe:hover {
  background: var(--color-bg-alt);
}

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

.notice-4bbe[aria-expanded="true"] .component_0e5d {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.avatar_fresh_88d5,
.panel-1be9 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.avatar_fresh_88d5 h4,
.panel-1be9 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.avatar_fresh_88d5 ul,
.panel-1be9 ul {
  list-style: none;
  padding: 0;
}

.avatar_fresh_88d5 li,
.panel-1be9 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.feature-static-dfa8 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.paper-24be {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

.silver-37f8 {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

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

.tag-right-eaa3 {
  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) */
.complex_9c53 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.orange-99ee {
  list-style: none;
  padding: 0;
  margin: 0;
}

.orange-99ee li {
  margin-bottom: var(--space-xs);
}

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

.orange-99ee a:hover {
  color: white;
}

.gallery-54be {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.gallery-54be 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);
}

.gallery-54be a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.tiny-0fca {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.tiny-0fca a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .tag-right-eaa3,
  .complex_9c53 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.tabs_pressed_a213 .aside_0159 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.secondary_b7dd a:hover {
  color: white;
}

.tag-03fa {
  list-style: none;
  padding: 0;
}

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

.tag-03fa a {
  color: #b0b0b0;
  text-decoration: none;
}

.tag-03fa a:hover {
  color: white;
}

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

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

.container-75f9 a {
  color: #4caf50;
  text-decoration: none;
}

.media-992d {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

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

.slider-5821:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .tiny_3b65 {
    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;
  }
  
  .dropdown_759c {
    font-size: 2rem;
  }
  
  .tag-16a7 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .hover_inner_3052,
  .gradient-241d {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .widget-pink-b9db,
  .next_305f,
  .aside-41aa,
  .iron_d780,
  .green_f144,
  .over_c4d4,
  .active_8409,
  .tag-right-eaa3,
  .complex_9c53 {
    grid-template-columns: 1fr;
  }
  
  .focused-4878 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .complex-3a91 {
    padding: var(--space-lg) 0;
  }
  
  .footer-light-142d li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .footer-light-142d li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .center_35c9 {
    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;
  }
  
  .focused-4878 {
    grid-template-columns: 1fr;
  }
  
  .dim-d6af,
  .detail_stone_4dca,
  .module-031d {
    flex-direction: column;
    width: 100%;
  }
  
  .tabs-dfe5,
  .steel-e106,
  .dim-d6af .center_35c9,
  .detail_stone_4dca .center_35c9 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .dropdown_759c {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .tag-16a7 {
    font-size: 1.375rem;
  }
  
  .frame_4571 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .medium_f2a2,
  .sort-2a5d,
  .focused_4d34,
  .summary_0331,
  .dynamic-5b3c {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .slider_purple_6e44 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .summary-ef82 {
    gap: var(--space-xs);
  }
  
  .grid-purple-d6b0 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .out_acf6 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .table_upper_e071 {
    width: 150px;
    height: 150px;
  }
  
  .hover-gold-2019 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .avatar_c1dd,
  .status_south_0440,
  .dim-d6af,
  .under_e769,
  .pagination-pink-17fd,
  .bottom-79d8,
  .action_82da {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .complex-3a91 {
    page-break-inside: avoid;
  }
}

/* css-noise: d5bb */
.ghost-box-b1 {
  padding: 0.4rem;
  font-size: 12px;
  line-height: 1.1;
}
