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

.advanced_c20b:focus {
  top: 0;
}

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

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

@media (max-width: 480px) {
  .texture-bottom-7b94 {
    padding: 0 12px;
  }
}

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

/* Allow specific elements to exceed container */
html,
body,
.nav-narrow-f850,
header,
.picture_cac8,
.card_2538,
.tooltip_green_fcaa,
.widget-red-6aca,
.avatar-plasma-5ee9,
.title_a7ed,
.outline-bottom-0889 {
  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
   ============================================ */
.nav-narrow-f850 {
  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);
}

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

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

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

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

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

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

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

.out_c5da {
  flex: 1;
}

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

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

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

.north-0593.fn-active-8434 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

.widget-small-984e {
  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;
}

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

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

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

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

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

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

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

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

.active_b141 svg {
  flex-shrink: 0;
}

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

.south-468d: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);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .out_c5da {
    display: none;
  }
  
  .active_33cd {
    display: flex;
  }
  
  .brown_8394 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .active_b141,
  .south-468d {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .north_18ef {
    position: relative;
  }
  
  .widget-small-984e {
    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;
  }
  
  .mask_west_129f[aria-expanded="true"] + .widget-small-984e {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .progress-rough-0cff {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .gallery_active_8e5a {
    gap: 8px;
  }
  
  .active_b141 {
    display: none;
  }
  
  .south-468d {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .footer_under_e40c img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .south-468d {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .south-468d svg {
    width: 14px;
    height: 14px;
  }
  
  .logo-fresh-a71d {
    gap: var(--space-sm);
  }
}

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

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

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

.gas-2960 svg {
  flex-shrink: 0;
}

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

.gas-2960 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.notice-middle-33d8 a {
  color: var(--color-primary);
  text-decoration: none;
}

.notice-middle-33d8 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.dropdown-new-63aa {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

.tiny-5ee6 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.logo-west-a63f {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

.photo-motion-151d {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .heading-1c4d {
    grid-template-columns: 1fr;
  }
  
  .background-middle-c004 {
    font-size: 1.75rem;
  }
  
  .next_157d {
    order: -1;
    max-width: 100%;
  }
  
  .logo-west-a63f {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .background-middle-c004 {
    font-size: 1.5rem;
  }
  
  .label-north-0602 {
    font-size: 1rem;
  }
  
  .notice-middle-33d8 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .logo-west-a63f {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

.media-hard-3163 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

.tabs-clean-0165 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.tabs-clean-0165 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);
}

.tabs-clean-0165 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;
}

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

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.avatar-plasma-5ee9 {
  padding: var(--space-xxl) 0;
}

.avatar-slow-6aca {
  background: var(--color-bg-section);
}

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

.badge-middle-cb4d {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dark_1d62 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) {
  .sidebar_a877 {
    grid-template-columns: 1fr;
  }
  
  .slider-c4f0 {
    font-size: 1.75rem;
  }
  
  .row_7a90 {
    max-width: 100%;
  }
}

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

/* ============================================
   11. INFO BOXES
   ============================================ */
.nav-1eb0 {
  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-094c {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

.small-55a7 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.hovered_f527 {
  flex-shrink: 0;
}

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

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

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

.hero-32bd,
.filter-4c15,
.link_medium_8bb9 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.hero-32bd thead,
.filter-4c15 thead {
  background: var(--color-primary);
  color: white;
}

.hero-32bd th,
.hero-32bd td,
.filter-4c15 th,
.filter-4c15 td,
.link_medium_8bb9 th,
.link_medium_8bb9 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hero-32bd th,
  .hero-32bd td,
  .filter-4c15 th,
  .filter-4c15 td,
  .link_medium_8bb9 th,
  .link_medium_8bb9 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .hero-32bd,
  .filter-4c15,
  .link_medium_8bb9 {
    min-width: 600px;
  }
}

.hero-32bd th,
.filter-4c15 th,
.link_medium_8bb9 th {
  font-weight: 600;
}

.hero-32bd tbody tr:hover,
.filter-4c15 tbody tr:hover,
.link_medium_8bb9 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.column_0da6 h4 {
  color: white;
}

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

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

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

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

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

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

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

.backdrop-in-fabf:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.accent-hard-05f7 {
  color: #4caf50;
}

.stone-488e {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.list-fresh-3b46 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

.button-stale-6e1e {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.button-stale-6e1e ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.button-stale-6e1e li {
  padding: var(--space-xs) 0;
  color: white;
}

.button-stale-6e1e .avatar_4552 {
  width: 100%;
  background: white;
}

.content-4dea .avatar_4552 {
  color: #667eea;
}

.title-2de7 .avatar_4552 {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.notice-right-56fe {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

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

@media (max-width: 768px) {
  .yellow_b0bb {
    padding: var(--space-md);
  }
  
  .layout_c8be {
    padding: var(--space-md);
  }
  
  .container-iron-e66d {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.plasma-e130,
.column-0baf,
.hover-daeb,
.input_d378 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.hidden-01dc h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.notification-2046 .widget_north_fc2d {
  background: #e8f5e9;
  color: var(--color-success);
}

.silver-a66a .widget_north_fc2d {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.gradient-3b45 {
  margin-top: var(--space-xxl);
}

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

.grid_first_f015 {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

.banner-810f {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

.primary-inner-447e {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

.blue-54e3 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.hover-hard-b8a4 {
  text-align: right;
}

.hover-hard-b8a4 .message_right_c777 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.table-bright-0e9b {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

.icon-orange-718b {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.slow-11d1 {
  background: #fff3e0;
  color: #e65100;
}

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

.module-slow-52b7 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.old-9a14 {
  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);
}

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

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

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

.center-05e8 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sort-tall-b0b9,
.component_7610 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.sort-tall-b0b9 h4,
.component_7610 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.sort-tall-b0b9 ul,
.component_7610 ul {
  list-style: none;
  padding: 0;
}

.sort-tall-b0b9 li,
.component_7610 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.hidden-north-8de1 {
  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);
}

.stale-8e91 {
  font-style: italic;
}

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

.avatar-09cc {
  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;
}

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

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

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

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

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

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

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

.notification-dynamic-9c3c {
  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);
}

.notification-dynamic-9c3c:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.notification-dynamic-9c3c p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.wide_fba2 a:hover {
  color: white;
}

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

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

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

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

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

.photo-bright-d9ce .dropdown-new-63aa {
  color: #4caf50;
  font-size: 0.875rem;
}

.iron-96fc {
  list-style: none;
  padding: 0;
}

.iron-96fc li {
  margin-bottom: var(--space-xs);
}

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

.iron-96fc a:hover {
  color: white;
}

.tabs-selected-4697 {
  list-style: none;
  padding: 0;
}

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

.tabs-selected-4697 a {
  color: #b0b0b0;
  text-decoration: none;
}

.tabs-selected-4697 a:hover {
  color: white;
}

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

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

.thumbnail-east-1d43 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

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

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

.heading-ecdf:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .tertiary_dynamic_9e8c {
    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;
  }
  
  .background-middle-c004 {
    font-size: 2rem;
  }
  
  .slider-c4f0 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .heading-1c4d,
  .sidebar_a877 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .active_52b6,
  .section_lower_bade,
  .pink_a592,
  .cold_1c49,
  .layout-eae8,
  .middle-74e3,
  .notification-6bcf,
  .section_a98b,
  .border_fixed_2141 {
    grid-template-columns: 1fr;
  }
  
  .fresh-68a5 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .avatar-plasma-5ee9 {
    padding: var(--space-lg) 0;
  }
  
  .tabs-clean-0165 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .tabs-clean-0165 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .avatar_4552 {
    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;
  }
  
  .fresh-68a5 {
    grid-template-columns: 1fr;
  }
  
  .tiny-5ee6,
  .pressed_765d,
  .inner-6002 {
    flex-direction: column;
    width: 100%;
  }
  
  .filter_north_a5e4,
  .media-hard-3163,
  .tiny-5ee6 .avatar_4552,
  .pressed_765d .avatar_4552 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .background-middle-c004 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .slider-c4f0 {
    font-size: 1.375rem;
  }
  
  .border-wood-bbeb {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .dim_5e62,
  .notice_074d,
  .aside_7b8a,
  .hover_061e,
  .notification_cef3 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .hidden-532a {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .liquid-c1c3 {
    gap: var(--space-xs);
  }
  
  .gas-2960 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .frame_6a02 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .title_dim_8a70 {
    width: 150px;
    height: 150px;
  }
  
  .simple_3ec3 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .nav-narrow-f850,
  .picture_cac8,
  .tiny-5ee6,
  .avatar-09cc,
  .title_a7ed,
  .outline-bottom-0889,
  .active_33cd {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .avatar-plasma-5ee9 {
    page-break-inside: avoid;
  }
}

/* css-noise: 32ae */
.promo-block-r8 {
  padding: 0.5rem;
  font-size: 14px;
  line-height: 1.2;
}
