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

.avatar_8676:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.menu_gas_4e49,
header,
.wide_9a46,
.background_aa54,
.article-west-7efe,
.surface-b9b1,
.feature-last-ec5a,
.shadow_0d9b,
.active-b0ca {
  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
   ============================================ */
.menu_gas_4e49 {
  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_glass_3b62 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.sort-prev-aeac img {
  height: 36px;
  width: auto;
  display: block;
}

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

.background_c720 {
  flex: 1;
}

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

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

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

.top_0127.fn-active-eb8b {
  background: var(--color-primary);
  color: white;
}

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

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

.old-a3b4 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

.disabled-copper-455a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.box-current-aa10 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .background_c720::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .background_c720.description-glass-f41d {
    display: block;
    right: 0;
  }
  
  .feature-in-10b2 {
    flex-direction: column;
    gap: 0;
  }
  
  .top_0127 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .background_c720::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;
  }
  
  .background_c720.description-glass-f41d::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .background_c720 {
    display: none;
  }
  
  .row_in_e6f9 {
    display: flex;
  }
  
  .focus_0878 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .box-current-aa10,
  .modal_top_45e5 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .item_6b40 {
    position: relative;
  }
  
  .paragraph_0096 {
    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;
  }
  
  .old-a3b4[aria-expanded="true"] + .paragraph_0096 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .aside-fad7 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .disabled-copper-455a {
    gap: 8px;
  }
  
  .box-current-aa10 {
    display: none;
  }
  
  .modal_top_45e5 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .sort-prev-aeac img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.chip-f91c svg {
  flex-shrink: 0;
}

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

.chip-f91c a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.focus-outer-6017 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

.header-97ac {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

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

.gas-5707 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .glass-2f00 {
    grid-template-columns: 1fr;
  }
  
  .list_gold_306a {
    font-size: 1.75rem;
  }
  
  .input_f2a5 {
    order: -1;
    max-width: 100%;
  }
  
  .gas-5707 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .list_gold_306a {
    font-size: 1.5rem;
  }
  
  .input_822f {
    font-size: 1rem;
  }
  
  .focused_5374 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .gas-5707 {
    max-width: 250px;
  }
}

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

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

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

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

.filter-iron-8570:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.rough-6ebd {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.gradient-0cf6 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

.active-117d {
  list-style: none;
  counter-reset: toc-counter;
}

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

.active-117d 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);
}

.active-117d 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;
}

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

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

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

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

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

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

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

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

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

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

.paragraph-center-f5c8 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.paragraph-center-f5c8 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);
}

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

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

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

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

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

.paragraph-center-f5c8 strong {
  font-weight: 600;
  color: var(--color-text);
}

.paragraph-center-f5c8 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.paragraph-center-f5c8 a:hover {
  color: var(--color-primary-dark);
}

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

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

.shade_a22b 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) {
  .grid-east-1a23 {
    grid-template-columns: 1fr;
  }
  
  .active-bd4e {
    font-size: 1.75rem;
  }
  
  .paragraph-center-f5c8 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .active-bd4e {
    font-size: 1.5rem;
  }
  
  .paragraph-center-f5c8 h3 {
    font-size: 1.375rem;
  }
  
  .paragraph-center-f5c8 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.active_6983 {
  flex-shrink: 0;
}

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

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

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

.primary-5591,
.detail_8bc6,
.container_ee30 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.primary-5591 thead,
.detail_8bc6 thead {
  background: var(--color-primary);
  color: white;
}

.primary-5591 th,
.primary-5591 td,
.detail_8bc6 th,
.detail_8bc6 td,
.container_ee30 th,
.container_ee30 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .primary-5591 th,
  .primary-5591 td,
  .detail_8bc6 th,
  .detail_8bc6 td,
  .container_ee30 th,
  .container_ee30 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .primary-5591,
  .detail_8bc6,
  .container_ee30 {
    min-width: 600px;
  }
}

.primary-5591 th,
.detail_8bc6 th,
.container_ee30 th {
  font-weight: 600;
}

.primary-5591 tbody tr:hover,
.detail_8bc6 tbody tr:hover,
.container_ee30 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.large_cf11 h4 {
  color: white;
}

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

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

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

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

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

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

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

.purple-a9b6:hover {
  text-decoration: underline;
}

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

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

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

.bright-21c1 {
  font-weight: 600;
  color: white;
}

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

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

.bright_1227 {
  color: #4caf50;
}

.article_easy_9bdb {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.mini-3c55 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.action_25ae .status_basic_073c {
  width: 100%;
  background: white;
}

.link_dim_c90c .status_basic_073c {
  color: #667eea;
}

.sidebar_bottom_369e .status_basic_073c {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .outline_83cb {
    padding: var(--space-md);
  }
  
  .in_3ec6 {
    padding: var(--space-md);
  }
  
  .gradient_rough_44ae {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.black_4c39,
.in_21fb,
.table_silver_1cd5,
.feature-dynamic-71d1 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.overlay-motion-a314 {
  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) {
  .overlay-motion-a314 {
    font-size: 0.625rem;
  }
}

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

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

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

.label-right-4625 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.blue-6a37 {
  border-color: var(--color-success);
}

.photo-298e {
  border-color: var(--color-warning);
}

.warm-60c6 {
  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);
}

.blue-6a37 .warm-60c6 {
  background: #e8f5e9;
  color: var(--color-success);
}

.photo-298e .warm-60c6 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .shadow-stone-51bc {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

.highlight-3ea6 {
  margin-top: var(--space-xxl);
}

.label-black-c3e9 {
  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);
}

.west-73d4 {
  text-align: center;
}

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

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

.dropdown_mini_7747 .bright-21c1 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.paragraph-static-703f {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

.west-b6da {
  border: 2px solid #4caf50;
}

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

.avatar-huge-5b4a {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.selected_24cb {
  text-align: right;
}

.selected_24cb .gallery-action-bb05 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.message-top-07d4 {
  background: #e8f5e9;
  color: #2e7d32;
}

.over-ea10 {
  background: #e3f2fd;
  color: #1565c0;
}

.up-45ad {
  background: #fff3e0;
  color: #e65100;
}

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

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

.gradient-0d30 {
  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);
}

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

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

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

.badge-mini-5470 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

.east-fbe3[aria-expanded="true"] .overlay_fast_2591 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.thick-2dd8,
.table-light-7196 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.thick-2dd8 h4,
.table-light-7196 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.thick-2dd8 ul,
.table-light-7196 ul {
  list-style: none;
  padding: 0;
}

.thick-2dd8 li,
.table-light-7196 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.backdrop-21bc {
  font-style: italic;
}

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

.search-north-a792 {
  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;
}

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

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

.info-gold-942c {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

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

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

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

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

.slider-next-790c {
  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);
}

.slider-next-790c:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.slider-next-790c p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

.header-920f {
  list-style: none;
  padding: 0;
  margin: 0;
}

.header-920f li {
  margin-bottom: var(--space-xs);
}

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

.header-920f a:hover {
  color: white;
}

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

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

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

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

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

.message_action_6f7a a:hover {
  color: white;
}

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

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

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

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

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

.alert-soft-1279 .header-97ac {
  color: #4caf50;
  font-size: 0.875rem;
}

.main-afe6 {
  list-style: none;
  padding: 0;
}

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

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

.main-afe6 a:hover {
  color: white;
}

.avatar-125b {
  list-style: none;
  padding: 0;
}

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

.avatar-125b a {
  color: #b0b0b0;
  text-decoration: none;
}

.avatar-125b a:hover {
  color: white;
}

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

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

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

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

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

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

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

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

.clean-b599:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .accent_abee {
    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;
  }
  
  .list_gold_306a {
    font-size: 2rem;
  }
  
  .active-bd4e {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .glass-2f00,
  .grid-east-1a23 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .complex_ca3e,
  .motion-8177,
  .action-06da,
  .shadow-stone-51bc,
  .input-9310,
  .notification_gas_4e5d,
  .thumbnail_orange_99b3,
  .pressed_e11a,
  .focus_98d2 {
    grid-template-columns: 1fr;
  }
  
  .card_middle_8579 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .feature-last-ec5a {
    padding: var(--space-lg) 0;
  }
  
  .active-117d li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .active-117d li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .status_basic_073c {
    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_middle_8579 {
    grid-template-columns: 1fr;
  }
  
  .in_6d06,
  .info-gold-942c,
  .badge_7beb {
    flex-direction: column;
    width: 100%;
  }
  
  .rough-6ebd,
  .gradient-0cf6,
  .in_6d06 .status_basic_073c,
  .info-gold-942c .status_basic_073c {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .list_gold_306a {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .active-bd4e {
    font-size: 1.375rem;
  }
  
  .carousel-cb1b {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .fresh-c4aa,
  .down-31c4,
  .title-north-476e,
  .heading-9fb6,
  .tabs-1bc1 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .overlay-motion-a314 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .warm-c1d0 {
    gap: var(--space-xs);
  }
  
  .chip-f91c {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .element_aef8 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .dropdown_mini_7747 {
    width: 150px;
    height: 150px;
  }
  
  .card-47a2 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .menu_gas_4e49,
  .wide_9a46,
  .in_6d06,
  .search-north-a792,
  .shadow_0d9b,
  .active-b0ca,
  .row_in_e6f9 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .feature-last-ec5a {
    page-break-inside: avoid;
  }
}

/* css-noise: 04c0 */
.phantom-card-g4 {
  padding: 0.5rem;
  font-size: 14px;
  line-height: 1.1;
}
