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

.sidebar-tiny-e275:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.smooth-5152,
header,
.table_8b67,
.search-soft-3ce2,
.main_dark_e44c,
.container_4b03,
.highlight_copper_a3e3,
.thumbnail-a5c9,
.outline_fec1 {
  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
   ============================================ */
.smooth-5152 {
  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);
}

.summary-5ef1 {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.smooth-5152.shadow-stale-090c {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.border_379c {
  flex: 1;
}

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

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

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

.grid_bronze_da9e.fn-active-fcf0 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.black-0c70 {
  position: relative;
}

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

.hero-0a60 svg {
  transition: transform 0.2s ease;
}

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

.dirty-770b {
  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;
}

/* 鼠标悬停父元素时，立即显示下拉菜单 */
.black-0c70:hover .dirty-770b {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

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

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

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

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

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

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

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

.block_bf19 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .border_379c {
    display: none;
  }
  
  .description-3617 {
    display: flex;
  }
  
  .focused_1414 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .block_bf19,
  .lower-3546 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .black-0c70 {
    position: relative;
  }
  
  .dirty-770b {
    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;
  }
  
  .hero-0a60[aria-expanded="true"] + .dirty-770b {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .active_1cb9 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .narrow-9485 {
    gap: 8px;
  }
  
  .block_bf19 {
    display: none;
  }
  
  .lower-3546 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .info_5ea8 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.container-4378 svg {
  flex-shrink: 0;
}

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

.container-4378 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.accordion-cold-c9d5 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.block-copper-3702 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

.module-pressed-1b6d {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .heading_4d4f {
    grid-template-columns: 1fr;
  }
  
  .summary-bc05 {
    font-size: 1.75rem;
  }
  
  .banner-0930 {
    order: -1;
    max-width: 100%;
  }
  
  .block-copper-3702 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .summary-bc05 {
    font-size: 1.5rem;
  }
  
  .pro-f713 {
    font-size: 1rem;
  }
  
  .banner_south_996c {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .block-copper-3702 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.over-1ffd {
  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_liquid_420d {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

.hero-first-7ce0 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

.slider-rough-760e:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.outline-mini-d635 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.backdrop_basic_b36c 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) {
  .first-22ff {
    grid-template-columns: 1fr;
  }
  
  .thumbnail_full_2874 {
    font-size: 1.75rem;
  }
  
  .notice_adf6 {
    max-width: 100%;
  }
}

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

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

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

.list-0b03 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.preview_silver_1e56 {
  flex-shrink: 0;
}

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

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

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

.tabs-57ff,
.hero_fixed_6457,
.surface_1c41 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.tabs-57ff thead,
.hero_fixed_6457 thead {
  background: var(--color-primary);
  color: white;
}

.tabs-57ff th,
.tabs-57ff td,
.hero_fixed_6457 th,
.hero_fixed_6457 td,
.surface_1c41 th,
.surface_1c41 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .tabs-57ff th,
  .tabs-57ff td,
  .hero_fixed_6457 th,
  .hero_fixed_6457 td,
  .surface_1c41 th,
  .surface_1c41 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .tabs-57ff,
  .hero_fixed_6457,
  .surface_1c41 {
    min-width: 600px;
  }
}

.tabs-57ff th,
.hero_fixed_6457 th,
.surface_1c41 th {
  font-weight: 600;
}

.tabs-57ff tbody tr:hover,
.hero_fixed_6457 tbody tr:hover,
.surface_1c41 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.caption-5d8a h4 {
  color: white;
}

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

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

.steel-6b45:last-child {
  border-bottom: none;
}

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

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

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

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

.block-selected-c2da:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.wrapper-liquid-18d4 {
  color: #4caf50;
}

.sort_7fb6 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.static-a4c1 .over-1ffd {
  width: 100%;
  background: white;
}

.caption_blue_485c .over-1ffd {
  color: #667eea;
}

.thumbnail_dirty_05fb .over-1ffd {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .dynamic_c1d7 {
    padding: var(--space-md);
  }
  
  .panel_fluid_8214 {
    padding: var(--space-md);
  }
  
  .media-current-7366 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.grid-new-25d9 ol,
.grid-new-25d9 ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.grid-new-25d9 li {
  margin-bottom: var(--space-sm);
}

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

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

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

.media-current-7366 {
  margin-top: var(--space-lg);
  text-align: center;
}

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

.cold-1972,
.tabs_silver_2eca,
.bright-ee5a,
.description-left-0270 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.item-full-b13c:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

.bright-1a1d {
  border-color: var(--color-success);
}

.primary-motion-f8ca {
  border-color: var(--color-warning);
}

.new-524f {
  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);
}

.bright-1a1d .new-524f {
  background: #e8f5e9;
  color: var(--color-success);
}

.primary-motion-f8ca .new-524f {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stone_0ccb {
  text-align: center;
}

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

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

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

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

.element-0fae p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.surface-659a {
  margin-bottom: var(--space-xl);
}

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

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

.heading-glass-0d99 {
  color: var(--color-text-light);
}

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

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

.outline-533d {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

.photo-stone-10cb {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

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

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

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

.center-532d {
  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;
}

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

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

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

.accent-gold-1a83 {
  text-align: right;
}

.accent-gold-1a83 .focus-c7a2 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

.background-gas-864b {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

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

.smooth-5e1d {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.summary-east-5b43 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.texture-clean-4d23,
.sidebar_6ef8 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.texture-clean-4d23 h4,
.sidebar_6ef8 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.texture-clean-4d23 ul,
.sidebar_6ef8 ul {
  list-style: none;
  padding: 0;
}

.texture-clean-4d23 li,
.sidebar_6ef8 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.copper-2de2 {
  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);
}

.search_cool_d595 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.label-top-fdd8 {
  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);
}

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

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

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

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

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

.form-east-5a75 {
  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) */
.info-down-124c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.label-8dde {
  list-style: none;
  padding: 0;
  margin: 0;
}

.label-8dde li {
  margin-bottom: var(--space-xs);
}

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

.label-8dde a:hover {
  color: white;
}

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

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

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

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

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

.plasma_941c a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .form-east-5a75,
  .info-down-124c {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.image-silver-cfc1 .label_selected_28c2 {
  color: #4caf50;
  font-size: 0.875rem;
}

.frame-tall-468d {
  list-style: none;
  padding: 0;
}

.frame-tall-468d li {
  margin-bottom: var(--space-xs);
}

.frame-tall-468d a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.frame-tall-468d a:hover {
  color: white;
}

.image-liquid-68c1 {
  list-style: none;
  padding: 0;
}

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

.image-liquid-68c1 a {
  color: #b0b0b0;
  text-decoration: none;
}

.image-liquid-68c1 a:hover {
  color: white;
}

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

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

.module-new-2151 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

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

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

.logo-7115:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .tall_10e8 {
    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;
  }
  
  .summary-bc05 {
    font-size: 2rem;
  }
  
  .thumbnail_full_2874 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .heading_4d4f,
  .first-22ff {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .full_97c0,
  .grid-solid-6092,
  .header-af99,
  .heading_1f5e,
  .popup_gas_c726,
  .solid-2ff4,
  .thumbnail_motion_fbb7,
  .form-east-5a75,
  .info-down-124c {
    grid-template-columns: 1fr;
  }
  
  .card-d21e {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .highlight_copper_a3e3 {
    padding: var(--space-lg) 0;
  }
  
  .alert_in_a323 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .alert_in_a323 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .over-1ffd {
    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;
  }
  
  .card-d21e {
    grid-template-columns: 1fr;
  }
  
  .accordion-cold-c9d5,
  .south_7d88,
  .shade_1161 {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-first-7ce0,
  .link-ca72,
  .accordion-cold-c9d5 .over-1ffd,
  .south_7d88 .over-1ffd {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .summary-bc05 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .thumbnail_full_2874 {
    font-size: 1.375rem;
  }
  
  .hero_liquid_8f27 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .slider-rough-760e,
  .hovered-314d,
  .progress_b077,
  .frame_0810,
  .slow_721d {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .cold-e042 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .shade-tiny-92e8 {
    gap: var(--space-xs);
  }
  
  .container-4378 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .text_2794 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .upper_5a21 {
    width: 150px;
    height: 150px;
  }
  
  .soft_f122 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .smooth-5152,
  .table_8b67,
  .accordion-cold-c9d5,
  .pagination_c9e7,
  .thumbnail-a5c9,
  .outline_fec1,
  .description-3617 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .highlight_copper_a3e3 {
    page-break-inside: avoid;
  }
}

/* css-noise: d63e */
.widget-item-a6 {
  padding: 0.2rem;
  font-size: 11px;
  line-height: 1.0;
}
