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

.picture_dark_9126:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.button-light-a93e,
header,
.border_dirty_54a8,
.photo_light_df95,
.block-fcc1,
.fast-ce43,
.blue-9a8f,
.pro-a7cb,
.logo_6f58 {
  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
   ============================================ */
.button-light-a93e {
  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);
}

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

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

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

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

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

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

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

.item_1a75 {
  flex: 1;
}

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

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

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

.mask-f7b4.fn-active-615b {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.inner_16c0 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

.menu-west-8e8d {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.fixed_34bc svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.box-red-8f72[aria-expanded="true"] .hard-b964:nth-child(2) {
  opacity: 0;
}

.box-red-8f72[aria-expanded="true"] .hard-b964:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .item_1a75 {
    display: none;
  }
  
  .box-red-8f72 {
    display: flex;
  }
  
  .short_95a0 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .fixed_34bc,
  .brown_86ee {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .inner_16c0 {
    position: relative;
  }
  
  .banner_stale_cb09 {
    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;
  }
  
  .accordion_becb[aria-expanded="true"] + .banner_stale_cb09 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .fast-402f {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .menu-west-8e8d {
    gap: 8px;
  }
  
  .fixed_34bc {
    display: none;
  }
  
  .brown_86ee {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .chip_light_0999 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.pattern_9ec6 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.hero-c1e4 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.modal-bronze-2a09 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .heading-f03d {
    grid-template-columns: 1fr;
  }
  
  .container-60f3 {
    font-size: 1.75rem;
  }
  
  .hard_0ec3 {
    order: -1;
    max-width: 100%;
  }
  
  .element_focused_957a {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .container-60f3 {
    font-size: 1.5rem;
  }
  
  .first_cc09 {
    font-size: 1rem;
  }
  
  .hero-c1e4 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .element_focused_957a {
    max-width: 250px;
  }
}

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

.form-0bba {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hidden-dedc 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) {
  .menu-be18 {
    grid-template-columns: 1fr;
  }
  
  .simple_6ed0 {
    font-size: 1.75rem;
  }
  
  .narrow_9f07 {
    max-width: 100%;
  }
}

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

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

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

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

.advanced-98dc {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.motion_4ead {
  flex-shrink: 0;
}

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

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

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

.table-plasma-d164,
.purple-fd0d,
.bottom_dab5 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.table-plasma-d164 thead,
.purple-fd0d thead {
  background: var(--color-primary);
  color: white;
}

.table-plasma-d164 th,
.table-plasma-d164 td,
.purple-fd0d th,
.purple-fd0d td,
.bottom_dab5 th,
.bottom_dab5 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .table-plasma-d164 th,
  .table-plasma-d164 td,
  .purple-fd0d th,
  .purple-fd0d td,
  .bottom_dab5 th,
  .bottom_dab5 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .table-plasma-d164,
  .purple-fd0d,
  .bottom_dab5 {
    min-width: 600px;
  }
}

.table-plasma-d164 th,
.purple-fd0d th,
.bottom_dab5 th {
  font-weight: 600;
}

.table-plasma-d164 tbody tr:hover,
.purple-fd0d tbody tr:hover,
.bottom_dab5 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.filter-orange-2014 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hover-large-d706 {
  color: #4caf50;
}

.alert_28d1 {
  color: #ff9800;
}

.video-simple-0cfd {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.info_2e4b .box_7d78 {
  width: 100%;
  background: white;
}

.modal-solid-3a72 .box_7d78 {
  color: #667eea;
}

.short-2d37 .box_7d78 {
  color: #f5576c;
}

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

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

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

.shadow-blue-0d1a {
  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);
}

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

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

@media (max-width: 768px) {
  .footer_hard_929c {
    padding: var(--space-md);
  }
  
  .pressed-c7d8 {
    padding: var(--space-md);
  }
  
  .shade-outer-5a06 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

.shade-outer-5a06 {
  margin-top: var(--space-lg);
  text-align: center;
}

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

.fluid-67e9,
.card-motion-40ec,
.hero-dba0,
.progress-6317 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .header-current-692d {
    grid-template-columns: 1fr;
  }
}

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

.focus-left-9100 {
  border-color: var(--color-success);
}

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

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

.focus-left-9100 .fixed-3337 {
  background: #e8f5e9;
  color: var(--color-success);
}

.old-2629 .fixed-3337 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.shadow-full-62c3 {
  margin-top: var(--space-xxl);
}

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

.detail-7c1e {
  text-align: center;
}

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

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

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

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

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

.active-down-9f8f {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

.media-bronze-b2e2 {
  margin-bottom: var(--space-xl);
}

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

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

.column-up-d669 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.medium-e15b {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.search-right-5322 {
  text-align: right;
}

.search-right-5322 .shadow_b53c {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.texture-57c2 {
  background: #e8f5e9;
  color: #2e7d32;
}

.badge-f17b {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

.gallery-easy-888e {
  padding: 6px 12px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

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

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

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

.status-lite-ddf5 strong {
  color: var(--color-primary);
}

.input-cold-93b4 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

.banner_pressed_99f1[aria-expanded="true"] .disabled-6500 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

.search-ae60,
.focus-077c {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.search-ae60 h4,
.focus-077c h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.search-ae60 ul,
.focus-077c ul {
  list-style: none;
  padding: 0;
}

.search-ae60 li,
.focus-077c li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.tabs-77bb {
  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);
}

.highlight_middle_cd78 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

.shade-focused-22be {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

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

.smooth-1c5d {
  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) */
.module-inner-751f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.accordion-simple-98ff {
  list-style: none;
  padding: 0;
  margin: 0;
}

.accordion-simple-98ff li {
  margin-bottom: var(--space-xs);
}

.accordion-simple-98ff a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.accordion-simple-98ff a:hover {
  color: white;
}

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

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

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

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

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

.secondary_da68 a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .smooth-1c5d,
  .module-inner-751f {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.popup_bottom_c81f .footer_in_4bd1 {
  color: #4caf50;
  font-size: 0.875rem;
}

.next-6aa2 {
  list-style: none;
  padding: 0;
}

.next-6aa2 li {
  margin-bottom: var(--space-xs);
}

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

.next-6aa2 a:hover {
  color: white;
}

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

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

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

.button_hot_baf5 a:hover {
  color: white;
}

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

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

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

.media-dynamic-4ba0 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.over-47f8 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;
}

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

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

@media (max-width: 768px) {
  .lower_0e17 {
    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;
  }
  
  .container-60f3 {
    font-size: 2rem;
  }
  
  .simple_6ed0 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .heading-f03d,
  .menu-be18 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .nav-bright-9939,
  .header-current-692d,
  .blue_6829,
  .aside_825b,
  .article_center_3f30,
  .backdrop_in_f58e,
  .gallery-thick-bf7b,
  .smooth-1c5d,
  .module-inner-751f {
    grid-template-columns: 1fr;
  }
  
  .element-f4cb {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .blue-9a8f {
    padding: var(--space-lg) 0;
  }
  
  .fast_2cdc li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .fast_2cdc li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .box_7d78 {
    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;
  }
  
  .element-f4cb {
    grid-template-columns: 1fr;
  }
  
  .highlight_246d,
  .texture_brown_22f6,
  .dim_d1d6 {
    flex-direction: column;
    width: 100%;
  }
  
  .chip_rough_63fd,
  .aside_glass_59e2,
  .highlight_246d .box_7d78,
  .texture_brown_22f6 .box_7d78 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .container-60f3 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .simple_6ed0 {
    font-size: 1.375rem;
  }
  
  .mini_ffec {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .green_0d29,
  .gradient_light_d5d4,
  .up_139b,
  .button_8048,
  .title_f7bc {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .grid-soft-c459 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .aside-36e1 {
    gap: var(--space-xs);
  }
  
  .pattern_9ec6 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .notice_west_84d5 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .feature_710e {
    width: 150px;
    height: 150px;
  }
  
  .bright-1978 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .button-light-a93e,
  .border_dirty_54a8,
  .highlight_246d,
  .dynamic_04c4,
  .pro-a7cb,
  .logo_6f58,
  .box-red-8f72 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .blue-9a8f {
    page-break-inside: avoid;
  }
}

/* css-noise: 6c90 */
.ghost-box-d1 {
  padding: 0.2rem;
  font-size: 14px;
  line-height: 1.3;
}
