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

.smooth-0a9c:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container.
   html/body are excluded on purpose: releasing their max-width removes the
   last guard against a horizontally scrollable page. */
.button_mini_e3fc,
header,
.fast-6941,
.blue-6eb2,
.message_action_17e5,
.icon_a104,
.detail-2fbb,
.module_orange_41ce,
.texture-focused-25ba {
  max-width: none;
}

/* overflow-x stays off <html>: pairing it with body's hidden turns <html>
   into its own scroll container and breaks the sticky header. */
html,
body {
  width: 100%;
  max-width: 100%;
}

/* Critical mobile fix: prevent any overflow */
section,
article,
div,
main {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Ensure images never cause overflow */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure SVG icons don't cause issues */
svg {
  max-width: 100%;
  height: auto;
}

/* ============================================
   4. HEADER & NAVIGATION
   ============================================ */
.button_mini_e3fc {
  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);
}

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

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

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

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

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

.tiny-bf88 img {
  height: 36px;
  width: auto;
  display: block;
}

.accent-first-0ba8 {
  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;
}

.link_2848 {
  flex: 1;
}

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

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

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

.action_1884.pro-06f8 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.grid-4c78 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

.heading-inner-4d5d {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.label-90a3 svg {
  flex-shrink: 0;
}

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

.short-062d: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);
}

.short-062d svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .link_2848 {
    display: none;
  }
  
  .current_e33f {
    display: flex;
  }
  
  .accent-first-0ba8 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .label-90a3,
  .short-062d {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .grid-4c78 {
    position: relative;
  }
  
  .yellow_3bcc {
    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;
  }
  
  .stone_44ae[aria-expanded="true"] + .yellow_3bcc {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .hovered-e208 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .heading-inner-4d5d {
    gap: 8px;
  }
  
  .label-90a3 {
    display: none;
  }
  
  .short-062d {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .tiny-bf88 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.text-a6c0 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tertiary-gas-1fa3 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .sidebar_orange_6e37 {
    grid-template-columns: 1fr;
  }
  
  .under_c80d {
    font-size: 1.75rem;
  }
  
  .simple_d473 {
    order: -1;
    max-width: 100%;
  }
  
  .tertiary-gas-1fa3 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .under_c80d {
    font-size: 1.5rem;
  }
  
  .picture-static-f0cf {
    font-size: 1rem;
  }
  
  .button_small_9ae1 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .tertiary-gas-1fa3 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.menu-gold-1d22 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

.row-next-52bb:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

.box-7bc4 {
  list-style: none;
  counter-reset: toc-counter;
}

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

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

.box-7bc4 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;
}

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

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

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

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

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

.icon-south-bd7d {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.focus_1bba 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) {
  .summary_first_d9d4 {
    grid-template-columns: 1fr;
  }
  
  .icon-south-bd7d {
    font-size: 1.75rem;
  }
  
  .summary_blue_c062 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .icon-south-bd7d {
    font-size: 1.5rem;
  }
  
  .summary_blue_c062 h3 {
    font-size: 1.375rem;
  }
  
  .summary_blue_c062 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.primary_narrow_e4fd {
  flex-shrink: 0;
}

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

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

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

.outline-active-a5e9,
.accordion-yellow-1b22,
.silver_d1bc {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.outline-active-a5e9 thead,
.accordion-yellow-1b22 thead {
  background: var(--color-primary);
  color: white;
}

.outline-active-a5e9 th,
.outline-active-a5e9 td,
.accordion-yellow-1b22 th,
.accordion-yellow-1b22 td,
.silver_d1bc th,
.silver_d1bc td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .outline-active-a5e9 th,
  .outline-active-a5e9 td,
  .accordion-yellow-1b22 th,
  .accordion-yellow-1b22 td,
  .silver_d1bc th,
  .silver_d1bc td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .outline-active-a5e9,
  .accordion-yellow-1b22,
  .silver_d1bc {
    min-width: 600px;
  }
}

.outline-active-a5e9 th,
.accordion-yellow-1b22 th,
.silver_d1bc th {
  font-weight: 600;
}

.outline-active-a5e9 tbody tr:hover,
.accordion-yellow-1b22 tbody tr:hover,
.silver_d1bc tbody tr:hover {
  background: var(--color-bg-alt);
}

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

/* ============================================
   14. SIDEBAR
   ============================================ */
.banner-hard-66ce {
  position: sticky;
  top: 80px;
  align-self: start;
}

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

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

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

.breadcrumb_40e1 h4 {
  color: white;
}

.detail-bronze-3da5 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

.media-hot-9ec4:hover {
  text-decoration: underline;
}

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

.highlight-east-76ba {
  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);
}

.highlight-east-76ba span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.bright-a8e5 {
  font-weight: 600;
  color: white;
}

.liquid-80f3 {
  list-style: none;
  padding: 0;
}

.liquid-80f3 li {
  padding: var(--space-xs) 0;
}

.popup-blue-8072 {
  color: #4caf50;
}

.cold-0302 {
  color: #ff9800;
}

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

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

.background-fluid-6ef6 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.box-c08e .first_614e {
  width: 100%;
  background: white;
}

.link-tall-d8b0 .first_614e {
  color: #667eea;
}

.center-245f .first_614e {
  color: #f5576c;
}

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

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

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

.heading-paper-4cb7 {
  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);
}

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

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

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

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

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

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

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

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

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

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

.pro-8b64,
.north-4504,
.breadcrumb_stone_04fa,
.menu-b996 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.list-focused-df55:hover {
  background: var(--color-primary-dark);
}

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

.bronze-1a6a h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.content-64ea {
  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);
}

.lower_64fb .content-64ea {
  background: #e8f5e9;
  color: var(--color-success);
}

.tag_0b08 .content-64ea {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.logo-78e3 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.highlight-fixed-af30 {
  margin-top: var(--space-xxl);
}

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

.focused_31a7 {
  text-align: center;
}

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

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

.accordion_6236 .bright-a8e5 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.element-iron-88b6 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.shade-5ea1 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.avatar-9d8c {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.form-hard-f040 {
  border: 2px solid #4caf50;
}

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

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

.layout-fixed-68dd {
  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;
}

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

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

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

.modal_92fe {
  text-align: right;
}

.modal_92fe .slider-stale-2c2a {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

.fixed-1fcf {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

.text-copper-0719 {
  background: #e8f5e9;
  color: #2e7d32;
}

.paragraph-advanced-8f9e {
  background: #e3f2fd;
  color: #1565c0;
}

.detail-large-403f {
  background: #fff3e0;
  color: #e65100;
}

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

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

.feature-green-c93c {
  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);
}

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

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

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

.dirty-79b4 strong {
  color: var(--color-primary);
}

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

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

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

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

.notice-ff6b {
  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-ff6b:hover {
  background: var(--color-bg-alt);
}

.hero-liquid-66a0 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.notice-ff6b[aria-expanded="true"] .hero-liquid-66a0 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.layout-in-61d5 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

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

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

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

.dynamic-5f83,
.small_0e86 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.dynamic-5f83 h4,
.small_0e86 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.dynamic-5f83 ul,
.small_0e86 ul {
  list-style: none;
  padding: 0;
}

.dynamic-5f83 li,
.small_0e86 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.grid-105c ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.focused-f833 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cold_342d .glass_811b {
  color: #4caf50;
  font-size: 0.875rem;
}

.mask-fast-8782 {
  list-style: none;
  padding: 0;
}

.mask-fast-8782 li {
  margin-bottom: var(--space-xs);
}

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

.mask-fast-8782 a:hover {
  color: white;
}

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

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

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

.shadow_in_f54f a:hover {
  color: white;
}

.white-3a8e {
  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);
}

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

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

.dropdown-84da {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.row-copper-f243:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .white-3a8e {
    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;
  }
  
  .under_c80d {
    font-size: 2rem;
  }
  
  .icon-south-bd7d {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .sidebar_orange_6e37,
  .summary_first_d9d4 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .small_8931,
  .wrapper_down_3f88,
  .content_9e12,
  .breadcrumb_a04a,
  .huge_807a,
  .accent_05ed,
  .iron_c9f2,
  .complex-ff18 {
    grid-template-columns: 1fr;
  }
  
  .notice-slow-41ea {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .detail-2fbb {
    padding: var(--space-lg) 0;
  }
  
  .box-7bc4 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .box-7bc4 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .first_614e {
    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;
  }
  
  .notice-slow-41ea {
    grid-template-columns: 1fr;
  }
  
  .box_2fba,
  .background-f55b,
  .outline-bottom-5d87 {
    flex-direction: column;
    width: 100%;
  }
  
  .menu-gold-1d22,
  .sidebar_up_1926,
  .box_2fba .first_614e,
  .background-f55b .first_614e {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .under_c80d {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .icon-south-bd7d {
    font-size: 1.375rem;
  }
  
  .texture_d060 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .row-next-52bb,
  .first-c7f0,
  .progress-complex-7f30,
  .focused-50eb,
  .box_hovered_de4c {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .paper_8bcd {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .section_solid_c6bf {
    gap: var(--space-xs);
  }
  
  .text-a6c0 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .highlight-east-76ba {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .accordion_6236 {
    width: 150px;
    height: 150px;
  }
  
  .card_orange_113b {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .button_mini_e3fc,
  .fast-6941,
  .box_2fba,
  .background_light_12d1,
  .module_orange_41ce,
  .texture-focused-25ba,
  .current_e33f {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .detail-2fbb {
    page-break-inside: avoid;
  }
}

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

/* css-noise: e41e */
.shadow-element-e8 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.2;
}
