/* ============================================
   Modern CSS for SEO-Optimized Content Site
   Based on Google 2026 Best Practices
   ============================================ */

/* ============================================
   1. CSS RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --color-primary: #1976d2;
  --color-primary-dark: #115293;
  --color-primary-light: #4791db;
  --color-secondary: #424242;
  --color-accent: #ff6b6b;
  --color-success: #4caf50;
  --color-warning: #ff9800;
  --color-danger: #f44336;
  
  /* Neutrals */
  --color-text: #212121;
  --color-text-light: #666666;
  --color-text-lighter: #999999;
  --color-border: #e0e0e0;
  --color-border-light: #f5f5f5;
  --color-bg: #ffffff;
  --color-bg-alt: #fafafa;
  --color-bg-section: #f8f9fa;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Merriweather', Georgia, serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  /* Do NOT set overflow-x here: combined with body's overflow-x: hidden
     it makes <html> its own scroll container and breaks the sticky header. */
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}

/* ============================================
   2. SKIP LINK (Accessibility)
   ============================================ */
.breadcrumb_action_c8aa {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 10000;
  border-radius: 0 0 4px 0;
}

.breadcrumb_action_c8aa:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.cool_5b77):not(header) {
  max-width: 100%;
}

/* Allow specific elements to exceed container */
html,
body,
.cool_5b77,
header,
.video_e3f4,
.steel_b389,
.frame_8a8f,
.thumbnail-813d,
.gradient-over-064c,
.badge-new-6c78,
.huge_6702 {
  max-width: none;
}

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

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

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

/* Scrolled state */
.cool_5b77.menu-hard-3008 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.link-ba1a img {
  height: 36px;
  width: auto;
  display: block;
}

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

.tiny-72d1 {
  flex: 1;
}

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

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

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

.input_over_c2aa.fn-active-469d {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.message-narrow-825a {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.row-ea9d svg {
  flex-shrink: 0;
}

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

.pink-90b8: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);
}

.pink-90b8 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.content_6556[aria-expanded="true"] .frame-stone-aed8:nth-child(2) {
  opacity: 0;
}

.content_6556[aria-expanded="true"] .frame-stone-aed8:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .tiny-72d1 {
    display: none;
  }
  
  .content_6556 {
    display: flex;
  }
  
  .description_c474 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .row-ea9d,
  .pink-90b8 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .message-narrow-825a {
    position: relative;
  }
  
  .small_b9a4 {
    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;
  }
  
  .active_aad4[aria-expanded="true"] + .small_b9a4 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .tabs_medium_b7b7 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .disabled_b50a {
    gap: 8px;
  }
  
  .row-ea9d {
    display: none;
  }
  
  .pink-90b8 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .link-ba1a img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.status_2f00 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.grid-advanced-61a2 a {
  color: var(--color-primary);
  text-decoration: none;
}

.grid-advanced-61a2 a:hover {
  text-decoration: underline;
}

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

.form-old-1ec7 {
  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) {
  .form-old-1ec7 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .form-old-1ec7 {
    font-size: 1.5rem;
  }
}

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

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

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

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

.background-9f62 {
  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;
}

.panel-7c7d {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.panel-7c7d strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .sort_cold_325f {
    grid-template-columns: 1fr;
  }
  
  .form-old-1ec7 {
    font-size: 1.75rem;
  }
  
  .main_751d {
    order: -1;
    max-width: 100%;
  }
  
  .item_static_2b3a {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .form-old-1ec7 {
    font-size: 1.5rem;
  }
  
  .red_cb0e {
    font-size: 1rem;
  }
  
  .grid-advanced-61a2 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .item_static_2b3a {
    max-width: 250px;
  }
}

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

.surface-middle-c2b1 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pressed_2a7a li a {
  display: flex;
  align-items: center;
  padding: var(--space-sm);
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.pressed_2a7a li a:before {
  content: counter(toc-counter);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-primary-light);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  margin-right: var(--space-sm);
  flex-shrink: 0;
}

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

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.gradient-over-064c {
  padding: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.accent-active-bba6 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.accent-active-bba6 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) {
  .tag_hard_83c0 {
    grid-template-columns: 1fr;
  }
  
  .box_cbdc {
    font-size: 1.75rem;
  }
  
  .media_iron_8491 {
    max-width: 100%;
  }
}

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

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

.box-up-ca1b {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.grid-6be5 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.full-5d0c {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.primary_57d9 {
  flex-shrink: 0;
}

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

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

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

.content_fe87,
.huge_b24a,
.title_lite_e6f1 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.content_fe87 thead,
.huge_b24a thead {
  background: var(--color-primary);
  color: white;
}

.content_fe87 th,
.content_fe87 td,
.huge_b24a th,
.huge_b24a td,
.title_lite_e6f1 th,
.title_lite_e6f1 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .content_fe87 th,
  .content_fe87 td,
  .huge_b24a th,
  .huge_b24a td,
  .title_lite_e6f1 th,
  .title_lite_e6f1 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .content_fe87,
  .huge_b24a,
  .title_lite_e6f1 {
    min-width: 600px;
  }
}

.content_fe87 th,
.huge_b24a th,
.title_lite_e6f1 th {
  font-weight: 600;
}

.content_fe87 tbody tr:hover,
.huge_b24a tbody tr:hover,
.title_lite_e6f1 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.search-eab5 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

.title-0e78 {
  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-0e78 span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

.secondary-522b {
  list-style: none;
  padding: 0;
}

.secondary-522b li {
  padding: var(--space-xs) 0;
}

.purple-6fd8 {
  color: #4caf50;
}

.dynamic-b909 {
  color: #ff9800;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .input-huge-4cdb {
    grid-template-columns: 1fr;
  }
}

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

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

.box-wood-c03d {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

.frame-11bb {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.input_under_2171 .small-92c6 {
  width: 100%;
  background: white;
}

.element-selected-f677 .small-92c6 {
  color: #667eea;
}

.link-orange-fb6f .small-92c6 {
  color: #f5576c;
}

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

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

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

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

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

.detail-current-9311 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .tall-7004 {
    padding: var(--space-md);
  }
  
  .detail-current-9311 {
    padding: var(--space-md);
  }
  
  .shadow_short_da6e {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.card-213e li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.section_first_1bc7,
.secondary_61d3,
.accordion-781d,
.pressed_ee39 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.under-83b6:hover {
  background: var(--color-primary-dark);
}

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

.input-2acb h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.detail-1ce1 {
  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);
}

.module_selected_be8c .detail-1ce1 {
  background: #e8f5e9;
  color: var(--color-success);
}

.wood_5729 .detail-1ce1 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

.gradient-liquid-1ed5 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

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

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

.texture-hard-a8d7 {
  margin-top: var(--space-xxl);
}

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

.border_5875 {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

.modal-yellow-e21c {
  margin-bottom: var(--space-xl);
}

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

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

.layout-6fd9 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

.bottom-5bfc {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.gold_9684 {
  text-align: right;
}

.gold_9684 .summary-367c {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

.media-a8c0 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.overlay-pro-d9f1 strong {
  color: var(--color-primary);
}

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

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

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

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

.backdrop-4a0f {
  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);
}

.backdrop-4a0f:hover {
  background: var(--color-bg-alt);
}

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

.backdrop-4a0f[aria-expanded="true"] .layout_pressed_5ebe {
  transform: rotate(180deg);
}

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

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

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

.wood-59ee li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.hidden-bronze-35c9 {
  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);
}

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

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

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

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

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

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

.section_full_96aa h4,
.mini_585a h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.section_full_96aa ul,
.mini_585a ul {
  list-style: none;
  padding: 0;
}

.section_full_96aa li,
.mini_585a li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.lite_e049 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .mask-old-45bc {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

/* Footer variant: footer-content (subpages) */
.dropdown-light-a9c0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.progress_7ded {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

.progress_7ded a:hover {
  color: white;
}

.dim-d532 {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.dim-d532 a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid #424242;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.dim-d532 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.selected-c464 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.selected-c464 a {
  color: #808080;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.selected-c464 a:hover {
  color: white;
}

.pagination_cc81 > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

@media (max-width: 768px) {
  .thumbnail_complex_9338,
  .dropdown-light-a9c0 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.outline-a33d .popup_48c3 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.glass_28e9 a:hover {
  color: white;
}

.popup-pressed-220e {
  list-style: none;
  padding: 0;
}

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

.popup-pressed-220e a {
  color: #b0b0b0;
  text-decoration: none;
}

.popup-pressed-220e a:hover {
  color: white;
}

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

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

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

.content-9bed {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.hard_49d5 a:hover {
  color: white;
}

/* Element selectors: survive CMS class obfuscation on deploy */
footer > div > div:last-child > div:last-child a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

footer > div > div:last-child > div:last-child a:hover {
  color: white;
}

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

.north-7975:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .pagination_cc81 {
    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;
  }
  
  .form-old-1ec7 {
    font-size: 2rem;
  }
  
  .box_cbdc {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .sort_cold_325f,
  .tag_hard_83c0 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .input-huge-4cdb,
  .dynamic_dd41,
  .short-16e9,
  .pressed-60f1,
  .module_liquid_b7aa,
  .module-easy-ad72,
  .mask-old-45bc,
  .thumbnail_complex_9338,
  .dropdown-light-a9c0 {
    grid-template-columns: 1fr;
  }
  
  .bright-68a9 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .gradient-over-064c {
    padding: var(--space-lg) 0;
  }
  
  .pressed_2a7a li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .pressed_2a7a li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .small-92c6 {
    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;
  }
  
  .bright-68a9 {
    grid-template-columns: 1fr;
  }
  
  .link-c069,
  .aside_2a80,
  .over_eb53 {
    flex-direction: column;
    width: 100%;
  }
  
  .light_f915,
  .prev-5349,
  .link-c069 .small-92c6,
  .aside_2a80 .small-92c6 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .form-old-1ec7 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .box_cbdc {
    font-size: 1.375rem;
  }
  
  .panel-fixed-2aa1 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .right_7f94,
  .complex_814d,
  .header_focused_f00f,
  .in_9754,
  .iron-55ca {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .chip_wood_04d2 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .blue_1cfd {
    gap: var(--space-xs);
  }
  
  .status_2f00 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .title-0e78 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .tabs_bc06 {
    width: 150px;
    height: 150px;
  }
  
  .static-6ee6 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .cool_5b77,
  .video_e3f4,
  .link-c069,
  .pagination_warm_0def,
  .badge-new-6c78,
  .huge_6702,
  .content_6556 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .gradient-over-064c {
    page-break-inside: avoid;
  }
}

/* css-noise: f0d7 */
.phantom-card-k7 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.3;
}
