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

.old-1ad9:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container.
   html/body are excluded on purpose: releasing their max-width removes the
   last guard against a horizontally scrollable page. */
.box-5b8b,
header,
.static_c322,
.large_881a,
.lower_50cc,
.secondary-basic-89f0,
.nav-green-0415,
.active_dbe3,
.fluid-7057 {
  max-width: none;
}

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

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

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

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

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

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

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

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

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

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

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

.primary-liquid-7f69 {
  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;
}

.paragraph-orange-d82d {
  flex: 1;
}

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

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

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

.layout-fb49.message_3e89 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.accordion-2df6 {
  position: relative;
}

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

.notification-09b8 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.texture_stone_e923 svg {
  flex-shrink: 0;
}

/* Header Download Button */
.table-green-2c96 {
  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;
}

.table-green-2c96: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);
}

.table-green-2c96 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .paragraph-orange-d82d {
    display: none;
  }
  
  .focus_small_96b0 {
    display: flex;
  }
  
  .primary-liquid-7f69 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .texture_stone_e923,
  .table-green-2c96 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .accordion-2df6 {
    position: relative;
  }
  
  .table-cfe4 {
    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;
  }
  
  .notification-09b8[aria-expanded="true"] + .table-cfe4 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .nav-easy-463a {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .alert_b038 {
    gap: 8px;
  }
  
  .texture_stone_e923 {
    display: none;
  }
  
  .table-green-2c96 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .paragraph_9910 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .table-green-2c96 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .table-green-2c96 svg {
    width: 14px;
    height: 14px;
  }
  
  .secondary-thick-2b42 {
    gap: var(--space-sm);
  }
}

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

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

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

.middle_b1d1 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.button-0749 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.row-action-bee0 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

.complex-09a7 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .panel-lite-e60b {
    grid-template-columns: 1fr;
  }
  
  .slow_0209 {
    font-size: 1.75rem;
  }
  
  .iron_9454 {
    order: -1;
    max-width: 100%;
  }
  
  .accordion_7eb2 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .slow_0209 {
    font-size: 1.5rem;
  }
  
  .badge_19ab {
    font-size: 1rem;
  }
  
  .button-0749 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .accordion_7eb2 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nav-09cc {
  list-style: none;
  counter-reset: toc-counter;
}

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

.nav-09cc 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);
}

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

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

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

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

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

.gold-62d3 {
  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);
}

.alert-inner-eabd {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.card-full-1e6c {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.card-full-1e6c 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) {
  .thumbnail-3721 {
    grid-template-columns: 1fr;
  }
  
  .alert-inner-eabd {
    font-size: 1.75rem;
  }
  
  .plasma_d9de {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .alert-inner-eabd {
    font-size: 1.5rem;
  }
  
  .plasma_d9de h3 {
    font-size: 1.375rem;
  }
  
  .plasma_d9de h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.pink_ebd4 {
  flex-shrink: 0;
}

.card-middle-5b5c strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

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

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

.paragraph_hard_94de,
.copper_4da0,
.focus-3eef {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.paragraph_hard_94de thead,
.copper_4da0 thead {
  background: var(--color-primary);
  color: white;
}

.paragraph_hard_94de th,
.paragraph_hard_94de td,
.copper_4da0 th,
.copper_4da0 td,
.focus-3eef th,
.focus-3eef td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .paragraph_hard_94de th,
  .paragraph_hard_94de td,
  .copper_4da0 th,
  .copper_4da0 td,
  .focus-3eef th,
  .focus-3eef td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .paragraph_hard_94de,
  .copper_4da0,
  .focus-3eef {
    min-width: 600px;
  }
}

.paragraph_hard_94de th,
.copper_4da0 th,
.focus-3eef th {
  font-weight: 600;
}

.paragraph_hard_94de tbody tr:hover,
.copper_4da0 tbody tr:hover,
.focus-3eef tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.wide-a080 h4 {
  color: white;
}

.hidden-out-dd40 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

.primary-selected-0bc2:last-child {
  border-bottom: none;
}

.primary-selected-0bc2 dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.primary-selected-0bc2 dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

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

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

.backdrop-a3cb:hover {
  text-decoration: underline;
}

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

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

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

.dark-8aa8 {
  font-weight: 600;
  color: white;
}

.fresh-e178 {
  list-style: none;
  padding: 0;
}

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

.secondary-middle-6281 {
  color: #4caf50;
}

.shadow-south-10c9 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.breadcrumb-814a {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.heading-rough-aa71 .alert_dark_30bc {
  width: 100%;
  background: white;
}

.info-50e0 .alert_dark_30bc {
  color: #667eea;
}

.notification-white-da76 .alert_dark_30bc {
  color: #f5576c;
}

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

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

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

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

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

.sort-stale-53b4 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .column-d79d {
    padding: var(--space-md);
  }
  
  .sort-stale-53b4 {
    padding: var(--space-md);
  }
  
  .status-24f9 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.carousel_8e87,
.dropdown-dirty-909d,
.shadow-e35e,
.button-b0d8 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.warm-457e h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.tooltip-41dd {
  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);
}

.under_f967 .tooltip-41dd {
  background: #e8f5e9;
  color: var(--color-success);
}

.detail_133c .tooltip-41dd {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

.item-red-7fd3 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.chip-42de {
  margin: var(--space-xxl) 0;
}

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

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

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

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

.gradient-short-590f {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

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

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

.shadow-stone-ad79 {
  margin-top: var(--space-xxl);
}

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

.sidebar_small_39ea {
  text-align: center;
}

.dynamic-156f {
  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);
}

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

.dynamic-156f .dark-8aa8 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.avatar-center-da01 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

.highlight-plasma-dee6 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.thumbnail-current-866a {
  border: 2px solid #4caf50;
}

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

.secondary-brown-94df {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.table_fa30 {
  text-align: right;
}

.table_fa30 .content-dim-1fc8 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.surface-bottom-a8ef {
  background: #e3f2fd;
  color: #1565c0;
}

.breadcrumb-silver-a2d6 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.lower-8440 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

.photo-complex-f70a {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.popup-2180[aria-expanded="true"] .photo-complex-f70a {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.large_8fb6,
.link-96bd {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.large_8fb6 h4,
.link-96bd h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.large_8fb6 ul,
.link-96bd ul {
  list-style: none;
  padding: 0;
}

.large_8fb6 li,
.link-96bd li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.item_8eb1 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.widget_gold_a20a .row-action-bee0 {
  color: #4caf50;
  font-size: 0.875rem;
}

.dim-1a67 {
  list-style: none;
  padding: 0;
}

.dim-1a67 li {
  margin-bottom: var(--space-xs);
}

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

.dim-1a67 a:hover {
  color: white;
}

.backdrop-d81c {
  list-style: none;
  padding: 0;
}

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

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

.backdrop-d81c a:hover {
  color: white;
}

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

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

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

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

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

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

.top-0544:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .cold-8439 {
    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;
  }
  
  .slow_0209 {
    font-size: 2rem;
  }
  
  .alert-inner-eabd {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .panel-lite-e60b,
  .thumbnail-3721 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .form_in_ab18,
  .form_stone_be9f,
  .hover-hovered-ff45,
  .backdrop_438f,
  .silver-953f,
  .rough-6973,
  .easy_1a8f,
  .module_first_85f4 {
    grid-template-columns: 1fr;
  }
  
  .title-dark-f627 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .nav-green-0415 {
    padding: var(--space-lg) 0;
  }
  
  .nav-09cc li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .nav-09cc li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .alert_dark_30bc {
    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;
  }
  
  .title-dark-f627 {
    grid-template-columns: 1fr;
  }
  
  .complex-09a7,
  .current-e345,
  .overlay_9336 {
    flex-direction: column;
    width: 100%;
  }
  
  .fluid-b04c,
  .popup_silver_24c1,
  .complex-09a7 .alert_dark_30bc,
  .current-e345 .alert_dark_30bc {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .slow_0209 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .alert-inner-eabd {
    font-size: 1.375rem;
  }
  
  .button_f5b7 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .logo_next_a1b2,
  .item-up-a883,
  .heading-north-ac0e,
  .easy-48be,
  .copper-c9f0 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .south-8d83 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .solid_9ef3 {
    gap: var(--space-xs);
  }
  
  .middle_b1d1 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .button_ce5f {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .dynamic-156f {
    width: 150px;
    height: 150px;
  }
  
  .stale_63e6 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .box-5b8b,
  .static_c322,
  .complex-09a7,
  .box_gas_3e69,
  .active_dbe3,
  .fluid-7057,
  .focus_small_96b0 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .nav-green-0415 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 20dc */
.widget-item-r6 {
  padding: 0.1rem;
  font-size: 12px;
  line-height: 1.2;
}
