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

.active-204f:focus {
  top: 0;
}

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

@media (max-width: 768px) {
  .module-dim-80d0 {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .module-dim-80d0 {
    padding: 0 12px;
  }
}

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

/* Allow specific elements to exceed container */
html,
body,
.shade-58cf,
header,
.pressed-dbbd,
.main_green_2c93,
.main-681f,
.text-64a1,
.badge_5874,
.hero-bright-338b,
.silver_21d0 {
  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
   ============================================ */
.shade-58cf {
  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);
}

.overlay-dirty-ed23 {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.shade-58cf.accent-eefa {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

.center-3f5a {
  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;
}

.notice_hot_0918 {
  flex: 1;
}

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

.message-dim-9da7 {
  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);
}

.message-dim-9da7:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.message-dim-9da7.fn-active-43e7 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.disabled_easy_5982 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

.mask-yellow-4ee7 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.focus_gold_5f84 svg {
  flex-shrink: 0;
}

/* Header Download Button */
.secondary-outer-4e01 {
  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;
}

.secondary-outer-4e01: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);
}

.secondary-outer-4e01 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

.media-tall-01af {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

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

.mask_3390[aria-expanded="true"] .media-tall-01af:nth-child(2) {
  opacity: 0;
}

.mask_3390[aria-expanded="true"] .media-tall-01af:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .notice_hot_0918::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .notice_hot_0918.badge-fe4c {
    display: block;
    right: 0;
  }
  
  .preview_selected_a45d {
    flex-direction: column;
    gap: 0;
  }
  
  .message-dim-9da7 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .notice_hot_0918::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;
  }
  
  .notice_hot_0918.badge-fe4c::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .notice_hot_0918 {
    display: none;
  }
  
  .mask_3390 {
    display: flex;
  }
  
  .center-3f5a {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .focus_gold_5f84,
  .secondary-outer-4e01 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .disabled_easy_5982 {
    position: relative;
  }
  
  .yellow_2b55 {
    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;
  }
  
  .fixed_4016[aria-expanded="true"] + .yellow_2b55 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .picture-bronze-a075 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .mask-yellow-4ee7 {
    gap: 8px;
  }
  
  .focus_gold_5f84 {
    display: none;
  }
  
  .secondary-outer-4e01 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .mask_current_1460 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .secondary-outer-4e01 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .secondary-outer-4e01 svg {
    width: 14px;
    height: 14px;
  }
  
  .fresh_b166 {
    gap: var(--space-sm);
  }
}

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

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

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

.status_2cae svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .layout-south-75aa {
    grid-template-columns: 1fr;
  }
}

.pagination-6fa2 {
  display: flex;
  gap: var(--space-sm);
}

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

.liquid-73f7 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.liquid-73f7 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

.row-fluid-3544 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .heading_gold_eefa {
    grid-template-columns: 1fr;
  }
  
  .banner_outer_1a62 {
    font-size: 1.75rem;
  }
  
  .row-fluid-3544 {
    order: -1;
    max-width: 100%;
  }
  
  .hero_under_ef16 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .banner_outer_1a62 {
    font-size: 1.5rem;
  }
  
  .column_narrow_32db {
    font-size: 1rem;
  }
  
  .outline_thick_2742 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .hero_under_ef16 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.badge-selected-d4e2 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.badge-selected-d4e2 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);
}

.badge-selected-d4e2 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;
}

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

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

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

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

.gallery-dark-7edc {
  display: inline-block;
  padding: 6px 16px;
  background: var(--color-primary-light);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.widget-a7b0 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) {
  .notice-8a05 {
    grid-template-columns: 1fr;
  }
  
  .element_wood_0044 {
    font-size: 1.75rem;
  }
  
  .info-4527 {
    max-width: 100%;
  }
}

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

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

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

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

.pattern-mini-e09d {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.cool_30c3 {
  flex-shrink: 0;
}

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

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

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

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

.pattern_4ef5 thead,
.blue_f610 thead {
  background: var(--color-primary);
  color: white;
}

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

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

.pattern_4ef5 th,
.blue_f610 th,
.frame_bottom_21e0 th {
  font-weight: 600;
}

.pattern_4ef5 tbody tr:hover,
.blue_f610 tbody tr:hover,
.frame_bottom_21e0 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.status_bfca h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

.preview-advanced-dfc3 {
  font-weight: 600;
  color: white;
}

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

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

.nav-selected-3a28 {
  color: #4caf50;
}

.feature-down-17ca {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.text_98f8 .badge-copper-eae5 {
  width: 100%;
  background: white;
}

.backdrop-new-aebe .badge-copper-eae5 {
  color: #667eea;
}

.description_44b7 .badge-copper-eae5 {
  color: #f5576c;
}

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

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

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

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

.backdrop-dark-7e96 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.layout-fluid-6038 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .backdrop-dark-7e96 {
    padding: var(--space-md);
  }
  
  .layout-fluid-6038 {
    padding: var(--space-md);
  }
  
  .overlay-55b4 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.hard-86f1,
.banner_c7b3,
.surface_old_6f5a,
.paper_b221 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.description-dim-f1be {
  border-color: var(--color-warning);
}

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

.south-be46 .warm-5469 {
  background: #e8f5e9;
  color: var(--color-success);
}

.description-dim-f1be .warm-5469 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.block-in-cc4d {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

.status-8da1 {
  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);
}

.dim_a38e {
  text-align: center;
}

.active-blue-834f {
  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);
}

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

.active-blue-834f .preview-advanced-dfc3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.plasma-9b88 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.white-a08d {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.progress-green-1b70 {
  text-align: right;
}

.progress-green-1b70 .selected_aa1b {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

.popup-0ba6 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

/* ============================================
   20. FAQ SECTION
   ============================================ */
.search-down-1d50 {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

.dark_4420[aria-expanded="true"] .photo_50c3 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.status-action-114b {
  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);
}

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

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

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

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

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

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

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

.hover_dirty_0d94 ul,
.description_steel_e156 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.info-adec {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

.item-down-66da {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

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

.tag-2d69 {
  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) */
.banner_ca78 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.media_dcc4 a:hover {
  color: white;
}

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

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

.photo-a0ae a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

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

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

.menu_a98a a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .tag-2d69,
  .banner_ca78 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.short_5769 .pagination-6fa2 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.huge_98b9 a:hover {
  color: white;
}

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

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

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

.panel_6f86 a:hover {
  color: white;
}

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

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

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

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

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

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

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

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

.down-b645:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .shadow_medium_3007 {
    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;
  }
  
  .banner_outer_1a62 {
    font-size: 2rem;
  }
  
  .element_wood_0044 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .heading_gold_eefa,
  .notice-8a05 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .picture_f430,
  .narrow-890c,
  .background-e273,
  .list-fixed-917c,
  .grid_7ad1,
  .warm-8500,
  .prev-f328,
  .tag-2d69,
  .banner_ca78 {
    grid-template-columns: 1fr;
  }
  
  .description_middle_72fc {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .badge_5874 {
    padding: var(--space-lg) 0;
  }
  
  .badge-selected-d4e2 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .badge-selected-d4e2 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .badge-copper-eae5 {
    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;
  }
  
  .description_middle_72fc {
    grid-template-columns: 1fr;
  }
  
  .rough_334d,
  .paper-145c,
  .hover-1b98 {
    flex-direction: column;
    width: 100%;
  }
  
  .medium_3a6c,
  .hovered_10a3,
  .rough_334d .badge-copper-eae5,
  .paper-145c .badge-copper-eae5 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .banner_outer_1a62 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .element_wood_0044 {
    font-size: 1.375rem;
  }
  
  .heading_dark_37e0 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .tertiary_basic_643b,
  .glass_223d,
  .static_65b6,
  .box_tiny_971c,
  .gradient-south-35b0 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .action-f7c6 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .popup-9d1f {
    gap: var(--space-xs);
  }
  
  .status_2cae {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .tooltip_motion_8bec {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .active-blue-834f {
    width: 150px;
    height: 150px;
  }
  
  .module_620b {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .shade-58cf,
  .pressed-dbbd,
  .rough_334d,
  .purple_f6ff,
  .hero-bright-338b,
  .silver_21d0,
  .mask_3390 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .badge_5874 {
    page-break-inside: avoid;
  }
}

/* css-noise: 60f5 */
.promo-block-h2 {
  padding: 0.1rem;
  font-size: 14px;
  line-height: 1.1;
}
