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

.stone-6951:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.texture-5d88):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. */
.texture-5d88,
header,
.nav_bd5e,
.content-static-4a7a,
.hidden-83f0,
.hidden-plasma-4c5e,
.fixed-5aa5,
.picture-paper-b9b9,
.header-3bcd {
  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
   ============================================ */
.texture-5d88 {
  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);
}

.cold-5ab0 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

.solid_ff06 {
  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-60d5 {
  flex: 1;
}

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

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

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

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

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

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

.dirty-308f svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.fresh-7008 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.list-iron-1756[aria-expanded="true"] .west_8067:nth-child(2) {
  opacity: 0;
}

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

/* Mobile Navigation Menu */
@media (max-width: 1100px) {
  .active-60d5 {
    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-60d5::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .active-60d5.tag-glass-5a64 {
    display: block;
    right: 0;
  }
  
  .hard_6543 {
    flex-direction: column;
    gap: 0;
  }
  
  .text_pro_c32f {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .active-60d5::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-60d5.tag-glass-5a64::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .active-60d5 {
    display: none;
  }
  
  .list-iron-1756 {
    display: flex;
  }
  
  .solid_ff06 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .fresh-7008,
  .under_a7dc {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .primary_under_df06 {
    position: relative;
  }
  
  .element_outer_f7d4 {
    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;
  }
  
  .dirty-308f[aria-expanded="true"] + .element_outer_f7d4 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .huge_2d83 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .description-cfca {
    gap: 8px;
  }
  
  .fresh-7008 {
    display: none;
  }
  
  .under_a7dc {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .box_2b7f img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.secondary_current_980e svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.dim-c1b8 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

.shadow-huge-3eb6 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .secondary-3af6 {
    grid-template-columns: 1fr;
  }
  
  .action_c658 {
    font-size: 1.75rem;
  }
  
  .thick-a381 {
    order: -1;
    max-width: 100%;
  }
  
  .up_bd38 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .action_c658 {
    font-size: 1.5rem;
  }
  
  .block-5afb {
    font-size: 1rem;
  }
  
  .dim-c1b8 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .up_bd38 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

.old-2d17 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.liquid_e4b2 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) {
  .tertiary_first_b128 {
    grid-template-columns: 1fr;
  }
  
  .heading_lite_1b94 {
    font-size: 1.75rem;
  }
  
  .popup_small_380f {
    max-width: 100%;
  }
}

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

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

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

.stone-5a08 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.nav-plasma-6a60 {
  flex-shrink: 0;
}

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

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

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

.element_49d0,
.hard-1b89,
.column-plasma-38cf {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.element_49d0 thead,
.hard-1b89 thead {
  background: var(--color-primary);
  color: white;
}

.element_49d0 th,
.element_49d0 td,
.hard-1b89 th,
.hard-1b89 td,
.column-plasma-38cf th,
.column-plasma-38cf td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .element_49d0 th,
  .element_49d0 td,
  .hard-1b89 th,
  .hard-1b89 td,
  .column-plasma-38cf th,
  .column-plasma-38cf td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .element_49d0,
  .hard-1b89,
  .column-plasma-38cf {
    min-width: 600px;
  }
}

.element_49d0 th,
.hard-1b89 th,
.column-plasma-38cf th {
  font-weight: 600;
}

.element_49d0 tbody tr:hover,
.hard-1b89 tbody tr:hover,
.column-plasma-38cf tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.table_3dd1 h4 {
  color: white;
}

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

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

.shadow-simple-3744:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

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

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

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

.nav-ffd0 {
  color: #4caf50;
}

.new-bbf7 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.accent_7ed6 .sort_over_2b38 {
  width: 100%;
  background: white;
}

.black-0421 .sort_over_2b38 {
  color: #667eea;
}

.surface_soft_eff9 .sort_over_2b38 {
  color: #f5576c;
}

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

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

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

.wrapper-4e3e {
  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);
}

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

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

@media (max-width: 768px) {
  .badge_bddd {
    padding: var(--space-md);
  }
  
  .description_9c21 {
    padding: var(--space-md);
  }
  
  .backdrop-7f3e {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.accent-48df,
.detail-abd0,
.stone-8e7f,
.thumbnail_red_00fa {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.item-selected-c928:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

.module-cool-b85d {
  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);
}

.brown_0610 .module-cool-b85d {
  background: #e8f5e9;
  color: var(--color-success);
}

.input_full_1064 .module-cool-b85d {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .logo-under-7e62 {
    grid-template-columns: 1fr;
  }
}

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

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

.hero-wide-43b4 {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

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

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

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

.picture_up_eeee {
  text-align: center;
}

.slider-470a {
  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);
}

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

.slider-470a .picture_f4e3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.paragraph-easy-d430 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.soft-db29 {
  margin-bottom: var(--space-xl);
}

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

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

.active-white-26cf {
  color: var(--color-text-light);
}

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

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

.lower-0d05 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

.module-4f0f {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.texture_pink_9031 {
  text-align: right;
}

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

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

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

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

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

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

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

.photo-d4e7 {
  background: #e3f2fd;
  color: #1565c0;
}

.list-25b6 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.gradient_hovered_52e5 {
  padding: 6px 12px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

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

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

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

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

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

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

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

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

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

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

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

.accordion-a0c4[aria-expanded="true"] .info_8f4b {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .main-pressed-11d7 {
    grid-template-columns: 1fr;
  }
}

.disabled-9a0a,
.component-small-cfbb {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.disabled-9a0a h4,
.component-small-cfbb h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.disabled-9a0a ul,
.component-small-cfbb ul {
  list-style: none;
  padding: 0;
}

.disabled-9a0a li,
.component-small-cfbb li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.tag-action-aa13 {
  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);
}

.narrow_6e5c {
  font-style: italic;
}

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

.yellow-0d48 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.description-e7ba .dynamic_9023 {
  color: #4caf50;
  font-size: 0.875rem;
}

.breadcrumb-hard-8286 {
  list-style: none;
  padding: 0;
}

.breadcrumb-hard-8286 li {
  margin-bottom: var(--space-xs);
}

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

.breadcrumb-hard-8286 a:hover {
  color: white;
}

.paragraph-44fe {
  list-style: none;
  padding: 0;
}

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

.paragraph-44fe a {
  color: #b0b0b0;
  text-decoration: none;
}

.paragraph-44fe a:hover {
  color: white;
}

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

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

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

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

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

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

.preview-paper-d42f:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .small-8505 {
    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;
  }
  
  .action_c658 {
    font-size: 2rem;
  }
  
  .heading_lite_1b94 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .secondary-3af6,
  .tertiary_first_b128 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .stale_75ae,
  .highlight-0713,
  .wrapper_4100,
  .logo-under-7e62,
  .main-pressed-11d7,
  .main_7beb,
  .tag_mini_18d0,
  .avatar_118b {
    grid-template-columns: 1fr;
  }
  
  .info_eea9 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .fixed-5aa5 {
    padding: var(--space-lg) 0;
  }
  
  .surface_middle_933b li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .surface_middle_933b li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .sort_over_2b38 {
    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;
  }
  
  .info_eea9 {
    grid-template-columns: 1fr;
  }
  
  .shadow-huge-3eb6,
  .message-034d,
  .layout-01f0 {
    flex-direction: column;
    width: 100%;
  }
  
  .last-bc40,
  .old-2d17,
  .shadow-huge-3eb6 .sort_over_2b38,
  .message-034d .sort_over_2b38 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .action_c658 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .heading_lite_1b94 {
    font-size: 1.375rem;
  }
  
  .light_d929 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .popup_967f,
  .easy-f0c8,
  .bronze-534c,
  .pagination_1683,
  .hidden-6769 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .text_lower_20d2 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .east_ef71 {
    gap: var(--space-xs);
  }
  
  .secondary_current_980e {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .fresh-cfad {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .slider-470a {
    width: 150px;
    height: 150px;
  }
  
  .wood_18f3 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .texture-5d88,
  .nav_bd5e,
  .shadow-huge-3eb6,
  .yellow-0d48,
  .picture-paper-b9b9,
  .header-3bcd,
  .list-iron-1756 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .fixed-5aa5 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: e73c */
.ghost-box-d9 {
  padding: 0.4rem;
  font-size: 12px;
  line-height: 1.0;
}
