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

.easy_c607:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.widget-first-b871):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. */
.widget-first-b871,
header,
.aside-e352,
.hover-full-07fc,
.old-31ab,
.disabled_white_ff20,
.filter-first-4033,
.caption-easy-7fdd,
.soft_bd9f {
  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
   ============================================ */
.widget-first-b871 {
  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);
}

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

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

/* Scrolled state */
.widget-first-b871.liquid-ed7e {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.alert-c420 {
  flex: 1;
}

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

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

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

.thick-f857.feature-glass-52ce {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.menu-wood-8190 {
  position: relative;
}

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

.badge-in-99ef svg {
  transition: transform 0.2s ease;
}

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

.blue-6e4d {
  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;
}

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

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

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

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

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

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

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

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

.sort_80d7 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.alert_71dd[aria-expanded="true"] .tooltip-east-ec29:nth-child(2) {
  opacity: 0;
}

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

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

  .alert-c420::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .alert-c420.green-08d5 {
    display: block;
    right: 0;
  }
  
  .sort-bb10 {
    flex-direction: column;
    gap: 0;
  }
  
  .thick-f857 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .alert-c420::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;
  }
  
  .alert-c420.green-08d5::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .alert-c420 {
    display: none;
  }
  
  .alert_71dd {
    display: flex;
  }
  
  .column_hot_20a8 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .sort_80d7,
  .preview-ac16 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .menu-wood-8190 {
    position: relative;
  }
  
  .blue-6e4d {
    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;
  }
  
  .badge-in-99ef[aria-expanded="true"] + .blue-6e4d {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .label-3653 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .item_up_95a8 {
    gap: 8px;
  }
  
  .sort_80d7 {
    display: none;
  }
  
  .preview-ac16 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .active_77df img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.static-0334 svg {
  flex-shrink: 0;
}

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

.static-0334 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.border-stale-b841 a {
  color: var(--color-primary);
  text-decoration: none;
}

.border-stale-b841 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.popup-small-b629 {
  display: flex;
  gap: var(--space-sm);
}

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

.aside-outer-54c5 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.aside-outer-54c5 strong {
  font-weight: 600;
  color: var(--color-text);
}

.aside-outer-54c5 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

.thumbnail-clean-aca1 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .popup_outer_5698 {
    grid-template-columns: 1fr;
  }
  
  .warm-becf {
    font-size: 1.75rem;
  }
  
  .thumbnail-clean-aca1 {
    order: -1;
    max-width: 100%;
  }
  
  .soft_630a {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .warm-becf {
    font-size: 1.5rem;
  }
  
  .primary-519c {
    font-size: 1rem;
  }
  
  .border-stale-b841 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .soft_630a {
    max-width: 250px;
  }
}

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

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

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

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

.rough-357b:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

.mask-right-aa1a {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

.shadow-easy-906a {
  list-style: none;
  counter-reset: toc-counter;
}

.shadow-easy-906a li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.shadow-easy-906a 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);
}

.shadow-easy-906a 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;
}

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

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

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

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

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

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

.widget-east-5a51 {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

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

.hard-169e img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.hard-169e 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);
}

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

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

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

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

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

.hard-169e strong {
  font-weight: 600;
  color: var(--color-text);
}

.hard-169e a {
  color: var(--color-primary);
  text-decoration: underline;
}

.hard-169e a:hover {
  color: var(--color-primary-dark);
}

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

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

.label_in_117c 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) {
  .chip_bbcd {
    grid-template-columns: 1fr;
  }
  
  .outline-b5f0 {
    font-size: 1.75rem;
  }
  
  .hard-169e {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .outline-b5f0 {
    font-size: 1.5rem;
  }
  
  .hard-169e h3 {
    font-size: 1.375rem;
  }
  
  .hard-169e h4 {
    font-size: 1.125rem;
  }
}

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

.warm-23f7 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.box-brown-63ed {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.prev-a63d {
  flex-shrink: 0;
}

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

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

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

.status-basic-85b0,
.heading_complex_66bd,
.highlight_8aa4 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.status-basic-85b0 thead,
.heading_complex_66bd thead {
  background: var(--color-primary);
  color: white;
}

.status-basic-85b0 th,
.status-basic-85b0 td,
.heading_complex_66bd th,
.heading_complex_66bd td,
.highlight_8aa4 th,
.highlight_8aa4 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .status-basic-85b0 th,
  .status-basic-85b0 td,
  .heading_complex_66bd th,
  .heading_complex_66bd td,
  .highlight_8aa4 th,
  .highlight_8aa4 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .status-basic-85b0,
  .heading_complex_66bd,
  .highlight_8aa4 {
    min-width: 600px;
  }
}

.status-basic-85b0 th,
.heading_complex_66bd th,
.highlight_8aa4 th {
  font-weight: 600;
}

.status-basic-85b0 tbody tr:hover,
.heading_complex_66bd tbody tr:hover,
.highlight_8aa4 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.light-34e4 h4 {
  color: white;
}

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

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

.liquid-e219:last-child {
  border-bottom: none;
}

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

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

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

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

.iron-3e14:hover {
  text-decoration: underline;
}

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

.card-659b {
  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);
}

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

.dirty-0f5a {
  font-weight: 600;
  color: white;
}

.summary-8862 {
  list-style: none;
  padding: 0;
}

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

.container-1710 {
  color: #4caf50;
}

.hover_inner_20c9 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.nav-2bad {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.menu-black-c1d0 .secondary-out-c05d {
  width: 100%;
  background: white;
}

.element-83b2 .secondary-out-c05d {
  color: #667eea;
}

.active_clean_03f9 .secondary-out-c05d {
  color: #f5576c;
}

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

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

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

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

.layout-64d0 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .layout-64d0 {
    padding: var(--space-md);
  }
  
  .input_smooth_0975 {
    padding: var(--space-md);
  }
  
  .input-fast-c586 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.hero_focused_5740,
.wrapper-9136,
.search_ac16,
.caption_83e6 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.chip-slow-4ba7:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

.heading-08db {
  border-color: var(--color-warning);
}

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

.current_a60b .up-9026 {
  background: #e8f5e9;
  color: var(--color-success);
}

.heading-08db .up-9026 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

.wrapper-large-641a {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

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

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

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

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

.hot-8eb4 {
  text-align: center;
}

.info-2a52 {
  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);
}

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

.info-2a52 .dirty-0f5a {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.card-basic-8518 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.title-pink-3ef0 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

.pattern-735e {
  text-align: right;
}

.pattern-735e .smooth_3e3e {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.icon-left-db68 {
  background: #e8f5e9;
  color: #2e7d32;
}

.active-f3a3 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pink_de0b[aria-expanded="true"] .cool-aaf1 {
  transform: rotate(180deg);
}

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

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

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

.info-33d4 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.picture-large-73f1 {
  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);
}

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

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

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

.pattern_stale_1d2e,
.wide-2af0 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.pattern_stale_1d2e h4,
.wide-2af0 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.pattern_stale_1d2e ul,
.wide-2af0 ul {
  list-style: none;
  padding: 0;
}

.pattern_stale_1d2e li,
.wide-2af0 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

.shade-0d6d {
  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-0d6d {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

.status-green-2841 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

.title-dark-89bc {
  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);
}

.thumbnail_west_0d8b {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.notification-in-5e08 {
  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);
}

.notification-in-5e08:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.nav-pressed-4cb4 {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

.notification-in-5e08 p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

.texture_d84c .popup-small-b629 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.box_7299 a:hover {
  color: white;
}

.list-fresh-261a {
  list-style: none;
  padding: 0;
}

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

.list-fresh-261a a {
  color: #b0b0b0;
  text-decoration: none;
}

.list-fresh-261a a:hover {
  color: white;
}

.chip-in-b3de {
  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);
}

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

.column-outer-f463 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

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

@media (max-width: 768px) {
  .chip-in-b3de {
    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;
  }
  
  .warm-becf {
    font-size: 2rem;
  }
  
  .outline-b5f0 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .popup_outer_5698,
  .chip_bbcd {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .search_blue_a03a,
  .wood-00b6,
  .button_solid_cd6e,
  .list-3028,
  .down-6d0b,
  .shade-0d6d,
  .title_c09c,
  .primary-d40d {
    grid-template-columns: 1fr;
  }
  
  .tertiary_wood_4ee3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .filter-first-4033 {
    padding: var(--space-lg) 0;
  }
  
  .shadow-easy-906a li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .shadow-easy-906a li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .secondary-out-c05d {
    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;
  }
  
  .tertiary_wood_4ee3 {
    grid-template-columns: 1fr;
  }
  
  .east_e23a,
  .active-0bc3,
  .card_bright_3282 {
    flex-direction: column;
    width: 100%;
  }
  
  .link-0350,
  .mask-right-aa1a,
  .east_e23a .secondary-out-c05d,
  .active-0bc3 .secondary-out-c05d {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .warm-becf {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .outline-b5f0 {
    font-size: 1.375rem;
  }
  
  .bronze_b6e0 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .south-f239,
  .shade_dark_c51e,
  .video_purple_1dc6,
  .basic_fb05,
  .row-plasma-c0c8 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .huge_cde0 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .chip_2115 {
    gap: var(--space-xs);
  }
  
  .static-0334 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .card-659b {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .info-2a52 {
    width: 150px;
    height: 150px;
  }
  
  .thick_83f0 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .widget-first-b871,
  .aside-e352,
  .east_e23a,
  .west-faba,
  .caption-easy-7fdd,
  .soft_bd9f,
  .alert_71dd {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .filter-first-4033 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 37ce */
.promo-block-p5 {
  padding: 0.1rem;
  font-size: 10px;
  line-height: 1.1;
}
