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

.block_in_05df:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.layout-glass-61fd):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. */
.layout-glass-61fd,
header,
.detail-ad30,
.warm_6424,
.search-rough-a2ba,
.backdrop_out_43e3,
.badge-medium-0c4a,
.next-b96f,
.highlight_0610 {
  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
   ============================================ */
.layout-glass-61fd {
  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);
}

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

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

/* Scrolled state */
.layout-glass-61fd.new-ed66 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.center_2b8b {
  flex: 1;
}

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

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

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

.paragraph_6992.huge-175f {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.image-north-1f12 {
  position: relative;
}

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

.wide-e779 svg {
  transition: transform 0.2s ease;
}

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

.preview-medium-04f8 {
  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;
}

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

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

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

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

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

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

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

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

.hero_warm_3c2d svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .center_2b8b {
    display: none;
  }
  
  .south_f762 {
    display: flex;
  }
  
  .dark-a16e {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .hero_warm_3c2d,
  .west-bb15 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .image-north-1f12 {
    position: relative;
  }
  
  .preview-medium-04f8 {
    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;
  }
  
  .wide-e779[aria-expanded="true"] + .preview-medium-04f8 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .highlight_0982 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .detail_fixed_a56b {
    gap: 8px;
  }
  
  .hero_warm_3c2d {
    display: none;
  }
  
  .west-bb15 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .action_65c9 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.south-6a5a svg {
  flex-shrink: 0;
}

.south-6a5a a {
  color: var(--color-primary);
  text-decoration: none;
}

.south-6a5a a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.right-eeb7 a:hover {
  text-decoration: underline;
}

.container-down-6f61 {
  color: var(--color-text-lighter);
}

.column-stale-4a63 {
  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) {
  .column-stale-4a63 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .column-stale-4a63 {
    font-size: 1.5rem;
  }
}

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

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

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

.media-black-5de4 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .layout_3487 {
    grid-template-columns: 1fr;
  }
  
  .column-stale-4a63 {
    font-size: 1.75rem;
  }
  
  .prev-b0a8 {
    order: -1;
    max-width: 100%;
  }
  
  .wrapper_146f {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .column-stale-4a63 {
    font-size: 1.5rem;
  }
  
  .hero_16c8 {
    font-size: 1rem;
  }
  
  .right-eeb7 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .wrapper_146f {
    max-width: 250px;
  }
}

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

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

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

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

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

.column-wood-87ea {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.column-wood-87ea:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.heading-center-0fa5 {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dark-2b28 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.dark-2b28 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) {
  .photo_38d5 {
    grid-template-columns: 1fr;
  }
  
  .layout_1e63 {
    font-size: 1.75rem;
  }
  
  .glass-a414 {
    max-width: 100%;
  }
}

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

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

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

.accent-fluid-affa {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.wide-c599 {
  flex-shrink: 0;
}

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

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

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

.notice-ba4a,
.feature_solid_c990,
.frame-3166 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.notice-ba4a thead,
.feature_solid_c990 thead {
  background: var(--color-primary);
  color: white;
}

.notice-ba4a th,
.notice-ba4a td,
.feature_solid_c990 th,
.feature_solid_c990 td,
.frame-3166 th,
.frame-3166 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .notice-ba4a th,
  .notice-ba4a td,
  .feature_solid_c990 th,
  .feature_solid_c990 td,
  .frame-3166 th,
  .frame-3166 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .notice-ba4a,
  .feature_solid_c990,
  .frame-3166 {
    min-width: 600px;
  }
}

.notice-ba4a th,
.feature_solid_c990 th,
.frame-3166 th {
  font-weight: 600;
}

.notice-ba4a tbody tr:hover,
.feature_solid_c990 tbody tr:hover,
.frame-3166 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.green-ac2e h4 {
  color: white;
}

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

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

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

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

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

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

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

.feature-a9e7:hover {
  text-decoration: underline;
}

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

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

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

.plasma-649c {
  font-weight: 600;
  color: white;
}

.in-fb62 {
  list-style: none;
  padding: 0;
}

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

.message_dde5 {
  color: #4caf50;
}

.up_0803 {
  color: #ff9800;
}

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

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

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

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

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

.shade-focused-19bd {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

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

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

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

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

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

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

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

.notice-static-3be6 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

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

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

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

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

.block-warm-28e3 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.focused-a4a9 .hidden_ea9b {
  width: 100%;
  background: white;
}

.center_36c3 .hidden_ea9b {
  color: #667eea;
}

.list_a83a .hidden_ea9b {
  color: #f5576c;
}

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

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

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

.bottom-8b6a {
  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);
}

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

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

@media (max-width: 768px) {
  .article_smooth_b171 {
    padding: var(--space-md);
  }
  
  .video_next_c694 {
    padding: var(--space-md);
  }
  
  .light-47ba {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.form-down-8b28 ol,
.form-down-8b28 ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.form-down-8b28 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.bronze_f568,
.wrapper_out_b602,
.pro-d0f6,
.short-9698 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.tall-356e {
  display: block;
  padding: var(--space-sm);
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
  overflow-wrap: break-word;
  margin: var(--space-sm) 0;
}

@media (max-width: 480px) {
  .tall-356e {
    font-size: 0.625rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

.summary-9126 .wide_da6b {
  background: #e8f5e9;
  color: var(--color-success);
}

.media_in_ee7d .wide_da6b {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.paragraph-d9fb {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.caption_ece0 {
  text-align: center;
}

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

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

.copper_94f8 .plasma-649c {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.shadow-2bf3 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

.primary-10a5 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.column-wide-091b {
  border: 2px solid #4caf50;
}

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

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

.aside-796d {
  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;
}

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

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

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

.border-1c98 {
  text-align: right;
}

.border-1c98 .component_96f1 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

.old_0ac6 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.paper-0f44 {
  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);
}

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

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

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

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

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

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

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

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

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

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

.module-rough-2747 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.narrow_a6dc[aria-expanded="true"] .module-rough-2747 {
  transform: rotate(180deg);
}

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

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

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

.form-advanced-a6b9 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.green-1db8 {
  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);
}

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

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

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

.dynamic-4fef,
.input-0146 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.dynamic-4fef h4,
.input-0146 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.dynamic-4fef ul,
.input-0146 ul {
  list-style: none;
  padding: 0;
}

.dynamic-4fef li,
.input-0146 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.detail-dcab {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.fixed-4e6f {
  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);
}

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

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

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

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

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

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

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

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

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

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

.icon-cool-cac3 .media-black-5de4 {
  color: #4caf50;
  font-size: 0.875rem;
}

.bronze-c73f {
  list-style: none;
  padding: 0;
}

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

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

.bronze-c73f a:hover {
  color: white;
}

.block-current-7d3b {
  list-style: none;
  padding: 0;
}

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

.block-current-7d3b a {
  color: #b0b0b0;
  text-decoration: none;
}

.block-current-7d3b a:hover {
  color: white;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .solid-9615 {
    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;
  }
  
  .column-stale-4a63 {
    font-size: 2rem;
  }
  
  .layout_1e63 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .layout_3487,
  .photo_38d5 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .full_e354,
  .east-589d,
  .background_in_2d23,
  .warm_7606,
  .card-c374,
  .under_2880,
  .top-6f1f,
  .center_7839 {
    grid-template-columns: 1fr;
  }
  
  .lower_0812 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .badge-medium-0c4a {
    padding: var(--space-lg) 0;
  }
  
  .banner_34dc li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .banner_34dc li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .hidden_ea9b {
    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;
  }
  
  .lower_0812 {
    grid-template-columns: 1fr;
  }
  
  .secondary_next_2eb6,
  .basic-f16a,
  .up-fe42 {
    flex-direction: column;
    width: 100%;
  }
  
  .mask-0784,
  .soft_e830,
  .secondary_next_2eb6 .hidden_ea9b,
  .basic-f16a .hidden_ea9b {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .column-stale-4a63 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .layout_1e63 {
    font-size: 1.375rem;
  }
  
  .right-667f {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .alert-b381,
  .mask_white_39c0,
  .info-3bf0,
  .sort_rough_1ad5,
  .over-7bda {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .tall-356e {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .title_9f0f {
    gap: var(--space-xs);
  }
  
  .south-6a5a {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .title-c3ac {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .copper_94f8 {
    width: 150px;
    height: 150px;
  }
  
  .list_out_ace0 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .layout-glass-61fd,
  .detail-ad30,
  .secondary_next_2eb6,
  .pink_42a7,
  .next-b96f,
  .highlight_0610,
  .south_f762 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .badge-medium-0c4a {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 0330 */
.shadow-element-j0 {
  padding: 0.3rem;
  font-size: 13px;
  line-height: 1.1;
}
