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

.warm-aa49:focus {
  top: 0;
}

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

@media (max-width: 768px) {
  .photo-outer-509c {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .photo-outer-509c {
    padding: 0 12px;
  }
}

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

/* Allow specific elements to exceed container.
   html/body are excluded on purpose: releasing their max-width removes the
   last guard against a horizontally scrollable page. */
.down_330a,
header,
.dropdown-df1b,
.card-top-eb8b,
.surface-7794,
.south-2a86,
.avatar_dc44,
.feature_15ea,
.over_f7e1 {
  max-width: none;
}

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

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

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

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

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

.media-iron-97f1 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

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

.active_dfb8 {
  flex: 1;
}

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

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

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

.hard_c7de.red-c648 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.detail-a65d {
  position: relative;
}

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

.overlay_85cc svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.narrow-8c6a svg {
  flex-shrink: 0;
}

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

.shade-0cec: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);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .active_dfb8 {
    display: none;
  }
  
  .table_9d18 {
    display: flex;
  }
  
  .accent-d889 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .narrow-8c6a,
  .shade-0cec {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .detail-a65d {
    position: relative;
  }
  
  .shade_large_1a72 {
    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;
  }
  
  .overlay_85cc[aria-expanded="true"] + .shade_large_1a72 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .accent_purple_2ece {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .primary_fresh_f14d {
    gap: 8px;
  }
  
  .narrow-8c6a {
    display: none;
  }
  
  .shade-0cec {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .aside_d8cd img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.popup_right_8131 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.mask-thick-91d0 a {
  color: var(--color-primary);
  text-decoration: none;
}

.mask-thick-91d0 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

.active-old-4b27 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.active-old-4b27 strong {
  font-weight: 600;
  color: var(--color-text);
}

.active-old-4b27 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.heading-inner-464a {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .soft_92aa {
    grid-template-columns: 1fr;
  }
  
  .heading-39d6 {
    font-size: 1.75rem;
  }
  
  .texture_0508 {
    order: -1;
    max-width: 100%;
  }
  
  .text-a6b0 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .heading-39d6 {
    font-size: 1.5rem;
  }
  
  .table-ee88 {
    font-size: 1rem;
  }
  
  .mask-thick-91d0 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .text-a6b0 {
    max-width: 250px;
  }
}

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

.frame-001f {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

.article-pro-dc13 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.link-151f {
  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_ee55 {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hover_prev_ea44 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) {
  .out_c22e {
    grid-template-columns: 1fr;
  }
  
  .link-151f {
    font-size: 1.75rem;
  }
  
  .form-fa0f {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .link-151f {
    font-size: 1.5rem;
  }
  
  .form-fa0f h3 {
    font-size: 1.375rem;
  }
  
  .form-fa0f h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.hidden-out-8ea8 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.left-4c1e {
  flex-shrink: 0;
}

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

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

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

.tabs-bottom-063c,
.progress-7529,
.slow-8aa2 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.tabs-bottom-063c thead,
.progress-7529 thead {
  background: var(--color-primary);
  color: white;
}

.tabs-bottom-063c th,
.tabs-bottom-063c td,
.progress-7529 th,
.progress-7529 td,
.slow-8aa2 th,
.slow-8aa2 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .tabs-bottom-063c th,
  .tabs-bottom-063c td,
  .progress-7529 th,
  .progress-7529 td,
  .slow-8aa2 th,
  .slow-8aa2 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .tabs-bottom-063c,
  .progress-7529,
  .slow-8aa2 {
    min-width: 600px;
  }
}

.tabs-bottom-063c th,
.progress-7529 th,
.slow-8aa2 th {
  font-weight: 600;
}

.tabs-bottom-063c tbody tr:hover,
.progress-7529 tbody tr:hover,
.slow-8aa2 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.panel-steel-7010 h4 {
  color: white;
}

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

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

.top-f17b:last-child {
  border-bottom: none;
}

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

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

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

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

.solid-7ed8:hover {
  text-decoration: underline;
}

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

.summary-dynamic-db39 {
  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);
}

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

.detail-black-b4c3 {
  font-weight: 600;
  color: white;
}

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

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

.inner_43c2 {
  color: #4caf50;
}

.accordion-first-6910 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

.yellow-72a9 h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

.status-66ee {
  margin-top: var(--space-xxl);
}

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

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

@media (max-width: 768px) {
  .feature-medium-074b {
    grid-template-columns: 1fr;
  }
}

.element-narrow-10db {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.element-narrow-10db ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.element-narrow-10db li {
  padding: var(--space-xs) 0;
  color: white;
}

.element-narrow-10db .carousel_next_75ab {
  width: 100%;
  background: white;
}

.list_under_01be .carousel_next_75ab {
  color: #667eea;
}

.alert_gas_b971 .carousel_next_75ab {
  color: #f5576c;
}

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

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

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

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

.image-full-cc68 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .image-full-cc68 {
    padding: var(--space-md);
  }
  
  .accent_d39f {
    padding: var(--space-md);
  }
  
  .accent_dim_6656 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.filter-89b3,
.upper_f7be,
.search-thick-b631,
.prev_aa87 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.banner-wood-574d {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

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

.widget-center-4d6f:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

.footer-844e {
  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);
}

.section-d1af .footer-844e {
  background: #e8f5e9;
  color: var(--color-success);
}

.small_2c71 .footer-844e {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.menu-fast-2a5b {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

.panel-929b {
  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);
}

.outline-c9bb {
  text-align: center;
}

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

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

.tabs_small_a845 .detail-black-b4c3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.pressed-397e p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.pagination-bottom-0b46 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dim-6ea1 {
  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;
}

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

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

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

.silver_374f {
  text-align: right;
}

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

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

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

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

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

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

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

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

.carousel-7733 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

.gallery-380f {
  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);
}

.gallery-380f:hover {
  background: var(--color-bg-alt);
}

.title-full-12c8 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.gallery-380f[aria-expanded="true"] .title-full-12c8 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.layout-current-04e1 {
  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);
}

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

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

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

.breadcrumb-990d,
.widget_5f7e {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.breadcrumb-990d h4,
.widget_5f7e h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.breadcrumb-990d ul,
.widget_5f7e ul {
  list-style: none;
  padding: 0;
}

.breadcrumb-990d li,
.widget_5f7e li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.gallery-b507 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.picture_down_32cc .input_prev_6179 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.layout_ba9c a:hover {
  color: white;
}

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

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

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

.hover_lite_6ede a:hover {
  color: white;
}

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

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

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

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

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

.badge-pro-79cd {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.badge-pro-79cd:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .tabs_87cf {
    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;
  }
  
  .heading-39d6 {
    font-size: 2rem;
  }
  
  .link-151f {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .soft_92aa,
  .out_c22e {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .label_dynamic_149b,
  .header-eb64,
  .feature-medium-074b,
  .frame_8f94,
  .mask-huge-2522,
  .header-fixed-2b8b,
  .widget_dynamic_76c4,
  .south_e410 {
    grid-template-columns: 1fr;
  }
  
  .black-1fb5 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .avatar_dc44 {
    padding: var(--space-lg) 0;
  }
  
  .medium_a6af li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .medium_a6af li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .carousel_next_75ab {
    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;
  }
  
  .black-1fb5 {
    grid-template-columns: 1fr;
  }
  
  .heading-inner-464a,
  .wide-cb66,
  .pressed_da3c {
    flex-direction: column;
    width: 100%;
  }
  
  .article-pro-dc13,
  .description-eebc,
  .heading-inner-464a .carousel_next_75ab,
  .wide-cb66 .carousel_next_75ab {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .heading-39d6 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .link-151f {
    font-size: 1.375rem;
  }
  
  .outline_tiny_5503 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .texture_3379,
  .yellow-72a9,
  .silver-5e26,
  .lite-dde2,
  .right-6166 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .east_bb5c {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .input-9864 {
    gap: var(--space-xs);
  }
  
  .popup_right_8131 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .summary-dynamic-db39 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .tabs_small_a845 {
    width: 150px;
    height: 150px;
  }
  
  .chip_fast_d28f {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .down_330a,
  .dropdown-df1b,
  .heading-inner-464a,
  .tag_6df8,
  .feature_15ea,
  .over_f7e1,
  .table_9d18 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .avatar_dc44 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 610c */
.ghost-box-j3 {
  padding: 0.1rem;
  font-size: 13px;
  line-height: 1.2;
}
