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

.top_c0fc:focus {
  top: 0;
}

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

@media (max-width: 768px) {
  .tertiary-active-27c2 {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .tertiary-active-27c2 {
    padding: 0 12px;
  }
}

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

/* Allow specific elements to exceed container */
html,
body,
.image-cool-9a6e,
header,
.simple-729f,
.slider-6630,
.pagination-red-a1b2,
.wrapper_4535,
.purple-48cf,
.notification_b9fb,
.button_e2bc {
  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
   ============================================ */
.image-cool-9a6e {
  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);
}

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

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

/* Scrolled state */
.image-cool-9a6e.fluid_18c8 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.west_0744 {
  flex: 1;
}

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

.highlight-mini-ca1b {
  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);
}

.highlight-mini-ca1b:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.highlight-mini-ca1b.fn-active-b957 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

/* Header Login Button */
.focus_dynamic_f610 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
}

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

.focus_dynamic_f610 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.bottom-83de[aria-expanded="true"] .north_c992:nth-child(2) {
  opacity: 0;
}

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

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

  .west_0744::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .west_0744.last-70df {
    display: block;
    right: 0;
  }
  
  .article-1c72 {
    flex-direction: column;
    gap: 0;
  }
  
  .highlight-mini-ca1b {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .west_0744::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;
  }
  
  .west_0744.last-70df::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .west_0744 {
    display: none;
  }
  
  .bottom-83de {
    display: flex;
  }
  
  .block-b65b {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .focus_dynamic_f610,
  .sort_dd16 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .hidden_pressed_add8 {
    position: relative;
  }
  
  .accordion_motion_b8ad {
    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;
  }
  
  .logo_bronze_13de[aria-expanded="true"] + .accordion_motion_b8ad {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .complex-26ee {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .frame-952d {
    gap: 8px;
  }
  
  .focus_dynamic_f610 {
    display: none;
  }
  
  .sort_dd16 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .tabs_top_56a3 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.pink-53e8 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pink-53e8 svg {
  flex-shrink: 0;
}

.pink-53e8 a {
  color: var(--color-primary);
  text-decoration: none;
}

.pink-53e8 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

.form_easy_c7c2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

@media (max-width: 1024px) {
  .form_easy_c7c2 {
    font-size: 2rem;
  }
}

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

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

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

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

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

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

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

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

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

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

.article-10f8 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

.pink-0fd3 {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

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

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

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

@media (max-width: 968px) {
  .current_d3a4 {
    grid-template-columns: 1fr;
  }
  
  .form_easy_c7c2 {
    font-size: 1.75rem;
  }
  
  .article-10f8 {
    order: -1;
    max-width: 100%;
  }
  
  .liquid_98e0 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .form_easy_c7c2 {
    font-size: 1.5rem;
  }
  
  .gallery_new_4a9b {
    font-size: 1rem;
  }
  
  .notification_first_d7b7 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .liquid_98e0 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.hover-7b58 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.focused-f354 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;
}

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

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

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

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

.logo-11ad {
  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);
}

.slow-88fb {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.blue-efdb 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) {
  .focused_d909 {
    grid-template-columns: 1fr;
  }
  
  .slow-88fb {
    font-size: 1.75rem;
  }
  
  .white_893b {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .slow-88fb {
    font-size: 1.5rem;
  }
  
  .white_893b h3 {
    font-size: 1.375rem;
  }
  
  .white_893b h4 {
    font-size: 1.125rem;
  }
}

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

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

.search-yellow-0a17 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.background-center-9bd4 {
  flex-shrink: 0;
}

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

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

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

.east-97fd,
.logo-9598,
.warm_e19f {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.east-97fd thead,
.logo-9598 thead {
  background: var(--color-primary);
  color: white;
}

.east-97fd th,
.east-97fd td,
.logo-9598 th,
.logo-9598 td,
.warm_e19f th,
.warm_e19f td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .east-97fd th,
  .east-97fd td,
  .logo-9598 th,
  .logo-9598 td,
  .warm_e19f th,
  .warm_e19f td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .east-97fd,
  .logo-9598,
  .warm_e19f {
    min-width: 600px;
  }
}

.east-97fd th,
.logo-9598 th,
.warm_e19f th {
  font-weight: 600;
}

.east-97fd tbody tr:hover,
.logo-9598 tbody tr:hover,
.warm_e19f tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.accordion_14f3 h4 {
  color: white;
}

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

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

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

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

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

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

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

.box-88f3:hover {
  text-decoration: underline;
}

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

.tertiary-674e {
  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);
}

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

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

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

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

.notice-8ffb {
  color: #4caf50;
}

.center_b321 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hover_pink_860d .hover-7b58 {
  width: 100%;
  background: white;
}

.motion-9117 .hover-7b58 {
  color: #667eea;
}

.banner-left-14fc .hover-7b58 {
  color: #f5576c;
}

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

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

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

.disabled-south-9028 {
  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);
}

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

.large-9cb1 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .soft_8f16 {
    padding: var(--space-md);
  }
  
  .large-9cb1 {
    padding: var(--space-md);
  }
  
  .chip_7253 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.simple_9b7c,
.old-7fc0,
.gold_828d,
.feature_cool_ffe6 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.current-0d48 {
  border-color: var(--color-success);
}

.badge-48a8 {
  border-color: var(--color-warning);
}

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

.current-0d48 .orange-c676 {
  background: #e8f5e9;
  color: var(--color-success);
}

.badge-48a8 .orange-c676 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

.logo-east-b5e3 {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

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

.east-83f6 {
  margin-top: var(--space-xxl);
}

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

.layout-stone-8ee2 {
  text-align: center;
}

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

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

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

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

.banner-medium-40c8 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.chip-liquid-d680 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

.plasma-c4ce {
  border: 2px solid #4caf50;
}

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

.summary-top-e401 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.thumbnail-8c1f {
  text-align: right;
}

.thumbnail-8c1f .motion-6377 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

.avatar-short-3f68 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

.pagination-white-5ac0 {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

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

.gradient-7f84 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

.notification-selected-0e22 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

.chip-right-525b {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ============================================
   20. FAQ SECTION
   ============================================ */
.backdrop-medium-32b6 {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

.mask-north-20a1 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.gas_4aea[aria-expanded="true"] .mask-north-20a1 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.module-left-aae7 {
  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);
}

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

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

@media (max-width: 768px) {
  .search-mini-3d70 {
    grid-template-columns: 1fr;
  }
}

.paragraph-a079,
.breadcrumb-61d3 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.paragraph-a079 h4,
.breadcrumb-61d3 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.paragraph-a079 ul,
.breadcrumb-61d3 ul {
  list-style: none;
  padding: 0;
}

.paragraph-a079 li,
.breadcrumb-61d3 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .texture-steel-97bc {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

.filter_8128 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.under-05c4 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.under-05c4 li {
  margin-bottom: var(--space-xs);
}

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

.under-05c4 a:hover {
  color: white;
}

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

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

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

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

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

.sidebar_2488 a:hover {
  color: white;
}

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

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

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

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

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

.bottom_9b6f .fresh_fcbe {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.feature_1eff a:hover {
  color: white;
}

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

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

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

.surface_6f2a a:hover {
  color: white;
}

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

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

.avatar-7b41 a {
  color: #4caf50;
  text-decoration: none;
}

.shadow-easy-9b56 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.dirty-49ce 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;
}

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

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

@media (max-width: 768px) {
  .caption_211e {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   24. RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 1200px) {
  :root {
    font-size: 15px;
  }
}

@media (max-width: 968px) {
  :root {
    --space-xxl: 3rem;
  }
  
  .form_easy_c7c2 {
    font-size: 2rem;
  }
  
  .slow-88fb {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .current_d3a4,
  .focused_d909 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .brown-43e5,
  .pressed-dcad,
  .surface_25c2,
  .module-e25a,
  .search-mini-3d70,
  .texture-steel-97bc,
  .lower-976b,
  .wrapper_6e4b,
  .tag_yellow_0361 {
    grid-template-columns: 1fr;
  }
  
  .tertiary_top_1a18 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .purple-48cf {
    padding: var(--space-lg) 0;
  }
  
  .focused-f354 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .focused-f354 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .hover-7b58 {
    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;
  }
  
  .tertiary_top_1a18 {
    grid-template-columns: 1fr;
  }
  
  .detail_c693,
  .clean_ae28,
  .article-84a6 {
    flex-direction: column;
    width: 100%;
  }
  
  .tabs_brown_6204,
  .aside_fast_ad23,
  .detail_c693 .hover-7b58,
  .clean_ae28 .hover-7b58 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .form_easy_c7c2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .slow-88fb {
    font-size: 1.375rem;
  }
  
  .button-6d52 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .texture-3537,
  .green_47a9,
  .slow_3860,
  .feature_5e0c,
  .fresh-1a64 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .title-hard-f7a0 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .outline_pink_c2d5 {
    gap: var(--space-xs);
  }
  
  .pink-53e8 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .tertiary-674e {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .row_c399 {
    width: 150px;
    height: 150px;
  }
  
  .hero_6cdd {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .image-cool-9a6e,
  .simple-729f,
  .detail_c693,
  .table_inner_0d23,
  .notification_b9fb,
  .button_e2bc,
  .bottom-83de {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .purple-48cf {
    page-break-inside: avoid;
  }
}

/* css-noise: fb47 */
.ghost-box-z9 {
  padding: 0.4rem;
  font-size: 12px;
  line-height: 1.2;
}
