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

.progress-6d07:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.sidebar_brown_0b08,
header,
.gallery_0e7b,
.block-light-4a24,
.element-copper-9bda,
.article_lower_24bb,
.fast-4a7a,
.pagination_b21e,
.orange_34b0 {
  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
   ============================================ */
.sidebar_brown_0b08 {
  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);
}

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

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

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

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

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

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

.grid_b7da {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: #e8f5e9;
  color: var(--color-success);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 12px;
  white-space: nowrap;
}

.last_e2ec {
  flex: 1;
}

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

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

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

.selected-cc00.fn-active-229f {
  background: var(--color-primary);
  color: white;
}

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

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

.tabs-0895 svg {
  transition: transform 0.2s ease;
}

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

.search-gas-9a9e {
  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;
}

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

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

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

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

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

.block-simple-6be7 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.mini-4e7e svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.description-cold-0c49[aria-expanded="true"] .middle-edf3:nth-child(2) {
  opacity: 0;
}

.description-cold-0c49[aria-expanded="true"] .middle-edf3:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Menu */
@media (max-width: 1100px) {
  .last_e2ec {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    padding: 80px 0 20px;
    transition: right 0.3s ease-out;
    z-index: 999;
    overflow-y: auto; /* 移动端菜单内容过多时可滚动 */
    overflow-x: visible; /* 水平方向不滚动，确保下拉菜单可见 */
    /* 隐藏滚动条外观，但保留可滚动能力，视觉上更自然 */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }

  .last_e2ec::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .last_e2ec.south-7f14 {
    display: block;
    right: 0;
  }
  
  .white_db92 {
    flex-direction: column;
    gap: 0;
  }
  
  .selected-cc00 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .last_e2ec::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-out;
  }
  
  .last_e2ec.south-7f14::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .last_e2ec {
    display: none;
  }
  
  .description-cold-0c49 {
    display: flex;
  }
  
  .grid_b7da {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .mini-4e7e,
  .image_fd1f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .gas_bf21 {
    position: relative;
  }
  
  .search-gas-9a9e {
    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;
  }
  
  .tabs-0895[aria-expanded="true"] + .search-gas-9a9e {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .container-dynamic-3045 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .block-simple-6be7 {
    gap: 8px;
  }
  
  .mini-4e7e {
    display: none;
  }
  
  .image_fd1f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .sidebar_dim_4f3e img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.simple-f03b svg {
  flex-shrink: 0;
}

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

.simple-f03b a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.stale-d239 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.popup-active-c34d {
  display: flex;
  gap: var(--space-sm);
}

.aside-9a8d {
  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;
}

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

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

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

.tooltip-412b {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.over-c713 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .avatar-3e02 {
    grid-template-columns: 1fr;
  }
  
  .tabs_a78d {
    font-size: 1.75rem;
  }
  
  .gradient_febf {
    order: -1;
    max-width: 100%;
  }
  
  .over-c713 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .tabs_a78d {
    font-size: 1.5rem;
  }
  
  .image-red-30cb {
    font-size: 1rem;
  }
  
  .stale-d239 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .over-c713 {
    max-width: 250px;
  }
}

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

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

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

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

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

.caption-pressed-6b49 {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.caption-pressed-6b49:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.last-cf16 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;
}

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

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

.button-current-e292 {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

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

.outer-8b35 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.outer-8b35 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);
}

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

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

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

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

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

.outer-8b35 strong {
  font-weight: 600;
  color: var(--color-text);
}

.outer-8b35 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.outer-8b35 a:hover {
  color: var(--color-primary-dark);
}

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

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

.dirty-0c54 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) {
  .alert_f177 {
    grid-template-columns: 1fr;
  }
  
  .tabs_0d2f {
    font-size: 1.75rem;
  }
  
  .outer-8b35 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .tabs_0d2f {
    font-size: 1.5rem;
  }
  
  .outer-8b35 h3 {
    font-size: 1.375rem;
  }
  
  .outer-8b35 h4 {
    font-size: 1.125rem;
  }
}

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

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

.gradient-top-7ef7 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.warm-4f10 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.header-pro-84c7 strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

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

.slow-7d38 {
  flex-shrink: 0;
}

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

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

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

.summary_east_a5e9,
.backdrop_red_c4f5,
.text_copper_35d8 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.summary_east_a5e9 thead,
.backdrop_red_c4f5 thead {
  background: var(--color-primary);
  color: white;
}

.summary_east_a5e9 th,
.summary_east_a5e9 td,
.backdrop_red_c4f5 th,
.backdrop_red_c4f5 td,
.text_copper_35d8 th,
.text_copper_35d8 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .summary_east_a5e9 th,
  .summary_east_a5e9 td,
  .backdrop_red_c4f5 th,
  .backdrop_red_c4f5 td,
  .text_copper_35d8 th,
  .text_copper_35d8 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .summary_east_a5e9,
  .backdrop_red_c4f5,
  .text_copper_35d8 {
    min-width: 600px;
  }
}

.summary_east_a5e9 th,
.backdrop_red_c4f5 th,
.text_copper_35d8 th {
  font-weight: 600;
}

.summary_east_a5e9 tbody tr:hover,
.backdrop_red_c4f5 tbody tr:hover,
.text_copper_35d8 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.detail-complex-7c50 h4 {
  color: white;
}

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

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

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

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

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

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

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

.search_7e72:hover {
  text-decoration: underline;
}

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

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

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

.backdrop-first-e9f7 {
  font-weight: 600;
  color: white;
}

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

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

.complex_4a7e {
  color: #4caf50;
}

.carousel_slow_66f0 {
  color: #ff9800;
}

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

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

.carousel-solid-0fda {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

/* ============================================
   15. FEATURE GRID
   ============================================ */
.grid-449d {
  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-449d {
    grid-template-columns: 1fr;
  }
}

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

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

.fast-94ca {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.media-34fa .breadcrumb_fixed_5032 {
  width: 100%;
  background: white;
}

.north-8410 .breadcrumb_fixed_5032 {
  color: #667eea;
}

.hot_3475 .breadcrumb_fixed_5032 {
  color: #f5576c;
}

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

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

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

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

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

.gas-0b77 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .link_b7aa {
    padding: var(--space-md);
  }
  
  .gas-0b77 {
    padding: var(--space-md);
  }
  
  .avatar-d075 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.badge-a9a7,
.hard_548b,
.huge_7f42,
.hover-yellow-e397 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.header-2bd7:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

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

.video_simple_84c9 .thumbnail-8824 {
  background: #e8f5e9;
  color: var(--color-success);
}

.fast_4e53 .thumbnail-8824 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.yellow-290b {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.box-176c {
  margin-top: var(--space-xxl);
}

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

.smooth-8a37 {
  text-align: center;
}

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

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

.shade_84c1 .backdrop-first-e9f7 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.short-8680 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.gold_ba46 {
  text-align: right;
}

.gold_ba46 .popup_34fd {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

.large-0619 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

.down-0ea4 {
  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);
}

.down-0ea4:hover {
  background: var(--color-bg-alt);
}

.slider-yellow-a768 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.down-0ea4[aria-expanded="true"] .slider-yellow-a768 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.aside_1564,
.input-mini-2018 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.aside_1564 h4,
.input-mini-2018 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.aside_1564 ul,
.input-mini-2018 ul {
  list-style: none;
  padding: 0;
}

.aside_1564 li,
.input-mini-2018 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.lite_5e27 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.grid_e258 .popup-active-c34d {
  color: #4caf50;
  font-size: 0.875rem;
}

.table-753d {
  list-style: none;
  padding: 0;
}

.table-753d li {
  margin-bottom: var(--space-xs);
}

.table-753d a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.table-753d a:hover {
  color: white;
}

.dirty-1ce3 {
  list-style: none;
  padding: 0;
}

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

.dirty-1ce3 a {
  color: #b0b0b0;
  text-decoration: none;
}

.dirty-1ce3 a:hover {
  color: white;
}

.warm-3947 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid #424242;
  flex-wrap: wrap;
  gap: var(--space-md);
}

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

.description-large-85e6 a {
  color: #4caf50;
  text-decoration: none;
}

.photo-cool-3f24 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.dropdown_32c3:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .warm-3947 {
    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;
  }
  
  .tabs_a78d {
    font-size: 2rem;
  }
  
  .tabs_0d2f {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .avatar-3e02,
  .alert_f177 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .grid-449d,
  .white_e0ad,
  .heading_5c27,
  .accent_f70d,
  .outline_cold_ebf5,
  .secondary_2fda,
  .complex_1d7b,
  .purple_f8e4 {
    grid-template-columns: 1fr;
  }
  
  .element_afcb {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .fast-4a7a {
    padding: var(--space-lg) 0;
  }
  
  .last-cf16 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .last-cf16 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .breadcrumb_fixed_5032 {
    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;
  }
  
  .element_afcb {
    grid-template-columns: 1fr;
  }
  
  .tooltip-412b,
  .gallery-west-b0cc,
  .label_75bf {
    flex-direction: column;
    width: 100%;
  }
  
  .slider_inner_7d1d,
  .element_54ba,
  .tooltip-412b .breadcrumb_fixed_5032,
  .gallery-west-b0cc .breadcrumb_fixed_5032 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .tabs_a78d {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .tabs_0d2f {
    font-size: 1.375rem;
  }
  
  .message-current-2eb5 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .nav_current_1cd2,
  .dim-1b73,
  .alert_5529,
  .tag_gas_dbd1,
  .yellow-46cc {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .black_b154 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .liquid-1598 {
    gap: var(--space-xs);
  }
  
  .simple-f03b {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .motion-3107 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .shade_84c1 {
    width: 150px;
    height: 150px;
  }
  
  .orange_c9b1 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .sidebar_brown_0b08,
  .gallery_0e7b,
  .tooltip-412b,
  .media_east_b12a,
  .pagination_b21e,
  .orange_34b0,
  .description-cold-0c49 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .fast-4a7a {
    page-break-inside: avoid;
  }
}

/* css-noise: 8cb8 */
.ghost-box-g1 {
  padding: 0.1rem;
  font-size: 11px;
  line-height: 1.2;
}
