/* ============================================
   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)
   ============================================ */
.motion-1da8 {
  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;
}

.motion-1da8:focus {
  top: 0;
}

/* ============================================
   3. CONTAINER & LAYOUT
   ============================================ */
.up-ab9c {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .up-ab9c {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .up-ab9c {
    padding: 0 12px;
  }
}

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.pink-89fb):not(header) {
  max-width: 100%;
}

/* Allow specific elements to exceed container */
html,
body,
.pink-89fb,
header,
.new_9725,
.clean-077a,
.background-ed63,
.background_0175,
.article_medium_a76d,
.popup_small_b3ad,
.chip-c99d {
  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
   ============================================ */
.pink-89fb {
  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);
}

.module-51eb {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Scrolled state */
.pink-89fb.first-16c0 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

.card-8b38 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  gap: var(--space-md);
}

.selected-fa39 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.advanced_34b3 img {
  height: 36px;
  width: auto;
  display: block;
}

.hero-d2e0 {
  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;
}

.next-1cd7 {
  flex: 1;
}

.modal_9eb9 {
  display: flex;
  list-style: none;
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
}

.dim-939a {
  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);
}

.dim-939a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.dim-939a.media_green_7b10 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.large_148d {
  position: relative;
}

.bottom_be7e {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.bottom_be7e svg {
  transition: transform 0.2s ease;
}

/* 鼠标悬停时箭头旋转（桌面）；点击展开时箭头旋转（移动端） */
.large_148d:hover .bottom_be7e svg,
.bottom_be7e[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.popup-07b3 {
  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;
}

/* 鼠标悬停父元素时，立即显示下拉菜单 */
.large_148d:hover .popup-07b3 {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* 在下拉菜单上方添加一个不可见的桥接区域，防止鼠标移动时菜单消失 */
.popup-07b3::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}

.card_34f2 {
  display: block;
  padding: 10px 20px;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.card_34f2:hover {
  background: var(--color-primary);
  color: white;
  padding-left: 24px; /* 悬停时轻微缩进 */
}

/* 当前页面在下拉菜单中的样式 */
.card_34f2[aria-current="page"] {
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 600;
}

.link-7ce4 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Header Login Button */
.wrapper-narrow-2669 {
  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;
}

.wrapper-narrow-2669:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
  transform: translateY(-1px);
}

.wrapper-narrow-2669 svg {
  flex-shrink: 0;
}

/* Header Download Button */
.popup_347b {
  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;
}

.popup_347b: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);
}

.popup_347b svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.gradient_ec53 {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.detail_a8a5 {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

/* Hamburger animation when active */
.gradient_ec53[aria-expanded="true"] .detail_a8a5:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.gradient_ec53[aria-expanded="true"] .detail_a8a5:nth-child(2) {
  opacity: 0;
}

.gradient_ec53[aria-expanded="true"] .detail_a8a5:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Menu */
@media (max-width: 1100px) {
  .next-1cd7 {
    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 */
  }

  .next-1cd7::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .next-1cd7.hero-81f3 {
    display: block;
    right: 0;
  }
  
  .modal_9eb9 {
    flex-direction: column;
    gap: 0;
  }
  
  .dim-939a {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .next-1cd7::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;
  }
  
  .next-1cd7.hero-81f3::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .next-1cd7 {
    display: none;
  }
  
  .gradient_ec53 {
    display: flex;
  }
  
  .hero-d2e0 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .wrapper-narrow-2669,
  .popup_347b {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .large_148d {
    position: relative;
  }
  
  .popup-07b3 {
    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;
  }
  
  .bottom_be7e[aria-expanded="true"] + .popup-07b3 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .card_34f2 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .link-7ce4 {
    gap: 8px;
  }
  
  .wrapper-narrow-2669 {
    display: none;
  }
  
  .popup_347b {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .advanced_34b3 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .popup_347b {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .popup_347b svg {
    width: 14px;
    height: 14px;
  }
  
  .card-8b38 {
    gap: var(--space-sm);
  }
}

/* ============================================
   5. ARTICLE META BANNER
   ============================================ */
.new_9725 {
  background: var(--color-bg-section);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-sm) 0;
}

.cool-9138 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.pressed_4326 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pressed_4326 svg {
  flex-shrink: 0;
}

.pressed_4326 a {
  color: var(--color-primary);
  text-decoration: none;
}

.pressed_4326 a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .cool-9138 {
    font-size: 0.8125rem;
    gap: var(--space-sm);
  }
}

/* ============================================
   6. HERO SECTION
   ============================================ */
.clean-077a {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.pagination_e21c {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-xl);
  align-items: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .pagination_e21c {
    grid-template-columns: 1fr 350px;
    gap: var(--space-lg);
  }
}

.progress-top-2473 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.progress-top-2473 a {
  color: var(--color-primary);
  text-decoration: none;
}

.progress-top-2473 a:hover {
  text-decoration: underline;
}

.row_south_aa47 {
  color: var(--color-text-lighter);
}

.active_ac69 {
  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) {
  .active_ac69 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .active_ac69 {
    font-size: 1.5rem;
  }
}

.steel-3bc9 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.photo_hard_0430 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
  .photo_hard_0430 {
    grid-template-columns: 1fr;
  }
}

.narrow_a3a5 {
  display: flex;
  gap: var(--space-sm);
}

.overlay_b9a7 {
  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;
}

.new_3984 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.new_3984 strong {
  font-weight: 600;
  color: var(--color-text);
}

.new_3984 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.footer-a8a4 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.grid_advanced_3c33 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tertiary_complex_4cd2 {
  position: relative;
  text-align: center;
}

.tertiary_complex_4cd2 img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.element-4bd6 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.progress-f128 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.sidebar_steel_a1d9 {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.component-9676 {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

.pattern_644f {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.hero-in-028b {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .pagination_e21c {
    grid-template-columns: 1fr;
  }
  
  .active_ac69 {
    font-size: 1.75rem;
  }
  
  .grid_advanced_3c33 {
    order: -1;
    max-width: 100%;
  }
  
  .tertiary_complex_4cd2 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .active_ac69 {
    font-size: 1.5rem;
  }
  
  .steel-3bc9 {
    font-size: 1rem;
  }
  
  .progress-top-2473 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .tertiary_complex_4cd2 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.menu_short_fac2 {
  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;
}

.avatar-iron-0e7a {
  background: var(--color-primary);
  color: white;
}

.avatar-iron-0e7a:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.gallery_center_e12e {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.gallery_center_e12e:hover {
  background: var(--color-primary);
  color: white;
}

.dynamic_b72e {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.dynamic_b72e:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.icon-42ad {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.picture_dark_6216 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

/* ============================================
   8. STATS SECTION
   ============================================ */
.background-ed63 {
  padding: var(--space-xl) 0;
  background: white;
}

.tooltip_bright_2426 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
}

.light_7d6a {
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.light_7d6a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.description_yellow_fca3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.media_stone_c25c {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.icon_431e {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* ============================================
   9. TABLE OF CONTENTS
   ============================================ */
.background_0175 {
  padding: var(--space-xl) 0;
  background: var(--color-bg-section);
}

.hovered-eaee {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.texture-advanced-cb52 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.preview-black-5cc1 {
  list-style: none;
  counter-reset: toc-counter;
}

.preview-black-5cc1 li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.preview-black-5cc1 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);
}

.preview-black-5cc1 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;
}

.preview-black-5cc1 li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.article_medium_a76d {
  padding: var(--space-xxl) 0;
}

.pro-0212 {
  background: var(--color-bg-section);
}

.iron-2802 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.next-6223 {
  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);
}

.black_9e09 {
  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);
}

.photo-bottom-9166 {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.shadow_east_1628 {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: var(--space-xl);
  width: 100%;
}

@media (max-width: 1200px) {
  .shadow_east_1628 {
    grid-template-columns: 1fr 300px;
  }
}

.column-soft-f76d {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.column-soft-f76d img {
  max-width: 100%;
  height: auto;
  display: block;
}

.column-soft-f76d pre,
.column-soft-f76d code {
  overflow-x: auto;
  max-width: 100%;
}

.column-soft-f76d 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);
}

.column-soft-f76d h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-text);
}

.column-soft-f76d h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.column-soft-f76d p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.column-soft-f76d ul,
.column-soft-f76d ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.column-soft-f76d li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.column-soft-f76d strong {
  font-weight: 600;
  color: var(--color-text);
}

.column-soft-f76d a {
  color: var(--color-primary);
  text-decoration: underline;
}

.column-soft-f76d a:hover {
  color: var(--color-primary-dark);
}

.hovered_003c {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

.hovered_003c li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: var(--space-md);
}

.hovered_003c 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) {
  .shadow_east_1628 {
    grid-template-columns: 1fr;
  }
  
  .black_9e09 {
    font-size: 1.75rem;
  }
  
  .column-soft-f76d {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .black_9e09 {
    font-size: 1.5rem;
  }
  
  .column-soft-f76d h3 {
    font-size: 1.375rem;
  }
  
  .column-soft-f76d h4 {
    font-size: 1.125rem;
  }
}

/* ============================================
   11. INFO BOXES
   ============================================ */
.text-04c9 {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
  border-left: 4px solid;
}

.sidebar_upper_f0e2 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.texture_6397 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.basic_a547 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info_left_ad99 strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.input-7765 {
  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;
}

.search-545f {
  flex-shrink: 0;
}

.aside_dim_6399 strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

/* ============================================
   13. TABLES
   ============================================ */
.heading-bffd {
  overflow-x: auto;
  margin: var(--space-lg) 0;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .heading-bffd {
    margin-left: calc(-1 * var(--space-sm));
    margin-right: calc(-1 * var(--space-sm));
    width: calc(100% + 2 * var(--space-sm));
    border-radius: 0;
  }
}

.up-c180,
.image-cool-b181,
.frame_d61c {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.up-c180 thead,
.image-cool-b181 thead {
  background: var(--color-primary);
  color: white;
}

.up-c180 th,
.up-c180 td,
.image-cool-b181 th,
.image-cool-b181 td,
.frame_d61c th,
.frame_d61c td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .up-c180 th,
  .up-c180 td,
  .image-cool-b181 th,
  .image-cool-b181 td,
  .frame_d61c th,
  .frame_d61c td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .up-c180,
  .image-cool-b181,
  .frame_d61c {
    min-width: 600px;
  }
}

.up-c180 th,
.image-cool-b181 th,
.frame_d61c th {
  font-weight: 600;
}

.up-c180 tbody tr:hover,
.image-cool-b181 tbody tr:hover,
.frame_d61c tbody tr:hover {
  background: var(--color-bg-alt);
}

.slider_fbae {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: var(--space-sm);
}

/* ============================================
   14. SIDEBAR
   ============================================ */
.thumbnail-96ca {
  position: sticky;
  top: 80px;
  align-self: start;
}

.wrapper-d9bc {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
}

.wrapper-d9bc h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.sidebar_1d7f {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.sidebar_1d7f h4 {
  color: white;
}

.tag_active_186f {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.popup_f0d9 {
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border-light);
}

.popup_f0d9:last-child {
  border-bottom: none;
}

.popup_f0d9 dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.popup_f0d9 dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

.notice_center_62b7 {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

.purple-7f0d {
  display: inline-flex;
  align-items: center;
  margin-top: var(--space-md);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.purple-7f0d:hover {
  text-decoration: underline;
}

.widget-tiny-0864 {
  text-align: center;
  margin-bottom: var(--space-md);
}

.container-cdca {
  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);
}

.container-cdca span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.small_462f {
  font-weight: 600;
  color: white;
}

.wrapper_down_a7b2 {
  list-style: none;
  padding: 0;
}

.wrapper_down_a7b2 li {
  padding: var(--space-xs) 0;
}

.link_liquid_90bb {
  color: #4caf50;
}

.media_cf54 {
  color: #ff9800;
}

.column-hard-8736 {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.summary-b9a9 {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  align-items: center;
  gap: var(--space-sm);
}

.photo-copper-3ebe {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.icon_f31c {
  height: 8px;
  background: var(--color-border-light);
  border-radius: 4px;
  overflow: hidden;
}

.paragraph-top-7ee6 {
  height: 100%;
  background: linear-gradient(90deg, #4caf50 0%, #8bc34a 100%);
  transition: width var(--transition-slow);
}

.description_stone_c1c6 {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

/* ============================================
   15. FEATURE GRID
   ============================================ */
.description-middle-dcb2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (max-width: 768px) {
  .description-middle-dcb2 {
    grid-template-columns: 1fr;
  }
}

.box_focused_09d5 {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  position: relative;
}

.box_focused_09d5:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.secondary_b8f9 {
  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;
}

.box_focused_09d5 h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.box_focused_09d5 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.preview-37b7 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.small_462f {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.row-f31e {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

.copper-ef8c {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: #f1f8ff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.copper-ef8c h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

/* ============================================
   16. COMPARISON & DECISION HELPER
   ============================================ */
.complex-1976 {
  max-width: 900px;
  margin: 0 auto;
}

.advanced_cc85 {
  text-align: center;
  margin-bottom: var(--space-xl);
  font-size: 1.125rem;
  color: var(--color-text-light);
}

.hidden-e876 {
  margin: var(--space-xl) 0;
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .hidden-e876 {
    margin-left: calc(-1 * var(--space-sm));
    margin-right: calc(-1 * var(--space-sm));
    width: calc(100% + 2 * var(--space-sm));
  }
}

.surface-yellow-c201 {
  margin-top: var(--space-xxl);
}

.surface-yellow-c201 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.focus-5672 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (max-width: 768px) {
  .focus-5672 {
    grid-template-columns: 1fr;
  }
}

.widget_0cc2 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.wood-c8e6 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.pattern_314b {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.widget_0cc2 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: white;
}

.widget_0cc2 ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.widget_0cc2 li {
  padding: var(--space-xs) 0;
  color: white;
}

.widget_0cc2 .menu_short_fac2 {
  width: 100%;
  background: white;
}

.wood-c8e6 .menu_short_fac2 {
  color: #667eea;
}

.pattern_314b .menu_short_fac2 {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.main-4498 {
  max-width: 900px;
  margin: 0 auto;
}

.nav-8b27 {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-xl);
  overflow: hidden;
}

.title_f208 {
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
}

.column_da9d {
  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);
}

.title_f208 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.tag_red_2e93 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .title_f208 {
    padding: var(--space-md);
  }
  
  .tag_red_2e93 {
    padding: var(--space-md);
  }
  
  .hover-1117 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.column-5851 ol,
.column-5851 ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.column-5851 li {
  margin-bottom: var(--space-sm);
}

.column-5851 code {
  background: var(--color-bg-alt);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
}

.short_f49a {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #fff3e0;
  border-left: 4px solid var(--color-warning);
  border-radius: var(--radius-md);
}

.dynamic-7e3b {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #ffebee;
  border-left: 4px solid var(--color-danger);
  border-radius: var(--radius-md);
}

.hover-1117 {
  margin-top: var(--space-lg);
  text-align: center;
}

.hover-1117 img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.main_brown_3fb9,
.text-slow-3fa3,
.focus-clean-279b,
.in-757a {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.white-2dc7 {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.green_ce18 {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.basic_f610 {
  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) {
  .basic_f610 {
    font-size: 0.625rem;
  }
}

.orange_2529 {
  padding: 8px 16px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
}

.orange_2529:hover {
  background: var(--color-primary-dark);
}

.content-15dd {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  text-align: center;
}

.content-15dd h4 {
  margin-bottom: var(--space-md);
}

.border-e7e9 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

/* ============================================
   18. SECURITY SECTION
   ============================================ */
.cool_bdda {
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  font-size: 1.125rem;
  text-align: center;
  color: var(--color-text-light);
}

.title_dcab {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (max-width: 768px) {
  .title_dcab {
    grid-template-columns: 1fr;
  }
}

.surface_bcfb {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid;
}

.rough-451b {
  border-color: var(--color-success);
}

.north-8ad7 {
  border-color: var(--color-warning);
}

.old-8384 {
  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);
}

.rough-451b .old-8384 {
  background: #e8f5e9;
  color: var(--color-success);
}

.north-8ad7 .old-8384 {
  background: #fff3e0;
  color: var(--color-warning);
}

.surface_bcfb h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.surface_bcfb p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.card_4bef {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.search-44b5 {
  margin: var(--space-xxl) 0;
}

.search-44b5 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-md);
}

.search-44b5 > p {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
}

.sidebar_purple_c3f4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .sidebar_purple_c3f4 {
    grid-template-columns: 1fr;
  }
}

.layout-prev-906b {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.layout-prev-906b h4 {
  margin-bottom: var(--space-md);
  font-size: 1.125rem;
  color: var(--color-primary);
}

.hot-a852 {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

.hot-a852 input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 4px;
  cursor: pointer;
}

.background-e2e6 {
  margin-top: var(--space-xxl);
}

.content_b1cc {
  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);
}

.form-glass-c5e0 {
  text-align: center;
}

.short_af9b {
  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);
}

.current-9402 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.short_af9b .small_462f {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.modal_904d {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.outline_north_dcee p {
  margin-bottom: var(--space-md);
}

.header-gas-42fa {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .content_b1cc {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   19. REVIEW SECTION
   ============================================ */
.dropdown_first_367a {
  max-width: 600px;
  margin: 0 auto var(--space-xxl);
}

.thumbnail-c441 {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.hard_370c {
  margin-bottom: var(--space-xl);
}

.paper_a797 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}

.grid_df4a {
  font-size: 2rem;
  color: #ffa000;
  letter-spacing: 4px;
  margin: var(--space-sm) 0;
}

.feature-out-3ca8 {
  color: var(--color-text-light);
}

.wrapper_4cdd {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.content-down-8330 {
  display: grid;
  grid-template-columns: 40px 1fr 50px;
  align-items: center;
  gap: var(--space-sm);
}

.icon-inner-d4d9 {
  font-weight: 600;
  color: var(--color-text);
}

.column_wood_4b99 {
  height: 12px;
  background: var(--color-border-light);
  border-radius: 6px;
  overflow: hidden;
}

.photo_2045 {
  height: 100%;
  background: linear-gradient(90deg, #ffa000 0%, #ff6f00 100%);
  transition: width var(--transition-slow);
}

.overlay-plasma-dc31 {
  text-align: right;
  font-weight: 600;
  color: var(--color-text-light);
  font-size: 0.875rem;
}

.hard-7c18 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.stone-f697 {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-xl);
}

.banner-north-9499 {
  border: 2px solid #4caf50;
}

.narrow_3de3 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
  gap: var(--space-md);
}

.element-inner-0aaf {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.button_red_e35a {
  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;
}

.label_center_24fd {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.table-yellow-c834 {
  display: inline-block;
  padding: 2px 8px;
  background: #4caf50;
  color: white;
  font-size: 0.75rem;
  border-radius: 10px;
  margin-left: 8px;
}

.clean-34d9 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.form_full_8081 {
  text-align: right;
}

.form_full_8081 .purple_de42 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.component_advanced_abfc {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.footer_purple_fd35 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
  color: var(--color-text);
}

.footer_purple_fd35 p {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.cool_850b {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

.table_8b7a {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

.hot_4f02 {
  background: #e8f5e9;
  color: #2e7d32;
}

.dynamic-d835 {
  background: #e3f2fd;
  color: #1565c0;
}

.hot_4847 {
  background: #fff3e0;
  color: #e65100;
}

.tiny_e01b {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.tiny_e01b span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.form-thick-b7d5 {
  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);
}

.form-thick-b7d5:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.block_dynamic_a821 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #f1f8ff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.prev_f112 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.prev_f112 strong {
  color: var(--color-primary);
}

.icon_pro_2ab3 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.widget-up-e239 {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ============================================
   20. FAQ SECTION
   ============================================ */
.large-29fc {
  max-width: 900px;
  margin: 0 auto;
}

.message-1d84 {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.preview_0f75 {
  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);
}

.preview_0f75:hover {
  background: var(--color-bg-alt);
}

.button-5f96 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.preview_0f75[aria-expanded="true"] .button-5f96 {
  transform: rotate(180deg);
}

.advanced-4874 {
  display: none;
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-light);
  line-height: 1.7;
}

.advanced-4874 h5 {
  font-size: 1rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.advanced-4874 ul,
.advanced-4874 ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.advanced-4874 li {
  margin-bottom: var(--space-xs);
}

.slider-red-b352 {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: #1e1e1e;
  color: #d4d4d4;
  border-radius: var(--radius-md);
  overflow-x: auto;
}

.first-efe1 {
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: #9cdcfe;
}

.slider-red-b352 code {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ============================================
   21. CONCLUSION SECTION
   ============================================ */
.full_bdc3 {
  max-width: 800px;
  margin: 0 auto var(--space-xxl);
  text-align: center;
}

.right_ced8 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.widget_thick_98d8 {
  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);
}

.heading-west-5308 {
  padding: 12px 24px;
  background: #4caf50;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.heading_5125 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

@media (max-width: 768px) {
  .heading_5125 {
    grid-template-columns: 1fr;
  }
}

.button-smooth-0364,
.hard-4f81 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.button-smooth-0364 {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.hard-4f81 {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.button-smooth-0364 h4,
.hard-4f81 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.button-smooth-0364 ul,
.hard-4f81 ul {
  list-style: none;
  padding: 0;
}

.button-smooth-0364 li,
.hard-4f81 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

.copper_590a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

@media (max-width: 768px) {
  .copper_590a {
    grid-template-columns: 1fr;
  }
}

.picture_9a34 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hidden-eca0 {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: white;
}

.layout-4423 {
  background: linear-gradient(135deg, #f44336 0%, #e57373 100%);
  color: white;
}

.picture_9a34 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: white;
}

.picture_9a34 ul {
  list-style: none;
  padding: 0;
}

.picture_9a34 li {
  padding: var(--space-xs) 0;
  color: white;
}

.dark-0ae8 {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

.dark-0ae8 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.dark-0ae8 p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
  line-height: 1.8;
}

.chip-9ce6 {
  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);
}

.motion_81d1 {
  font-style: italic;
}

.surface-6a02 {
  display: block;
  margin-top: var(--space-sm);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.dim_16f8 {
  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;
}

.dim_16f8 h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: white;
}

.dim_16f8 p {
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
  color: rgba(255,255,255,0.9);
}

.module_205c {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

/* ============================================
   22. RELATED CONTENT
   ============================================ */
.popup_small_b3ad {
  padding: var(--space-xxl) 0;
  background: var(--color-bg-section);
}

.secondary-copper-2eb0 {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.pagination-dirty-2293 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .pagination-dirty-2293 {
    grid-template-columns: 1fr;
  }
}

.message-dynamic-2525 {
  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);
}

.message-dynamic-2525:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.primary-fast-b8c3 {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.message-dynamic-2525 h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.message-dynamic-2525 p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

/* ============================================
   23. FOOTER
   ============================================ */
.chip-c99d {
  background: #212121;
  color: #e0e0e0;
  padding: var(--space-xxl) 0 var(--space-lg);
}

.east-912d {
  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) */
.hard-53af {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.complex_611d h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.complex_611d p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.primary-green-fda9 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.primary-green-fda9 li {
  margin-bottom: var(--space-xs);
}

.primary-green-fda9 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.primary-green-fda9 a:hover {
  color: white;
}

.label-8f69 {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.label-8f69 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);
}

.label-8f69 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.down-fbdf {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.down-fbdf a {
  color: #808080;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.down-fbdf a:hover {
  color: white;
}

.secondary-orange-9668 > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

@media (max-width: 768px) {
  .east-912d,
  .hard-53af {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.form_dirty_21af h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.search_silver_eb65 p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.dim_4f60 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.dim_4f60 .narrow_a3a5 {
  color: #4caf50;
  font-size: 0.875rem;
}

.highlight_bright_4b5d {
  list-style: none;
  padding: 0;
}

.highlight_bright_4b5d li {
  margin-bottom: var(--space-xs);
}

.highlight_bright_4b5d a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.highlight_bright_4b5d a:hover {
  color: white;
}

.bottom_7513 {
  list-style: none;
  padding: 0;
}

.bottom_7513 li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: #b0b0b0;
}

.bottom_7513 a {
  color: #b0b0b0;
  text-decoration: none;
}

.bottom_7513 a:hover {
  color: white;
}

.secondary-orange-9668 {
  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);
}

.footer-c14e p {
  font-size: 0.875rem;
  color: #808080;
  margin-bottom: var(--space-xs);
}

.footer-c14e a {
  color: #4caf50;
  text-decoration: none;
}

.background-eb29 {
  font-size: 0.75rem;
  color: #666666;
}

.photo-74dd {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: #808080;
}

.photo-74dd a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.photo-74dd 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;
}

.notice-liquid-479b {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.notice-liquid-479b:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .secondary-orange-9668 {
    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;
  }
  
  .active_ac69 {
    font-size: 2rem;
  }
  
  .black_9e09 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .pagination_e21c,
  .shadow_east_1628 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .description-middle-dcb2,
  .title_dcab,
  .focus-5672,
  .sidebar_purple_c3f4,
  .heading_5125,
  .copper_590a,
  .pagination-dirty-2293,
  .east-912d,
  .hard-53af {
    grid-template-columns: 1fr;
  }
  
  .tooltip_bright_2426 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .article_medium_a76d {
    padding: var(--space-lg) 0;
  }
  
  .preview-black-5cc1 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .preview-black-5cc1 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .menu_short_fac2 {
    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;
  }
  
  .tooltip_bright_2426 {
    grid-template-columns: 1fr;
  }
  
  .footer-a8a4,
  .module_205c,
  .border-e7e9 {
    flex-direction: column;
    width: 100%;
  }
  
  .icon-42ad,
  .picture_dark_6216,
  .footer-a8a4 .menu_short_fac2,
  .module_205c .menu_short_fac2 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .active_ac69 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .black_9e09 {
    font-size: 1.375rem;
  }
  
  .description_yellow_fca3 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .light_7d6a,
  .box_focused_09d5,
  .wrapper-d9bc,
  .stone-f697,
  .nav-8b27 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .basic_f610 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .cool-9138 {
    gap: var(--space-xs);
  }
  
  .pressed_4326 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .container-cdca {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .short_af9b {
    width: 150px;
    height: 150px;
  }
  
  .current-9402 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .pink-89fb,
  .new_9725,
  .footer-a8a4,
  .dim_16f8,
  .popup_small_b3ad,
  .chip-c99d,
  .gradient_ec53 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .article_medium_a76d {
    page-break-inside: avoid;
  }
}

/* css-noise: 94a5 */
.brown_0bc3 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.0;
}

/* css-noise: 4ba9 */
.phantom-card-k3 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.3;
}
