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

.breadcrumb_ad04:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.title_8192):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. */
.title_8192,
header,
.row_3508,
.popup-bronze-4831,
.popup-copper-798f,
.hover_5dc3,
.message-dynamic-8ca8,
.hard_414a,
.pro_dfd5 {
  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
   ============================================ */
.title_8192 {
  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-23f8 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.north-42aa img {
  height: 36px;
  width: auto;
  display: block;
}

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

.link_5e5f {
  flex: 1;
}

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

.main-selected-506d {
  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);
}

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

.main-selected-506d.bronze-f5c0 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.upper-9bb4 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

/* Header Login Button */
.rough-866a {
  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;
}

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

.rough-866a svg {
  flex-shrink: 0;
}

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

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

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

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

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

.focus-copper-1b03 {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

/* Hamburger animation when active */
.component-gold-2e70[aria-expanded="true"] .focus-copper-1b03:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.component-gold-2e70[aria-expanded="true"] .focus-copper-1b03:nth-child(2) {
  opacity: 0;
}

.component-gold-2e70[aria-expanded="true"] .focus-copper-1b03:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .link_5e5f::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .link_5e5f.image-tall-5c8a {
    display: block;
    right: 0;
  }
  
  .bottom_c254 {
    flex-direction: column;
    gap: 0;
  }
  
  .main-selected-506d {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .link_5e5f::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;
  }
  
  .link_5e5f.image-tall-5c8a::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .link_5e5f {
    display: none;
  }
  
  .component-gold-2e70 {
    display: flex;
  }
  
  .button-d390 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .rough-866a,
  .main_bright_d530 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .upper-9bb4 {
    position: relative;
  }
  
  .image-3656 {
    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;
  }
  
  .brown_27ff[aria-expanded="true"] + .image-3656 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .caption_short_4c0c {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .feature_5a92 {
    gap: 8px;
  }
  
  .rough-866a {
    display: none;
  }
  
  .main_bright_d530 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .north-42aa img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.bronze-151d {
  display: flex;
  align-items: center;
  gap: 6px;
}

.bronze-151d svg {
  flex-shrink: 0;
}

.bronze-151d a {
  color: var(--color-primary);
  text-decoration: none;
}

.bronze-151d a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.main-07ff {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--color-primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .hovered_537b {
    grid-template-columns: 1fr;
  }
  
  .black-cf6e {
    font-size: 1.75rem;
  }
  
  .up_28eb {
    order: -1;
    max-width: 100%;
  }
  
  .narrow_8704 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .black-cf6e {
    font-size: 1.5rem;
  }
  
  .popup_wide_5576 {
    font-size: 1rem;
  }
  
  .progress_red_ad5c {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .narrow_8704 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

/* ============================================
   8. STATS SECTION
   ============================================ */
.popup-copper-798f {
  padding: var(--space-xl) 0;
  background: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.message-dynamic-8ca8 {
  padding: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.card_old_b648 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) {
  .sort_83fb {
    grid-template-columns: 1fr;
  }
  
  .element-a5ea {
    font-size: 1.75rem;
  }
  
  .block-c8de {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .element-a5ea {
    font-size: 1.5rem;
  }
  
  .block-c8de h3 {
    font-size: 1.375rem;
  }
  
  .block-c8de h4 {
    font-size: 1.125rem;
  }
}

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

.footer-355d {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

.dropdown-huge-d443 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.module_gold_74b7 {
  flex-shrink: 0;
}

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

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

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

.main-lite-1b30,
.current-fd18,
.paper-0637 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.main-lite-1b30 thead,
.current-fd18 thead {
  background: var(--color-primary);
  color: white;
}

.main-lite-1b30 th,
.main-lite-1b30 td,
.current-fd18 th,
.current-fd18 td,
.paper-0637 th,
.paper-0637 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .main-lite-1b30 th,
  .main-lite-1b30 td,
  .current-fd18 th,
  .current-fd18 td,
  .paper-0637 th,
  .paper-0637 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .main-lite-1b30,
  .current-fd18,
  .paper-0637 {
    min-width: 600px;
  }
}

.main-lite-1b30 th,
.current-fd18 th,
.paper-0637 th {
  font-weight: 600;
}

.main-lite-1b30 tbody tr:hover,
.current-fd18 tbody tr:hover,
.paper-0637 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.title-glass-ff7e h4 {
  color: white;
}

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

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

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

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

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

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

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

.avatar-red-4d9c:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.badge-9511 {
  color: #4caf50;
}

.active_top_005d {
  color: #ff9800;
}

.description-east-8ce1 {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

.input-up-fee8 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pagination_23c3 .lower_6736 {
  width: 100%;
  background: white;
}

.primary-silver-c34d .lower_6736 {
  color: #667eea;
}

.column_cold_193d .lower_6736 {
  color: #f5576c;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.component-large-8c8d,
.backdrop-hard-4b92,
.table_paper_aeb7,
.sort-f943 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.grid-cool-e2a5 {
  border-color: var(--color-warning);
}

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

.link_6c83 .selected_5bcf {
  background: #e8f5e9;
  color: var(--color-success);
}

.grid-cool-e2a5 .selected_5bcf {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.block-soft-da3f {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.menu_fluid_7589 {
  text-align: center;
}

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

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

.section_b838 .focus_complex_a5df {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.backdrop-iron-1608 {
  margin-bottom: var(--space-xl);
}

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

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

.warm-718b {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

.caption-stale-3784 {
  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;
}

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

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

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

.component_fd30 {
  text-align: right;
}

.component_fd30 .card-fd0b {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.popup-956a {
  background: #e3f2fd;
  color: #1565c0;
}

.upper-0859 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.shade-6cb7 {
  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);
}

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

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

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

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

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

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

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

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

.tooltip-04b3 {
  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);
}

.tooltip-04b3:hover {
  background: var(--color-bg-alt);
}

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

.tooltip-04b3[aria-expanded="true"] .modal_11b9 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.light-77db {
  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);
}

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

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

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

.pattern-9693,
.smooth-213f {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.pattern-9693 h4,
.smooth-213f h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.pattern-9693 ul,
.smooth-213f ul {
  list-style: none;
  padding: 0;
}

.pattern-9693 li,
.smooth-213f li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.badge-bright-46e6 {
  font-style: italic;
}

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

.mask-under-52aa {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.label_15cd .west-e6d3 {
  color: #4caf50;
  font-size: 0.875rem;
}

.texture-299e {
  list-style: none;
  padding: 0;
}

.texture-299e li {
  margin-bottom: var(--space-xs);
}

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

.texture-299e a:hover {
  color: white;
}

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

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

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

.heading_28eb a:hover {
  color: white;
}

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

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

.shadow-glass-99c8 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

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

@media (max-width: 768px) {
  .glass_7294 {
    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;
  }
  
  .black-cf6e {
    font-size: 2rem;
  }
  
  .element-a5ea {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .hovered_537b,
  .sort_83fb {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .footer_rough_cad6,
  .cool-4950,
  .focus-slow-790b,
  .picture-complex-f2d1,
  .shade_dim_b3a6,
  .bottom_a59c,
  .row_bc1d,
  .header-cold-89bf {
    grid-template-columns: 1fr;
  }
  
  .pink-a7c0 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .message-dynamic-8ca8 {
    padding: var(--space-lg) 0;
  }
  
  .pressed_4b60 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .pressed_4b60 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .lower_6736 {
    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;
  }
  
  .pink-a7c0 {
    grid-template-columns: 1fr;
  }
  
  .liquid_e376,
  .narrow_6deb,
  .pattern_slow_14dc {
    flex-direction: column;
    width: 100%;
  }
  
  .backdrop_eb94,
  .yellow_1b9d,
  .liquid_e376 .lower_6736,
  .narrow_6deb .lower_6736 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .black-cf6e {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .element-a5ea {
    font-size: 1.375rem;
  }
  
  .row_west_fd24 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .content_e65f,
  .search-164e,
  .thumbnail_motion_5eb3,
  .carousel-full-402d,
  .thumbnail_north_3eff {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .container_complex_36ee {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .section_short_8caa {
    gap: var(--space-xs);
  }
  
  .bronze-151d {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .paper_170a {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .section_b838 {
    width: 150px;
    height: 150px;
  }
  
  .out_4b42 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .title_8192,
  .row_3508,
  .liquid_e376,
  .mask-under-52aa,
  .hard_414a,
  .pro_dfd5,
  .component-gold-2e70 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .message-dynamic-8ca8 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 8380 */
.phantom-card-x1 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}
