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

.tiny_0487:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.up-2898,
header,
.top_4e8f,
.gallery-prev-8bb1,
.thick_5ed9,
.disabled-upper-3835,
.link_lower_e9e2,
.gallery_active_7884,
.brown-d3bd {
  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
   ============================================ */
.up-2898 {
  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);
}

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

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

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

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

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

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

.table-39d8 {
  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;
}

.footer_plasma_9359 {
  flex: 1;
}

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

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

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

.form_8131.fn-active-ec03 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.block-short-03ed {
  position: relative;
}

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

.west-9e8d svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.tag_huge_a67e svg {
  flex-shrink: 0;
}

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

.avatar-9f0e: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);
}

.avatar-9f0e svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .footer_plasma_9359 {
    display: none;
  }
  
  .aside_46e3 {
    display: flex;
  }
  
  .table-39d8 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .tag_huge_a67e,
  .avatar-9f0e {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .block-short-03ed {
    position: relative;
  }
  
  .thumbnail_b4ac {
    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;
  }
  
  .west-9e8d[aria-expanded="true"] + .thumbnail_b4ac {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .wide_7768 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .tall_8a29 {
    gap: 8px;
  }
  
  .tag_huge_a67e {
    display: none;
  }
  
  .avatar-9f0e {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .active_5bf7 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .avatar-9f0e {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .avatar-9f0e svg {
    width: 14px;
    height: 14px;
  }
  
  .current-731a {
    gap: var(--space-sm);
  }
}

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

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

.bottom-535e {
  display: flex;
  align-items: center;
  gap: 6px;
}

.bottom-535e svg {
  flex-shrink: 0;
}

.bottom-535e a {
  color: var(--color-primary);
  text-decoration: none;
}

.bottom-535e a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.video-tiny-000c a {
  color: var(--color-primary);
  text-decoration: none;
}

.video-tiny-000c a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.feature_wide_9411 {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--color-primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

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

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

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

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

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

.banner-hot-43aa {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .accent-978f {
    grid-template-columns: 1fr;
  }
  
  .orange-302e {
    font-size: 1.75rem;
  }
  
  .background_short_0b4a {
    order: -1;
    max-width: 100%;
  }
  
  .banner-hot-43aa {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .orange-302e {
    font-size: 1.5rem;
  }
  
  .breadcrumb-7db1 {
    font-size: 1rem;
  }
  
  .video-tiny-000c {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .banner-hot-43aa {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.border-5b0f {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.west-2153 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;
}

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

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

.article-1fd9 {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.component_thick_3424 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) {
  .alert-short-069a {
    grid-template-columns: 1fr;
  }
  
  .article-4530 {
    font-size: 1.75rem;
  }
  
  .inner-a674 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .article-4530 {
    font-size: 1.5rem;
  }
  
  .inner-a674 h3 {
    font-size: 1.375rem;
  }
  
  .inner-a674 h4 {
    font-size: 1.125rem;
  }
}

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

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

.breadcrumb-lite-7ce3 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.lower_2c74 {
  flex-shrink: 0;
}

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

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

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

.info-hot-9114,
.block_9e00,
.alert-bd20 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.info-hot-9114 thead,
.block_9e00 thead {
  background: var(--color-primary);
  color: white;
}

.info-hot-9114 th,
.info-hot-9114 td,
.block_9e00 th,
.block_9e00 td,
.alert-bd20 th,
.alert-bd20 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .info-hot-9114 th,
  .info-hot-9114 td,
  .block_9e00 th,
  .block_9e00 td,
  .alert-bd20 th,
  .alert-bd20 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .info-hot-9114,
  .block_9e00,
  .alert-bd20 {
    min-width: 600px;
  }
}

.info-hot-9114 th,
.block_9e00 th,
.alert-bd20 th {
  font-weight: 600;
}

.info-hot-9114 tbody tr:hover,
.block_9e00 tbody tr:hover,
.alert-bd20 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.easy_b953 h4 {
  color: white;
}

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

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

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

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

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

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

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

.brown-a18a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.caption-5d10 {
  color: #4caf50;
}

.logo-2c55 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.accent-fresh-d748 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.badge_13ea .red_49a5 {
  width: 100%;
  background: white;
}

.block-last-c411 .red_49a5 {
  color: #667eea;
}

.content_clean_fb15 .red_49a5 {
  color: #f5576c;
}

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

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

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

.outer-3af9 {
  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);
}

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

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

@media (max-width: 768px) {
  .slider_right_aaa2 {
    padding: var(--space-md);
  }
  
  .block_702b {
    padding: var(--space-md);
  }
  
  .dirty-ef90 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.item_f27e,
.caption_selected_94f2,
.hidden-cold-c7f7,
.gradient-stale-e082 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.breadcrumb-8dd7 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

.mask-simple-c909 {
  border-color: var(--color-warning);
}

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

.mini_eed2 .row-1626 {
  background: #e8f5e9;
  color: var(--color-success);
}

.mask-simple-c909 .row-1626 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

.status-copper-699b {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

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

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

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

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

.lower_ce6f {
  text-align: center;
}

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

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

.under-9460 .basic_8046 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.tooltip-265d {
  margin-bottom: var(--space-xl);
}

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

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

.highlight-small-6416 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tooltip-fixed-6647 {
  text-align: right;
}

.tooltip-fixed-6647 .fast_5c48 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

.title-inner-9a64 {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

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

.primary-b0e2 {
  background: #e3f2fd;
  color: #1565c0;
}

.full-63b6 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

.layout-smooth-ef68 {
  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);
}

.layout-smooth-ef68:hover {
  background: var(--color-bg-alt);
}

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

.layout-smooth-ef68[aria-expanded="true"] .hovered-9629 {
  transform: rotate(180deg);
}

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

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

.layout-green-58f4 ul,
.layout-green-58f4 ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.layout-green-58f4 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.hard-b3e2,
.pagination-fast-5e08 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.hard-b3e2 h4,
.pagination-fast-5e08 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.hard-b3e2 ul,
.pagination-fast-5e08 ul {
  list-style: none;
  padding: 0;
}

.hard-b3e2 li,
.pagination-fast-5e08 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.main-north-fa84 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.static-b9c4 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.column-right-cec0 {
  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);
}

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

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

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

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

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

.primary-cold-932a {
  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) */
.heading-3070 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.paragraph_cold_6f02 {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

.paragraph_cold_6f02 a:hover {
  color: white;
}

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

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

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

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

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

.wood_f82f a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .primary-cold-932a,
  .heading-3070 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

.accent-static-2bcb {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.accent-static-2bcb .input_1325 {
  color: #4caf50;
  font-size: 0.875rem;
}

.preview-complex-d2f8 {
  list-style: none;
  padding: 0;
}

.preview-complex-d2f8 li {
  margin-bottom: var(--space-xs);
}

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

.preview-complex-d2f8 a:hover {
  color: white;
}

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

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

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

.background_next_9456 a:hover {
  color: white;
}

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

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

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

.bronze_537a {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

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

.main-ca3f:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .gallery-c8f8 {
    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;
  }
  
  .orange-302e {
    font-size: 2rem;
  }
  
  .article-4530 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .accent-978f,
  .alert-short-069a {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .footer_pressed_5bb1,
  .alert-d788,
  .bottom_2a00,
  .icon_west_5953,
  .active-799c,
  .description_pro_bbbe,
  .article-d1ec,
  .primary-cold-932a,
  .heading-3070 {
    grid-template-columns: 1fr;
  }
  
  .west-f109 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .link_lower_e9e2 {
    padding: var(--space-lg) 0;
  }
  
  .west-2153 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .west-2153 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .red_49a5 {
    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;
  }
  
  .west-f109 {
    grid-template-columns: 1fr;
  }
  
  .article_ec66,
  .simple_1c16,
  .warm-3173 {
    flex-direction: column;
    width: 100%;
  }
  
  .border-5b0f,
  .clean-f06a,
  .article_ec66 .red_49a5,
  .simple_1c16 .red_49a5 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .orange-302e {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .article-4530 {
    font-size: 1.375rem;
  }
  
  .wide-1ab6 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .list_new_deef,
  .wrapper_9f85,
  .disabled-green-d3dd,
  .under-360c,
  .backdrop-steel-62ca {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .slow_0271 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .black-06a3 {
    gap: var(--space-xs);
  }
  
  .bottom-535e {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .hidden_b3ad {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .under-9460 {
    width: 150px;
    height: 150px;
  }
  
  .description_warm_3b82 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .up-2898,
  .top_4e8f,
  .article_ec66,
  .header_action_c884,
  .gallery_active_7884,
  .brown-d3bd,
  .aside_46e3 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .link_lower_e9e2 {
    page-break-inside: avoid;
  }
}

/* css-noise: addb */
.shadow-element-c7 {
  padding: 0.2rem;
  font-size: 13px;
  line-height: 1.2;
}
