/* ============================================
   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)
   ============================================ */
.message-047c {
  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;
}

.message-047c:focus {
  top: 0;
}

/* ============================================
   3. CONTAINER & LAYOUT
   ============================================ */
.tall_b9a9 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .tall_b9a9 {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .tall_b9a9 {
    padding: 0 12px;
  }
}

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.summary_copper_80a2):not(header) {
  max-width: 100%;
}

/* Allow specific elements to exceed container */
html,
body,
.summary_copper_80a2,
header,
.hover-26a3,
.table_01f2,
.widget_bc38,
.advanced_8c75,
.banner-6b70,
.liquid_efe0,
.label_0623 {
  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
   ============================================ */
.summary_copper_80a2 {
  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);
}

.detail_under_b990 {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Scrolled state */
.summary_copper_80a2.menu-liquid-b4fa {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

.over_585f {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  gap: var(--space-md);
}

.motion_0837 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.new-64de img {
  height: 36px;
  width: auto;
  display: block;
}

.main_stale_3fd0 {
  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;
}

.last_ea26 {
  flex: 1;
}

.middle-fa4a {
  display: flex;
  list-style: none;
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
}

.light_a030 {
  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);
}

.light_a030:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.light_a030.wrapper-liquid-f3d4 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.pagination_4349 {
  position: relative;
}

.motion_80f3 {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.motion_80f3 svg {
  transition: transform 0.2s ease;
}

/* 鼠标悬停时箭头旋转（桌面）；点击展开时箭头旋转（移动端） */
.pagination_4349:hover .motion_80f3 svg,
.motion_80f3[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.over-5a39 {
  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;
}

/* 鼠标悬停父元素时，立即显示下拉菜单 */
.pagination_4349:hover .over-5a39 {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* 在下拉菜单上方添加一个不可见的桥接区域，防止鼠标移动时菜单消失 */
.over-5a39::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}

.texture-cold-b6da {
  display: block;
  padding: 10px 20px;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.texture-cold-b6da:hover {
  background: var(--color-primary);
  color: white;
  padding-left: 24px; /* 悬停时轻微缩进 */
}

/* 当前页面在下拉菜单中的样式 */
.texture-cold-b6da[aria-current="page"] {
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 600;
}

.inner_0f71 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Header Login Button */
.input-fe4f {
  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;
}

.input-fe4f:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
  transform: translateY(-1px);
}

.input-fe4f svg {
  flex-shrink: 0;
}

/* Header Download Button */
.tooltip-focused-e81b {
  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;
}

.tooltip-focused-e81b: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);
}

.tooltip-focused-e81b svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.gold_2ef6 {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.iron-1855 {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

/* Hamburger animation when active */
.gold_2ef6[aria-expanded="true"] .iron-1855:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.gold_2ef6[aria-expanded="true"] .iron-1855:nth-child(2) {
  opacity: 0;
}

.gold_2ef6[aria-expanded="true"] .iron-1855:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Menu */
@media (max-width: 1100px) {
  .last_ea26 {
    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 */
  }

  .last_ea26::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .last_ea26.motion_8e9f {
    display: block;
    right: 0;
  }
  
  .middle-fa4a {
    flex-direction: column;
    gap: 0;
  }
  
  .light_a030 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .last_ea26::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;
  }
  
  .last_ea26.motion_8e9f::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .last_ea26 {
    display: none;
  }
  
  .gold_2ef6 {
    display: flex;
  }
  
  .main_stale_3fd0 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .input-fe4f,
  .tooltip-focused-e81b {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .pagination_4349 {
    position: relative;
  }
  
  .over-5a39 {
    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;
  }
  
  .motion_80f3[aria-expanded="true"] + .over-5a39 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .texture-cold-b6da {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .inner_0f71 {
    gap: 8px;
  }
  
  .input-fe4f {
    display: none;
  }
  
  .tooltip-focused-e81b {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .new-64de img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .tooltip-focused-e81b {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .tooltip-focused-e81b svg {
    width: 14px;
    height: 14px;
  }
  
  .over_585f {
    gap: var(--space-sm);
  }
}

/* ============================================
   5. ARTICLE META BANNER
   ============================================ */
.hover-26a3 {
  background: var(--color-bg-section);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-sm) 0;
}

.disabled_1997 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.layout-63c4 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.layout-63c4 svg {
  flex-shrink: 0;
}

.layout-63c4 a {
  color: var(--color-primary);
  text-decoration: none;
}

.layout-63c4 a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .disabled_1997 {
    font-size: 0.8125rem;
    gap: var(--space-sm);
  }
}

/* ============================================
   6. HERO SECTION
   ============================================ */
.table_01f2 {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.hover-e49d {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-xl);
  align-items: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .hover-e49d {
    grid-template-columns: 1fr 350px;
    gap: var(--space-lg);
  }
}

.red_164a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.red_164a a {
  color: var(--color-primary);
  text-decoration: none;
}

.red_164a a:hover {
  text-decoration: underline;
}

.progress-clean-b84a {
  color: var(--color-text-lighter);
}

.detail_2c53 {
  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) {
  .detail_2c53 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .detail_2c53 {
    font-size: 1.5rem;
  }
}

.shadow_687e {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.nav_e359 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
  .nav_e359 {
    grid-template-columns: 1fr;
  }
}

.cold_4cc0 {
  display: flex;
  gap: var(--space-sm);
}

.form-f78b {
  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;
}

.paper-6e62 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.paper-6e62 strong {
  font-weight: 600;
  color: var(--color-text);
}

.paper-6e62 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.badge_center_b558 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.orange_a495 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.search_right_2554 {
  position: relative;
  text-align: center;
}

.search_right_2554 img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.form_blue_347c {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.outline-800d {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.box_medium_7732 {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.item_north_aacf {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

.prev-40d6 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.dropdown-e939 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .hover-e49d {
    grid-template-columns: 1fr;
  }
  
  .detail_2c53 {
    font-size: 1.75rem;
  }
  
  .orange_a495 {
    order: -1;
    max-width: 100%;
  }
  
  .search_right_2554 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .detail_2c53 {
    font-size: 1.5rem;
  }
  
  .shadow_687e {
    font-size: 1rem;
  }
  
  .red_164a {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .search_right_2554 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.top_f0a4 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  line-height: 1.5;
}

.shade-static-85aa {
  background: var(--color-primary);
  color: white;
}

.shade-static-85aa:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.text-fbf5 {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.text-fbf5:hover {
  background: var(--color-primary);
  color: white;
}

.content_gold_35e4 {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.content_gold_35e4:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.block_8003 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.simple_a830 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

/* ============================================
   8. STATS SECTION
   ============================================ */
.widget_bc38 {
  padding: var(--space-xl) 0;
  background: white;
}

.modal_20aa {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
}

.input-89cd {
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.input-89cd:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.block_58b6 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.sort-9535 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.component-blue-b512 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* ============================================
   9. TABLE OF CONTENTS
   ============================================ */
.advanced_8c75 {
  padding: var(--space-xl) 0;
  background: var(--color-bg-section);
}

.thick-dab2 {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.up-0130 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.gallery_silver_7e82 {
  list-style: none;
  counter-reset: toc-counter;
}

.gallery_silver_7e82 li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.gallery_silver_7e82 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);
}

.gallery_silver_7e82 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;
}

.gallery_silver_7e82 li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.banner-6b70 {
  padding: var(--space-xxl) 0;
}

.stale-9efb {
  background: var(--color-bg-section);
}

.title_up_6fc2 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.breadcrumb_hard_b7b1 {
  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);
}

.paper_03e5 {
  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);
}

.iron_5f2b {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.search-322a {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: var(--space-xl);
  width: 100%;
}

@media (max-width: 1200px) {
  .search-322a {
    grid-template-columns: 1fr 300px;
  }
}

.button_eea4 {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.button_eea4 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.button_eea4 pre,
.button_eea4 code {
  overflow-x: auto;
  max-width: 100%;
}

.button_eea4 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);
}

.button_eea4 h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-text);
}

.button_eea4 h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.button_eea4 p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.button_eea4 ul,
.button_eea4 ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.button_eea4 li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.button_eea4 strong {
  font-weight: 600;
  color: var(--color-text);
}

.button_eea4 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.button_eea4 a:hover {
  color: var(--color-primary-dark);
}

.component-complex-1837 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

.component-complex-1837 li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: var(--space-md);
}

.component-complex-1837 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) {
  .search-322a {
    grid-template-columns: 1fr;
  }
  
  .paper_03e5 {
    font-size: 1.75rem;
  }
  
  .button_eea4 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .paper_03e5 {
    font-size: 1.5rem;
  }
  
  .button_eea4 h3 {
    font-size: 1.375rem;
  }
  
  .button_eea4 h4 {
    font-size: 1.125rem;
  }
}

/* ============================================
   11. INFO BOXES
   ============================================ */
.avatar-8498 {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
  border-left: 4px solid;
}

.dirty_84e0 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.shade_fb7b {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.tag_5eab {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.hovered_d571 strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.soft-1669 {
  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;
}

.notice-e54a {
  flex-shrink: 0;
}

.thumbnail_steel_a96a strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

/* ============================================
   13. TABLES
   ============================================ */
.modal-f804 {
  overflow-x: auto;
  margin: var(--space-lg) 0;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .modal-f804 {
    margin-left: calc(-1 * var(--space-sm));
    margin-right: calc(-1 * var(--space-sm));
    width: calc(100% + 2 * var(--space-sm));
    border-radius: 0;
  }
}

.pressed-7f08,
.widget-red-d044,
.notice_0a3a {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pressed-7f08 thead,
.widget-red-d044 thead {
  background: var(--color-primary);
  color: white;
}

.pressed-7f08 th,
.pressed-7f08 td,
.widget-red-d044 th,
.widget-red-d044 td,
.notice_0a3a th,
.notice_0a3a td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .pressed-7f08 th,
  .pressed-7f08 td,
  .widget-red-d044 th,
  .widget-red-d044 td,
  .notice_0a3a th,
  .notice_0a3a td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .pressed-7f08,
  .widget-red-d044,
  .notice_0a3a {
    min-width: 600px;
  }
}

.pressed-7f08 th,
.widget-red-d044 th,
.notice_0a3a th {
  font-weight: 600;
}

.pressed-7f08 tbody tr:hover,
.widget-red-d044 tbody tr:hover,
.notice_0a3a tbody tr:hover {
  background: var(--color-bg-alt);
}

.warm_7229 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: var(--space-sm);
}

/* ============================================
   14. SIDEBAR
   ============================================ */
.plasma_261c {
  position: sticky;
  top: 80px;
  align-self: start;
}

.block_complex_c801 {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
}

.block_complex_c801 h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.grid_last_df6d {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.grid_last_df6d h4 {
  color: white;
}

.detail-8b3a {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.bright-c56f {
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border-light);
}

.bright-c56f:last-child {
  border-bottom: none;
}

.bright-c56f dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.bright-c56f dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

.panel-fccd {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

.hovered-94d4 {
  display: inline-flex;
  align-items: center;
  margin-top: var(--space-md);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.hovered-94d4:hover {
  text-decoration: underline;
}

.table_6936 {
  text-align: center;
  margin-bottom: var(--space-md);
}

.hot-86a6 {
  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);
}

.hot-86a6 span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.heading-37ad {
  font-weight: 600;
  color: white;
}

.content_f103 {
  list-style: none;
  padding: 0;
}

.content_f103 li {
  padding: var(--space-xs) 0;
}

.secondary_0562 {
  color: #4caf50;
}

.full-c840 {
  color: #ff9800;
}

.element-bronze-1f00 {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.video_basic_416c {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  align-items: center;
  gap: var(--space-sm);
}

.fixed-9326 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.module_dim_0740 {
  height: 8px;
  background: var(--color-border-light);
  border-radius: 4px;
  overflow: hidden;
}

.article_9585 {
  height: 100%;
  background: linear-gradient(90deg, #4caf50 0%, #8bc34a 100%);
  transition: width var(--transition-slow);
}

.container_east_c55a {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

/* ============================================
   15. FEATURE GRID
   ============================================ */
.heading-gold-3545 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (max-width: 768px) {
  .heading-gold-3545 {
    grid-template-columns: 1fr;
  }
}

.small_9a12 {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  position: relative;
}

.small_9a12:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.notification-9409 {
  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;
}

.small_9a12 h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.small_9a12 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.alert-b605 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.heading-37ad {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.glass-ed00 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

.wrapper-first-98f5 {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: #f1f8ff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.wrapper-first-98f5 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

/* ============================================
   16. COMPARISON & DECISION HELPER
   ============================================ */
.image_glass_b4fb {
  max-width: 900px;
  margin: 0 auto;
}

.sidebar_7f83 {
  text-align: center;
  margin-bottom: var(--space-xl);
  font-size: 1.125rem;
  color: var(--color-text-light);
}

.stale-b5f9 {
  margin: var(--space-xl) 0;
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .stale-b5f9 {
    margin-left: calc(-1 * var(--space-sm));
    margin-right: calc(-1 * var(--space-sm));
    width: calc(100% + 2 * var(--space-sm));
  }
}

.black-2b6e {
  margin-top: var(--space-xxl);
}

.black-2b6e h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.carousel-2df1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (max-width: 768px) {
  .carousel-2df1 {
    grid-template-columns: 1fr;
  }
}

.label-current-1b9f {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.plasma-c0ca {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.detail-8678 {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.label-current-1b9f h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: white;
}

.label-current-1b9f ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.label-current-1b9f li {
  padding: var(--space-xs) 0;
  color: white;
}

.label-current-1b9f .top_f0a4 {
  width: 100%;
  background: white;
}

.plasma-c0ca .top_f0a4 {
  color: #667eea;
}

.detail-8678 .top_f0a4 {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.hero_outer_2d79 {
  max-width: 900px;
  margin: 0 auto;
}

.gas_b56b {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-xl);
  overflow: hidden;
}

.selected_8295 {
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
}

.table-full-2ab5 {
  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);
}

.selected_8295 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.input_motion_0633 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .selected_8295 {
    padding: var(--space-md);
  }
  
  .input_motion_0633 {
    padding: var(--space-md);
  }
  
  .progress-99aa {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.aside-955d ol,
.aside-955d ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.aside-955d li {
  margin-bottom: var(--space-sm);
}

.aside-955d code {
  background: var(--color-bg-alt);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
}

.tiny_d20e {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #fff3e0;
  border-left: 4px solid var(--color-warning);
  border-radius: var(--radius-md);
}

.pink-6b74 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #ffebee;
  border-left: 4px solid var(--color-danger);
  border-radius: var(--radius-md);
}

.progress-99aa {
  margin-top: var(--space-lg);
  text-align: center;
}

.progress-99aa img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.link-upper-1f33,
.soft_2b92,
.disabled-dim-c057,
.wide_f6f0 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.detail_green_5729 {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.gradient-ac0c {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.message_9257 {
  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) {
  .message_9257 {
    font-size: 0.625rem;
  }
}

.active_5c37 {
  padding: 8px 16px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
}

.active_5c37:hover {
  background: var(--color-primary-dark);
}

.thick-2266 {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  text-align: center;
}

.thick-2266 h4 {
  margin-bottom: var(--space-md);
}

.tabs-1d69 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

/* ============================================
   18. SECURITY SECTION
   ============================================ */
.wood-ba49 {
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  font-size: 1.125rem;
  text-align: center;
  color: var(--color-text-light);
}

.left-3462 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (max-width: 768px) {
  .left-3462 {
    grid-template-columns: 1fr;
  }
}

.first-e3ff {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid;
}

.tooltip-gas-86f9 {
  border-color: var(--color-success);
}

.shade-6fec {
  border-color: var(--color-warning);
}

.steel-2b85 {
  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);
}

.tooltip-gas-86f9 .steel-2b85 {
  background: #e8f5e9;
  color: var(--color-success);
}

.shade-6fec .steel-2b85 {
  background: #fff3e0;
  color: var(--color-warning);
}

.first-e3ff h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.first-e3ff p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.prev_7979 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.detail-844b {
  margin: var(--space-xxl) 0;
}

.detail-844b h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-md);
}

.detail-844b > p {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
}

.search_clean_4c27 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .search_clean_4c27 {
    grid-template-columns: 1fr;
  }
}

.main-deb1 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.main-deb1 h4 {
  margin-bottom: var(--space-md);
  font-size: 1.125rem;
  color: var(--color-primary);
}

.table_396d {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

.table_396d input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 4px;
  cursor: pointer;
}

.filter_rough_b301 {
  margin-top: var(--space-xxl);
}

.motion-a93c {
  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);
}

.layout-white-10ae {
  text-align: center;
}

.aside-iron-7f62 {
  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);
}

.complex_7a8c {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.aside-iron-7f62 .heading-37ad {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.row-bc27 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.backdrop_mini_0fe7 p {
  margin-bottom: var(--space-md);
}

.block_middle_1dbb {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .motion-a93c {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   19. REVIEW SECTION
   ============================================ */
.hover_84b0 {
  max-width: 600px;
  margin: 0 auto var(--space-xxl);
}

.heading_dd8f {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.section_9d9c {
  margin-bottom: var(--space-xl);
}

.section_967a {
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}

.alert_6cae {
  font-size: 2rem;
  color: #ffa000;
  letter-spacing: 4px;
  margin: var(--space-sm) 0;
}

.selected-eac0 {
  color: var(--color-text-light);
}

.dropdown_dynamic_abd8 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.icon-fixed-9ecc {
  display: grid;
  grid-template-columns: 40px 1fr 50px;
  align-items: center;
  gap: var(--space-sm);
}

.shade_prev_5839 {
  font-weight: 600;
  color: var(--color-text);
}

.hover-tiny-bab0 {
  height: 12px;
  background: var(--color-border-light);
  border-radius: 6px;
  overflow: hidden;
}

.container_small_f69b {
  height: 100%;
  background: linear-gradient(90deg, #ffa000 0%, #ff6f00 100%);
  transition: width var(--transition-slow);
}

.upper-a5e3 {
  text-align: right;
  font-weight: 600;
  color: var(--color-text-light);
  font-size: 0.875rem;
}

.gallery_0b72 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.detail-clean-3f93 {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-xl);
}

.pattern-c2a5 {
  border: 2px solid #4caf50;
}

.blue-e3f1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
  gap: var(--space-md);
}

.mask-1dd2 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.overlay-1bcd {
  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;
}

.table_silver_1680 {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.short-8d55 {
  display: inline-block;
  padding: 2px 8px;
  background: #4caf50;
  color: white;
  font-size: 0.75rem;
  border-radius: 10px;
  margin-left: 8px;
}

.header-south-5e7a {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.dim_e4cd {
  text-align: right;
}

.dim_e4cd .frame-full-91d6 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.heading-aefa {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.tooltip_gold_c6e9 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
  color: var(--color-text);
}

.tooltip_gold_c6e9 p {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.element-e065 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

.basic-a7d4 {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

.west_ca96 {
  background: #e8f5e9;
  color: #2e7d32;
}

.gas_dfc2 {
  background: #e3f2fd;
  color: #1565c0;
}

.caption_brown_dab8 {
  background: #fff3e0;
  color: #e65100;
}

.row-upper-9578 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.row-upper-9578 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.pink_2847 {
  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);
}

.pink_2847:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.right_645f {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #f1f8ff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.block_glass_faf6 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.block_glass_faf6 strong {
  color: var(--color-primary);
}

.paper_5f99 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.frame-silver-4365 {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ============================================
   20. FAQ SECTION
   ============================================ */
.pressed-0f7e {
  max-width: 900px;
  margin: 0 auto;
}

.aside-4d1f {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.hidden-a16a {
  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);
}

.hidden-a16a:hover {
  background: var(--color-bg-alt);
}

.sort_0bce {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.hidden-a16a[aria-expanded="true"] .sort_0bce {
  transform: rotate(180deg);
}

.hover_c681 {
  display: none;
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-light);
  line-height: 1.7;
}

.hover_c681 h5 {
  font-size: 1rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.hover_c681 ul,
.hover_c681 ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.hover_c681 li {
  margin-bottom: var(--space-xs);
}

.table-hard-acdb {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: #1e1e1e;
  color: #d4d4d4;
  border-radius: var(--radius-md);
  overflow-x: auto;
}

.menu-rough-830c {
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: #9cdcfe;
}

.table-hard-acdb code {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ============================================
   21. CONCLUSION SECTION
   ============================================ */
.outline-d8d9 {
  max-width: 800px;
  margin: 0 auto var(--space-xxl);
  text-align: center;
}

.info_slow_841b {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.tooltip-d2f1 {
  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);
}

.accent-f0b1 {
  padding: 12px 24px;
  background: #4caf50;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.tertiary_ed5c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

@media (max-width: 768px) {
  .tertiary_ed5c {
    grid-template-columns: 1fr;
  }
}

.tiny_2c88,
.bright_1bfe {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.tiny_2c88 {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.bright_1bfe {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.tiny_2c88 h4,
.bright_1bfe h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.tiny_2c88 ul,
.bright_1bfe ul {
  list-style: none;
  padding: 0;
}

.tiny_2c88 li,
.bright_1bfe li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

.fixed_e5c4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

@media (max-width: 768px) {
  .fixed_e5c4 {
    grid-template-columns: 1fr;
  }
}

.form-2d44 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.short-7002 {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: white;
}

.search_hovered_596e {
  background: linear-gradient(135deg, #f44336 0%, #e57373 100%);
  color: white;
}

.form-2d44 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: white;
}

.form-2d44 ul {
  list-style: none;
  padding: 0;
}

.form-2d44 li {
  padding: var(--space-xs) 0;
  color: white;
}

.texture_92b6 {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

.texture_92b6 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.texture_92b6 p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
  line-height: 1.8;
}

.last_4a3c {
  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);
}

.form-eed8 {
  font-style: italic;
}

.west_b9cc {
  display: block;
  margin-top: var(--space-sm);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.current_98f9 {
  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;
}

.current_98f9 h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: white;
}

.current_98f9 p {
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
  color: rgba(255,255,255,0.9);
}

.grid-wood-e9c1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

/* ============================================
   22. RELATED CONTENT
   ============================================ */
.liquid_efe0 {
  padding: var(--space-xxl) 0;
  background: var(--color-bg-section);
}

.nav-4288 {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.active-bottom-346f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .active-bottom-346f {
    grid-template-columns: 1fr;
  }
}

.gold-dbf7 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: var(--transition-base);
}

.gold-dbf7:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.element_5ef9 {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.gold-dbf7 h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.gold-dbf7 p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

/* ============================================
   23. FOOTER
   ============================================ */
.label_0623 {
  background: #212121;
  color: #e0e0e0;
  padding: var(--space-xxl) 0 var(--space-lg);
}

.tooltip_4278 {
  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) */
.static-0729 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.basic-1d0b h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.basic-1d0b p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.title-liquid-38cf {
  list-style: none;
  padding: 0;
  margin: 0;
}

.title-liquid-38cf li {
  margin-bottom: var(--space-xs);
}

.title-liquid-38cf a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.title-liquid-38cf a:hover {
  color: white;
}

.disabled-fast-7aef {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.disabled-fast-7aef 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);
}

.disabled-fast-7aef a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.nav-warm-29ae {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.nav-warm-29ae a {
  color: #808080;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.nav-warm-29ae a:hover {
  color: white;
}

.tall-d117 > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

@media (max-width: 768px) {
  .tooltip_4278,
  .static-0729 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.new_7042 h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.highlight_ad39 p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.right-0832 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.right-0832 .cold_4cc0 {
  color: #4caf50;
  font-size: 0.875rem;
}

.table-9d20 {
  list-style: none;
  padding: 0;
}

.table-9d20 li {
  margin-bottom: var(--space-xs);
}

.table-9d20 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.table-9d20 a:hover {
  color: white;
}

.hard_9e1e {
  list-style: none;
  padding: 0;
}

.hard_9e1e li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: #b0b0b0;
}

.hard_9e1e a {
  color: #b0b0b0;
  text-decoration: none;
}

.hard_9e1e a:hover {
  color: white;
}

.tall-d117 {
  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);
}

.hover_easy_3c5d p {
  font-size: 0.875rem;
  color: #808080;
  margin-bottom: var(--space-xs);
}

.hover_easy_3c5d a {
  color: #4caf50;
  text-decoration: none;
}

.blue_db2e {
  font-size: 0.75rem;
  color: #666666;
}

.input_dirty_d8c1 {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: #808080;
}

.input_dirty_d8c1 a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.input_dirty_d8c1 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;
}

.progress-gold-5af5 {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.progress-gold-5af5:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .tall-d117 {
    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;
  }
  
  .detail_2c53 {
    font-size: 2rem;
  }
  
  .paper_03e5 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .hover-e49d,
  .search-322a {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .heading-gold-3545,
  .left-3462,
  .carousel-2df1,
  .search_clean_4c27,
  .tertiary_ed5c,
  .fixed_e5c4,
  .active-bottom-346f,
  .tooltip_4278,
  .static-0729 {
    grid-template-columns: 1fr;
  }
  
  .modal_20aa {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .banner-6b70 {
    padding: var(--space-lg) 0;
  }
  
  .gallery_silver_7e82 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .gallery_silver_7e82 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .top_f0a4 {
    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;
  }
  
  .modal_20aa {
    grid-template-columns: 1fr;
  }
  
  .badge_center_b558,
  .grid-wood-e9c1,
  .tabs-1d69 {
    flex-direction: column;
    width: 100%;
  }
  
  .block_8003,
  .simple_a830,
  .badge_center_b558 .top_f0a4,
  .grid-wood-e9c1 .top_f0a4 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .detail_2c53 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .paper_03e5 {
    font-size: 1.375rem;
  }
  
  .block_58b6 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .input-89cd,
  .small_9a12,
  .block_complex_c801,
  .detail-clean-3f93,
  .gas_b56b {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .message_9257 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .disabled_1997 {
    gap: var(--space-xs);
  }
  
  .layout-63c4 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .hot-86a6 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .aside-iron-7f62 {
    width: 150px;
    height: 150px;
  }
  
  .complex_7a8c {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .summary_copper_80a2,
  .hover-26a3,
  .badge_center_b558,
  .current_98f9,
  .liquid_efe0,
  .label_0623,
  .gold_2ef6 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .banner-6b70 {
    page-break-inside: avoid;
  }
}

/* css-noise: 94a5 */
.large-9a32 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.0;
}

/* css-noise: a566 */
.widget-item-p9 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.2;
}
