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

.container-in-1001:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.icon-dynamic-a25e,
header,
.thick-d903,
.tag_b0cc,
.primary_bottom_051f,
.feature-brown-b578,
.narrow-1d58,
.panel_4fa4,
.photo_2e67 {
  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
   ============================================ */
.icon-dynamic-a25e {
  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);
}

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

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

/* Scrolled state */
.icon-dynamic-a25e.picture_5216 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.secondary-dynamic-7d82 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.sort_7855 {
  flex: 1;
}

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

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

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

.component_plasma_0033.fn-active-5056 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.copper-7627 {
  position: relative;
}

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

.grid-5d5e svg {
  transition: transform 0.2s ease;
}

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

.article-short-078c {
  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;
}

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

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

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

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

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

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

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

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

.aside_bronze_cd96 svg {
  flex-shrink: 0;
}

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

.grid-inner-1434: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);
}

.grid-inner-1434 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .sort_7855 {
    display: none;
  }
  
  .dim_debc {
    display: flex;
  }
  
  .layout-0776 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .aside_bronze_cd96,
  .grid-inner-1434 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .copper-7627 {
    position: relative;
  }
  
  .article-short-078c {
    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;
  }
  
  .grid-5d5e[aria-expanded="true"] + .article-short-078c {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .notice_right_a400 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .main_advanced_6b98 {
    gap: 8px;
  }
  
  .aside_bronze_cd96 {
    display: none;
  }
  
  .grid-inner-1434 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .secondary-dynamic-7d82 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .grid-inner-1434 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .grid-inner-1434 svg {
    width: 14px;
    height: 14px;
  }
  
  .complex-2d83 {
    gap: var(--space-sm);
  }
}

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

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

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

.label_outer_868b svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.accordion-solid-ac30 a {
  color: var(--color-primary);
  text-decoration: none;
}

.accordion-solid-ac30 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.gold-5a0c {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .hard-88d5 {
    grid-template-columns: 1fr;
  }
  
  .advanced-0fe4 {
    font-size: 1.75rem;
  }
  
  .slider_fixed_463e {
    order: -1;
    max-width: 100%;
  }
  
  .gold-5a0c {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .advanced-0fe4 {
    font-size: 1.5rem;
  }
  
  .message-9259 {
    font-size: 1rem;
  }
  
  .accordion-solid-ac30 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .gold-5a0c {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.in-1bb2 {
  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;
}

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

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

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

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

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

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

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

.current-850a {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.over-0ef6 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.over-0ef6 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);
}

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

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

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

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

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

.over-0ef6 strong {
  font-weight: 600;
  color: var(--color-text);
}

.over-0ef6 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.over-0ef6 a:hover {
  color: var(--color-primary-dark);
}

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

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

.pattern_narrow_50c4 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) {
  .popup-narrow-0d2d {
    grid-template-columns: 1fr;
  }
  
  .detail_inner_c76b {
    font-size: 1.75rem;
  }
  
  .over-0ef6 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .detail_inner_c76b {
    font-size: 1.5rem;
  }
  
  .over-0ef6 h3 {
    font-size: 1.375rem;
  }
  
  .over-0ef6 h4 {
    font-size: 1.125rem;
  }
}

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

.notice-f90d {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.outer_6a3d {
  flex-shrink: 0;
}

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

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

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

.title-warm-1a5f,
.chip_wide_b4ca,
.avatar_5b4b {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.title-warm-1a5f thead,
.chip_wide_b4ca thead {
  background: var(--color-primary);
  color: white;
}

.title-warm-1a5f th,
.title-warm-1a5f td,
.chip_wide_b4ca th,
.chip_wide_b4ca td,
.avatar_5b4b th,
.avatar_5b4b td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .title-warm-1a5f th,
  .title-warm-1a5f td,
  .chip_wide_b4ca th,
  .chip_wide_b4ca td,
  .avatar_5b4b th,
  .avatar_5b4b td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .title-warm-1a5f,
  .chip_wide_b4ca,
  .avatar_5b4b {
    min-width: 600px;
  }
}

.title-warm-1a5f th,
.chip_wide_b4ca th,
.avatar_5b4b th {
  font-weight: 600;
}

.title-warm-1a5f tbody tr:hover,
.chip_wide_b4ca tbody tr:hover,
.avatar_5b4b tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.card-7592 h4 {
  color: white;
}

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

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

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

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

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

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

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

.north-92ef:hover {
  text-decoration: underline;
}

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

.search-large-2124 {
  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);
}

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

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

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

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

.popup-mini-167e {
  color: #4caf50;
}

.sort-wood-b22e {
  color: #ff9800;
}

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

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

.highlight-north-3ee7 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

.badge-top-7de3 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sidebar-medium-ff06 .in-1bb2 {
  width: 100%;
  background: white;
}

.dropdown_pro_b526 .in-1bb2 {
  color: #667eea;
}

.banner-0478 .in-1bb2 {
  color: #f5576c;
}

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

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

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

.under-91cd {
  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);
}

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

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

@media (max-width: 768px) {
  .lite_f5ab {
    padding: var(--space-md);
  }
  
  .alert_small_4f15 {
    padding: var(--space-md);
  }
  
  .top-2d37 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.frame_9e0e,
.tabs_liquid_9041,
.search-cb66,
.image_2d34 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.chip-light-413e h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.chip_inner_8937 .backdrop_hard_8d28 {
  background: #e8f5e9;
  color: var(--color-success);
}

.brown-ced9 .backdrop_hard_8d28 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

.tag-brown-4f13 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

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

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

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

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

.gradient_fast_5ff2 {
  text-align: center;
}

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

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

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

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

.picture-004b p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.tabs-over-cd8f {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.image-orange-e7be {
  border: 2px solid #4caf50;
}

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

.menu-433a {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.text-03f0 {
  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;
}

.badge-6f50 {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

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

.fresh-f4f4 .slider_pink_b57a {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dark-650e strong {
  color: var(--color-primary);
}

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

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

/* ============================================
   20. FAQ SECTION
   ============================================ */
.mask-3870 {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

.description-75c3 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.badge_76ce[aria-expanded="true"] .description-75c3 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.wide-d3c0,
.red-3d84 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.wide-d3c0 h4,
.red-3d84 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.wide-d3c0 ul,
.red-3d84 ul {
  list-style: none;
  padding: 0;
}

.wide-d3c0 li,
.red-3d84 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.panel-70b5 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.description_fc4d {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.message-south-ef27 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: var(--transition-base);
}

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

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

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

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

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

.image-easy-fbd1 {
  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) */
.pagination-053a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.header_rough_4652 a:hover {
  color: white;
}

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

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

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

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

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

.table_up_4f2e a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .image-easy-fbd1,
  .pagination-053a {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.tiny-ff56 .accordion_b266 {
  color: #4caf50;
  font-size: 0.875rem;
}

.caption-first-b7f9 {
  list-style: none;
  padding: 0;
}

.caption-first-b7f9 li {
  margin-bottom: var(--space-xs);
}

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

.caption-first-b7f9 a:hover {
  color: white;
}

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

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

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

.logo_7f25 a:hover {
  color: white;
}

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

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

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

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

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

.breadcrumb-steel-028b a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.breadcrumb-steel-028b a:hover {
  color: white;
}

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

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

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

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

@media (max-width: 768px) {
  .hard_077e {
    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;
  }
  
  .advanced-0fe4 {
    font-size: 2rem;
  }
  
  .detail_inner_c76b {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .hard-88d5,
  .popup-narrow-0d2d {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .container-269b,
  .main_full_0d6a,
  .south_a968,
  .thumbnail_warm_862d,
  .over-347e,
  .dark-eb30,
  .thumbnail-541f,
  .image-easy-fbd1,
  .pagination-053a {
    grid-template-columns: 1fr;
  }
  
  .green-396c {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .narrow-1d58 {
    padding: var(--space-lg) 0;
  }
  
  .widget_complex_d7f7 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .widget_complex_d7f7 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .in-1bb2 {
    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;
  }
  
  .green-396c {
    grid-template-columns: 1fr;
  }
  
  .secondary_a199,
  .main_blue_90da,
  .smooth-59d2 {
    flex-direction: column;
    width: 100%;
  }
  
  .focused-ffb0,
  .current-850a,
  .secondary_a199 .in-1bb2,
  .main_blue_90da .in-1bb2 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .advanced-0fe4 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .detail_inner_c76b {
    font-size: 1.375rem;
  }
  
  .disabled_b54e {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .row_9461,
  .form_17e9,
  .carousel-fluid-9a1f,
  .footer_7af1,
  .block-8e32 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .hidden-ef95 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .dropdown_3b6d {
    gap: var(--space-xs);
  }
  
  .label_outer_868b {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .search-large-2124 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .progress_green_71f4 {
    width: 150px;
    height: 150px;
  }
  
  .preview-1aef {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .icon-dynamic-a25e,
  .thick-d903,
  .secondary_a199,
  .component_f144,
  .panel_4fa4,
  .photo_2e67,
  .dim_debc {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .narrow-1d58 {
    page-break-inside: avoid;
  }
}

/* css-noise: e07f */
.widget-item-l8 {
  padding: 0.3rem;
  font-size: 12px;
  line-height: 1.3;
}
