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

.stale-91b8:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.selected-638a):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. */
.selected-638a,
header,
.main_blue_10df,
.gallery-soft-2faa,
.pagination-dim-2cb4,
.slow-f20f,
.info_huge_e6fc,
.thumbnail-51e9,
.active_e0a2 {
  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
   ============================================ */
.selected-638a {
  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);
}

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

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

/* Scrolled state */
.selected-638a.stale-66c5 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.fixed-20c3 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.badge_054c {
  flex: 1;
}

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

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

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

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

/* Dropdown Navigation */
.active-c305 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

/* Header Login Button */
.popup-bronze-89e0 {
  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;
}

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

.popup-bronze-89e0 svg {
  flex-shrink: 0;
}

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

.highlight-951f: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);
}

.highlight-951f svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .badge_054c {
    display: none;
  }
  
  .gradient_075e {
    display: flex;
  }
  
  .clean_f243 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .popup-bronze-89e0,
  .highlight-951f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .active-c305 {
    position: relative;
  }
  
  .table-5994 {
    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;
  }
  
  .prev_f7c3[aria-expanded="true"] + .table-5994 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .gold-6915 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .card_first_b9df {
    gap: 8px;
  }
  
  .popup-bronze-89e0 {
    display: none;
  }
  
  .highlight-951f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .fixed-20c3 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.fast-f7d4 svg {
  flex-shrink: 0;
}

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

.fast-f7d4 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.modal-87fa {
  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;
}

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

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

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

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

.component-554d {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .module-d1e3 {
    grid-template-columns: 1fr;
  }
  
  .simple-d8ae {
    font-size: 1.75rem;
  }
  
  .component-554d {
    order: -1;
    max-width: 100%;
  }
  
  .info_steel_5cc0 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .simple-d8ae {
    font-size: 1.5rem;
  }
  
  .notification-ddc5 {
    font-size: 1rem;
  }
  
  .cool_be7a {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .info_steel_5cc0 {
    max-width: 250px;
  }
}

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

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

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

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

.hidden-gas-ad62:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.sidebar-cold-98a4 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

.icon-green-36e4:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

.link-82e0 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.link-82e0 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);
}

.link-82e0 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.paper-8a4b {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.paper-8a4b 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) {
  .active-black-498d {
    grid-template-columns: 1fr;
  }
  
  .table_tiny_338a {
    font-size: 1.75rem;
  }
  
  .card_pro_43b6 {
    max-width: 100%;
  }
}

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

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

.hover-hot-966d {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

.grid-current-1a78 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.popup-2048 {
  flex-shrink: 0;
}

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

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

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

.stale-f9a7,
.element_white_9a27,
.chip_1dfa {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.stale-f9a7 thead,
.element_white_9a27 thead {
  background: var(--color-primary);
  color: white;
}

.stale-f9a7 th,
.stale-f9a7 td,
.element_white_9a27 th,
.element_white_9a27 td,
.chip_1dfa th,
.chip_1dfa td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .stale-f9a7 th,
  .stale-f9a7 td,
  .element_white_9a27 th,
  .element_white_9a27 td,
  .chip_1dfa th,
  .chip_1dfa td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .stale-f9a7,
  .element_white_9a27,
  .chip_1dfa {
    min-width: 600px;
  }
}

.stale-f9a7 th,
.element_white_9a27 th,
.chip_1dfa th {
  font-weight: 600;
}

.stale-f9a7 tbody tr:hover,
.element_white_9a27 tbody tr:hover,
.chip_1dfa tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.breadcrumb-6a5b h4 {
  color: white;
}

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

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

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

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

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

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

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

.grid-active-7a3e:hover {
  text-decoration: underline;
}

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

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

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

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

.tag-d6f9 {
  list-style: none;
  padding: 0;
}

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

.gradient_d20d {
  color: #4caf50;
}

.basic_0d92 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.active-first-266e {
  margin-top: var(--space-xxl);
}

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

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

@media (max-width: 768px) {
  .link-bottom-365a {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

.image-cd9c .section-d234 {
  width: 100%;
  background: white;
}

.item_in_e096 .section-d234 {
  color: #667eea;
}

.black_33d6 .section-d234 {
  color: #f5576c;
}

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

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

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

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

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

.main-bright-f5c8 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .nav_dark_c41f {
    padding: var(--space-md);
  }
  
  .main-bright-f5c8 {
    padding: var(--space-md);
  }
  
  .logo-a5e3 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.media_warm_bcbb,
.picture-tall-a45f,
.plasma-6d3d,
.active_right_a5ce {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.pagination-inner-5c65 {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

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

.highlight-soft-0135:hover {
  background: var(--color-primary-dark);
}

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

.block-027b h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.image-cce5 .left-b32f {
  background: #e8f5e9;
  color: var(--color-success);
}

.orange-f4ff .left-b32f {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.pagination-pressed-abe7 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

.badge-iron-492e {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

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

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

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

.clean_0aca {
  text-align: center;
}

.thumbnail-dynamic-28e7 {
  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);
}

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

.thumbnail-dynamic-28e7 .banner_c8fe {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.upper-651a {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.out-78ec {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.sort-cool-119d {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.wood-8564 {
  text-align: right;
}

.wood-8564 .icon-7e19 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.content-plasma-6479 {
  background: #e8f5e9;
  color: #2e7d32;
}

.dynamic-0e07 {
  background: #e3f2fd;
  color: #1565c0;
}

.notice-static-d5c5 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

.nav-light-59ad {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.secondary-wide-12a3 {
  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);
}

.secondary-wide-12a3:hover {
  background: var(--color-bg-alt);
}

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

.secondary-wide-12a3[aria-expanded="true"] .card_dynamic_3ac1 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.pattern-b6b7,
.texture-center-3b29 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.pattern-b6b7 h4,
.texture-center-3b29 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.pattern-b6b7 ul,
.texture-center-3b29 ul {
  list-style: none;
  padding: 0;
}

.pattern-b6b7 li,
.texture-center-3b29 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.breadcrumb-9dc6 {
  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);
}

.over-e70f {
  font-style: italic;
}

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

.wrapper-white-8572 {
  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;
}

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

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

.avatar-short-8c6a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

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

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

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

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

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

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

.section-smooth-171a {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.tabs-tall-9125 .tertiary_406e {
  color: #4caf50;
  font-size: 0.875rem;
}

.old-e0d3 {
  list-style: none;
  padding: 0;
}

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

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

.old-e0d3 a:hover {
  color: white;
}

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

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

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

.slider_aac8 a:hover {
  color: white;
}

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

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

.backdrop-white-ddb2 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

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

@media (max-width: 768px) {
  .solid-0005 {
    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;
  }
  
  .simple-d8ae {
    font-size: 2rem;
  }
  
  .table_tiny_338a {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .module-d1e3,
  .active-black-498d {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .liquid-46df,
  .primary_5f7a,
  .link-bottom-365a,
  .border_8a84,
  .purple-3fa4,
  .border_paper_a218,
  .tertiary_655c,
  .full_12ef {
    grid-template-columns: 1fr;
  }
  
  .surface_5c8e {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .info_huge_e6fc {
    padding: var(--space-lg) 0;
  }
  
  .link-82e0 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .link-82e0 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .section-d234 {
    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;
  }
  
  .surface_5c8e {
    grid-template-columns: 1fr;
  }
  
  .breadcrumb-f41a,
  .avatar-short-8c6a,
  .sort_slow_a927 {
    flex-direction: column;
    width: 100%;
  }
  
  .sidebar-cold-98a4,
  .pressed-e472,
  .breadcrumb-f41a .section-d234,
  .avatar-short-8c6a .section-d234 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .simple-d8ae {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .table_tiny_338a {
    font-size: 1.375rem;
  }
  
  .feature-e9c6 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .icon-green-36e4,
  .tabs_north_a786,
  .first_7a79,
  .orange-84fa,
  .green-3a65 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .tall_1472 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .hot_783b {
    gap: var(--space-xs);
  }
  
  .fast-f7d4 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .bronze_4fe1 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .thumbnail-dynamic-28e7 {
    width: 150px;
    height: 150px;
  }
  
  .first-92df {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .selected-638a,
  .main_blue_10df,
  .breadcrumb-f41a,
  .wrapper-white-8572,
  .thumbnail-51e9,
  .active_e0a2,
  .gradient_075e {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .info_huge_e6fc {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 559c */
.promo-block-s3 {
  padding: 0.5rem;
  font-size: 14px;
  line-height: 1.1;
}
