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

.cool_3feb:focus {
  top: 0;
}

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

@media (max-width: 768px) {
  .hot-576e {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .hot-576e {
    padding: 0 12px;
  }
}

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

/* Allow specific elements to exceed container */
html,
body,
.simple-83ac,
header,
.aside-dirty-aa8c,
.text_dfeb,
.header_lite_02d4,
.carousel_81f5,
.notification_12a3,
.input_8875,
.last-4cba {
  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
   ============================================ */
.simple-83ac {
  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);
}

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

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

/* Scrolled state */
.simple-83ac.block_slow_b445 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

.list-9e01 {
  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;
}

.carousel_paper_2ba6 {
  flex: 1;
}

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

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

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

.logo_70a4.fn-active-f1f4 {
  background: var(--color-primary);
  color: white;
}

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

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

.title-d489 svg {
  transition: transform 0.2s ease;
}

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

.gallery-bronze-f964 {
  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;
}

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

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

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

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

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

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

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

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

.surface_7fca svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .carousel_paper_2ba6 {
    display: none;
  }
  
  .bronze_8b96 {
    display: flex;
  }
  
  .list-9e01 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .surface_7fca,
  .icon_56fa {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .surface_selected_f802 {
    position: relative;
  }
  
  .gallery-bronze-f964 {
    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;
  }
  
  .title-d489[aria-expanded="true"] + .gallery-bronze-f964 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .module-under-5474 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

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

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

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

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

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

.pattern_655d svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.title-b4f9 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

.label-short-d965 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.photo-wood-e2e8 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .disabled-62a8 {
    grid-template-columns: 1fr;
  }
  
  .border_bottom_fa88 {
    font-size: 1.75rem;
  }
  
  .column_up_0ba3 {
    order: -1;
    max-width: 100%;
  }
  
  .photo-wood-e2e8 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .border_bottom_fa88 {
    font-size: 1.5rem;
  }
  
  .next-1040 {
    font-size: 1rem;
  }
  
  .title-b4f9 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .photo-wood-e2e8 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.frame-easy-7ad5 {
  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);
}

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

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

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

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

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

.action-129a img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.action-129a 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);
}

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

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

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

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

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

.action-129a strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

.thumbnail-c576 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) {
  .nav-bright-56fa {
    grid-template-columns: 1fr;
  }
  
  .backdrop-a36e {
    font-size: 1.75rem;
  }
  
  .action-129a {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .backdrop-a36e {
    font-size: 1.5rem;
  }
  
  .action-129a h3 {
    font-size: 1.375rem;
  }
  
  .action-129a h4 {
    font-size: 1.125rem;
  }
}

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

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

.thumbnail-cold-fb41 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.green-96c9 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.blue_2408 {
  flex-shrink: 0;
}

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

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

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

.message-b21a,
.caption_in_d19f,
.chip_bronze_7bb4 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.message-b21a thead,
.caption_in_d19f thead {
  background: var(--color-primary);
  color: white;
}

.message-b21a th,
.message-b21a td,
.caption_in_d19f th,
.caption_in_d19f td,
.chip_bronze_7bb4 th,
.chip_bronze_7bb4 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .message-b21a th,
  .message-b21a td,
  .caption_in_d19f th,
  .caption_in_d19f td,
  .chip_bronze_7bb4 th,
  .chip_bronze_7bb4 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .message-b21a,
  .caption_in_d19f,
  .chip_bronze_7bb4 {
    min-width: 600px;
  }
}

.message-b21a th,
.caption_in_d19f th,
.chip_bronze_7bb4 th {
  font-weight: 600;
}

.message-b21a tbody tr:hover,
.caption_in_d19f tbody tr:hover,
.chip_bronze_7bb4 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.east-69ca h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

.label-small-4e89 {
  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);
}

.label-small-4e89 span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

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

.steel-826b {
  color: #4caf50;
}

.pro-6487 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.outline-gold-95b3 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

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

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

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

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

.grid-4b83 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.tabs_f957 .huge-45a6 {
  width: 100%;
  background: white;
}

.last_eed5 .huge-45a6 {
  color: #667eea;
}

.narrow_3f10 .huge-45a6 {
  color: #f5576c;
}

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

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

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

.menu-iron-33d5 {
  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);
}

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

.up-616c {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .fixed_62bd {
    padding: var(--space-md);
  }
  
  .up-616c {
    padding: var(--space-md);
  }
  
  .mask-out-b031 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.shade-gold-4b77,
.menu-69b1,
.copper_23d8,
.sort-cool-b13b {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.highlight-tiny-432e {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.panel-pro-f325 {
  border-color: var(--color-warning);
}

.sidebar-over-0124 {
  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);
}

.column_e713 .sidebar-over-0124 {
  background: #e8f5e9;
  color: var(--color-success);
}

.panel-pro-f325 .sidebar-over-0124 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.article_lite_39c8 {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

.basic-3c65 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.grid-dynamic-fab1 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.fresh-e157 {
  text-align: right;
}

.fresh-e157 .center-3f6e {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.message-middle-da0c {
  background: #e8f5e9;
  color: #2e7d32;
}

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

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

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

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

.info-blue-3a35 {
  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);
}

.info-blue-3a35:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

.layout-complex-cd2c strong {
  color: var(--color-primary);
}

.breadcrumb-large-0b61 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

.shade-huge-7a2b {
  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);
}

.shade-huge-7a2b:hover {
  background: var(--color-bg-alt);
}

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

.shade-huge-7a2b[aria-expanded="true"] .carousel_aee6 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.dirty-24b5,
.picture_8c18 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.dirty-24b5 h4,
.picture_8c18 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.dirty-24b5 ul,
.picture_8c18 ul {
  list-style: none;
  padding: 0;
}

.dirty-24b5 li,
.picture_8c18 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.block_bd05 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dim_5a9f a:hover {
  color: white;
}

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

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

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

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

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

.upper_0f69 a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .dim-a1ad,
  .section-34cd {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.tooltip-fast-1611 .icon-d1e4 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.widget_cfd9 a:hover {
  color: white;
}

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

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

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

.section_ccf6 a:hover {
  color: white;
}

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

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

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

.next-0bca {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

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

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

@media (max-width: 768px) {
  .gold_ae77 {
    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;
  }
  
  .border_bottom_fa88 {
    font-size: 2rem;
  }
  
  .backdrop-a36e {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .disabled-62a8,
  .nav-bright-56fa {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .border_out_bd09,
  .slider_e968,
  .row_solid_444e,
  .hover-b04a,
  .label-2644,
  .fast-7600,
  .green_43e5,
  .dim-a1ad,
  .section-34cd {
    grid-template-columns: 1fr;
  }
  
  .silver_615f {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .notification_12a3 {
    padding: var(--space-lg) 0;
  }
  
  .filter_3392 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .filter_3392 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .huge-45a6 {
    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;
  }
  
  .silver_615f {
    grid-template-columns: 1fr;
  }
  
  .label-short-d965,
  .bronze_468b,
  .light-451b {
    flex-direction: column;
    width: 100%;
  }
  
  .dirty_f6da,
  .easy_ef23,
  .label-short-d965 .huge-45a6,
  .bronze_468b .huge-45a6 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .border_bottom_fa88 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .backdrop-a36e {
    font-size: 1.375rem;
  }
  
  .panel-304e {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .layout-bb23,
  .sort_a4ab,
  .inner-9ba6,
  .disabled-copper-d002,
  .carousel_771f {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .info_c082 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .pagination-next-3bf7 {
    gap: var(--space-xs);
  }
  
  .pattern_655d {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .label-small-4e89 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .list_middle_b97d {
    width: 150px;
    height: 150px;
  }
  
  .carousel_soft_758e {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .simple-83ac,
  .aside-dirty-aa8c,
  .label-short-d965,
  .glass_267a,
  .input_8875,
  .last-4cba,
  .bronze_8b96 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .notification_12a3 {
    page-break-inside: avoid;
  }
}

/* css-noise: a29c */
.widget-item-g3 {
  padding: 0.2rem;
  font-size: 14px;
  line-height: 1.0;
}
