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

.carousel_mini_6123:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.red_5b3e,
header,
.texture-ef22,
.icon_left_901d,
.dropdown-under-a6bd,
.black_f28c,
.pagination_dynamic_4a25,
.component-8e0b,
.aside_motion_4ad7 {
  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
   ============================================ */
.red_5b3e {
  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);
}

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

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

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

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

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

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

.pressed-3cf1 {
  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;
}

.west-95cc {
  flex: 1;
}

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

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

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

.banner-bddc.fn-active-46a5 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.smooth-391a {
  position: relative;
}

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

.main-iron-c2bb svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.smooth_91b2 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.notification_orange_c1fb[aria-expanded="true"] .under-68b5:nth-child(2) {
  opacity: 0;
}

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

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

  .west-95cc::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .west-95cc.static-906f {
    display: block;
    right: 0;
  }
  
  .wrapper-fast-106c {
    flex-direction: column;
    gap: 0;
  }
  
  .banner-bddc {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .west-95cc::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;
  }
  
  .west-95cc.static-906f::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .west-95cc {
    display: none;
  }
  
  .notification_orange_c1fb {
    display: flex;
  }
  
  .pressed-3cf1 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .smooth_91b2,
  .description_down_269d {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .smooth-391a {
    position: relative;
  }
  
  .tabs-0436 {
    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;
  }
  
  .main-iron-c2bb[aria-expanded="true"] + .tabs-0436 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .liquid_3527 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

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

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

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

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

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

.block_a86e svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.message-dim-06cb {
  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;
}

.table-bronze-6396 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.table-bronze-6396 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

.widget-mini-62cc {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

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

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

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

@media (max-width: 968px) {
  .module-09b1 {
    grid-template-columns: 1fr;
  }
  
  .up_d504 {
    font-size: 1.75rem;
  }
  
  .over-e602 {
    order: -1;
    max-width: 100%;
  }
  
  .solid_82bd {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .up_d504 {
    font-size: 1.5rem;
  }
  
  .video_orange_d118 {
    font-size: 1rem;
  }
  
  .stale_0509 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .solid_82bd {
    max-width: 250px;
  }
}

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

.tag-green-aa7a {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.accent-lite-eaa7 {
  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);
}

.pattern-cool-6b1c {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

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

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

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

.narrow_27e2 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_27e2 h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-text);
}

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

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

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

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

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

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

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

.white-47b6 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.white-47b6 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) {
  .over_dc43 {
    grid-template-columns: 1fr;
  }
  
  .accent-lite-eaa7 {
    font-size: 1.75rem;
  }
  
  .narrow_27e2 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .accent-lite-eaa7 {
    font-size: 1.5rem;
  }
  
  .narrow_27e2 h3 {
    font-size: 1.375rem;
  }
  
  .narrow_27e2 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.breadcrumb_3110 {
  flex-shrink: 0;
}

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

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

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

.bronze-88f8,
.east-22ac,
.detail_up_a5d5 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.bronze-88f8 thead,
.east-22ac thead {
  background: var(--color-primary);
  color: white;
}

.bronze-88f8 th,
.bronze-88f8 td,
.east-22ac th,
.east-22ac td,
.detail_up_a5d5 th,
.detail_up_a5d5 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .bronze-88f8 th,
  .bronze-88f8 td,
  .east-22ac th,
  .east-22ac td,
  .detail_up_a5d5 th,
  .detail_up_a5d5 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .bronze-88f8,
  .east-22ac,
  .detail_up_a5d5 {
    min-width: 600px;
  }
}

.bronze-88f8 th,
.east-22ac th,
.detail_up_a5d5 th {
  font-weight: 600;
}

.bronze-88f8 tbody tr:hover,
.east-22ac tbody tr:hover,
.detail_up_a5d5 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.logo_light_cc8f h4 {
  color: white;
}

.thumbnail-down-7db1 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

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

.header-right-0d61 {
  font-weight: 600;
  color: white;
}

.item-30f2 {
  list-style: none;
  padding: 0;
}

.item-30f2 li {
  padding: var(--space-xs) 0;
}

.backdrop_warm_51f5 {
  color: #4caf50;
}

.fast_b477 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.complex-44fd {
  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;
}

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

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

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

.header-right-0d61 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

.pagination-glass-e2ed {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.fast_7102 .element-b2a5 {
  width: 100%;
  background: white;
}

.menu-8161 .element-b2a5 {
  color: #667eea;
}

.preview_3891 .element-b2a5 {
  color: #f5576c;
}

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

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

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

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

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

.large-820a {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .module_4de5 {
    padding: var(--space-md);
  }
  
  .large-820a {
    padding: var(--space-md);
  }
  
  .filter-b1d4 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.in_7acd,
.secondary-simple-71bb,
.stone-9488,
.texture-135e {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.grid-lower-9bf0 {
  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-lower-9bf0 {
    font-size: 0.625rem;
  }
}

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

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

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

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

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

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

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

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

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

.plasma-8ab7 {
  border-color: var(--color-success);
}

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

.upper-5e11 {
  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);
}

.plasma-8ab7 .upper-5e11 {
  background: #e8f5e9;
  color: var(--color-success);
}

.list_upper_9d8b .upper-5e11 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.gas-6a4c {
  margin-top: var(--space-xxl);
}

.surface-174b {
  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);
}

.medium-1f28 {
  text-align: center;
}

.modal-6ec7 {
  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);
}

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

.modal-6ec7 .header-right-0d61 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

.form-stale-9f4c {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

.section-tiny-341a {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

.avatar-4c72 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.table-7386 {
  text-align: right;
}

.table-7386 .bronze-2bda {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.action-db49 {
  background: #e3f2fd;
  color: #1565c0;
}

.container-7fbb {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.main-044e strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

.widget_static_2244[aria-expanded="true"] .module_first_33da {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.west_65ad h4,
.new_28d1 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.west_65ad ul,
.new_28d1 ul {
  list-style: none;
  padding: 0;
}

.west_65ad li,
.new_28d1 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.orange-bad8 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.header_bright_705d {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cold-ce72 a:hover {
  color: white;
}

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

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

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

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

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

.surface_c9a5 a:hover {
  color: white;
}

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

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

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

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

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

.new_9745 .component-b572 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.liquid_b28d a:hover {
  color: white;
}

.grid-5896 {
  list-style: none;
  padding: 0;
}

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

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

.grid-5896 a:hover {
  color: white;
}

.glass-34c1 {
  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);
}

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

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

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

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

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

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

.mask-simple-9fef {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.mask-simple-9fef:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .glass-34c1 {
    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;
  }
  
  .up_d504 {
    font-size: 2rem;
  }
  
  .accent-lite-eaa7 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .module-09b1,
  .over_dc43 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .paper-6316,
  .element-lower-b657,
  .card-upper-a656,
  .brown-0f54,
  .badge-116b,
  .accordion-a15c,
  .fresh-9eea,
  .surface_cold_5939,
  .notification_82ba {
    grid-template-columns: 1fr;
  }
  
  .last_34a7 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .pagination_dynamic_4a25 {
    padding: var(--space-lg) 0;
  }
  
  .stale_4008 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .stale_4008 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .element-b2a5 {
    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;
  }
  
  .last_34a7 {
    grid-template-columns: 1fr;
  }
  
  .over_e026,
  .fast-f744,
  .sort-9435 {
    flex-direction: column;
    width: 100%;
  }
  
  .silver_f033,
  .shadow-eae5,
  .over_e026 .element-b2a5,
  .fast-f744 .element-b2a5 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .up_d504 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .accent-lite-eaa7 {
    font-size: 1.375rem;
  }
  
  .label_prev_96bc {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .card_bronze_9bfc,
  .photo-aa97,
  .element_easy_1128,
  .feature_old_7552,
  .tertiary_5964 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .grid-lower-9bf0 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .pro_dfbe {
    gap: var(--space-xs);
  }
  
  .block_a86e {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .full_cc39 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .modal-6ec7 {
    width: 150px;
    height: 150px;
  }
  
  .active_59d2 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .red_5b3e,
  .texture-ef22,
  .over_e026,
  .narrow_9643,
  .component-8e0b,
  .aside_motion_4ad7,
  .notification_orange_c1fb {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .pagination_dynamic_4a25 {
    page-break-inside: avoid;
  }
}

/* css-noise: 3ca2 */
.ghost-box-x4 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.0;
}
