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

.over_b0cd:focus {
  top: 0;
}

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

@media (max-width: 768px) {
  .focus-selected-85dc {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .focus-selected-85dc {
    padding: 0 12px;
  }
}

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

/* Allow specific elements to exceed container */
html,
body,
.accent_solid_89b1,
header,
.text_9fc3,
.wood_ee92,
.logo_motion_34e8,
.tabs_gold_75ad,
.clean_7b40,
.card-9759,
.focus-30cc {
  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
   ============================================ */
.accent_solid_89b1 {
  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);
}

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

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

/* Scrolled state */
.accent_solid_89b1.primary-black-fb9b {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.search_3e9e {
  flex: 1;
}

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

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

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

.short_2ffc.fn-active-192f {
  background: var(--color-primary);
  color: white;
}

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

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

.carousel-2d57 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.fresh-c843 svg {
  flex-shrink: 0;
}

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

.mask-focused-2683: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);
}

.mask-focused-2683 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.notice-tall-9351[aria-expanded="true"] .summary_307f:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .search_3e9e {
    display: none;
  }
  
  .notice-tall-9351 {
    display: flex;
  }
  
  .wide-696a {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .fresh-c843,
  .mask-focused-2683 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .panel_acfb {
    position: relative;
  }
  
  .selected_14d7 {
    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;
  }
  
  .carousel-2d57[aria-expanded="true"] + .selected_14d7 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .tooltip-4cb7 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .copper-9646 {
    gap: 8px;
  }
  
  .fresh-c843 {
    display: none;
  }
  
  .mask-focused-2683 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .hot_f271 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.tooltip-focused-4246 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tooltip-focused-4246 svg {
  flex-shrink: 0;
}

.tooltip-focused-4246 a {
  color: var(--color-primary);
  text-decoration: none;
}

.tooltip-focused-4246 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.frame-01c4 {
  display: flex;
  gap: var(--space-sm);
}

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

.banner-copper-ece7 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.banner-copper-ece7 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .liquid_067d {
    grid-template-columns: 1fr;
  }
  
  .pattern_middle_5503 {
    font-size: 1.75rem;
  }
  
  .aside_0a38 {
    order: -1;
    max-width: 100%;
  }
  
  .gold_4200 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .pattern_middle_5503 {
    font-size: 1.5rem;
  }
  
  .silver-2614 {
    font-size: 1rem;
  }
  
  .link_copper_b3bd {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .gold_4200 {
    max-width: 250px;
  }
}

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

.hidden-static-924b {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

.chip-3e0c {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

.accordion-rough-3ccf {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pink_cd6d 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) {
  .focus-9c46 {
    grid-template-columns: 1fr;
  }
  
  .steel_79b5 {
    font-size: 1.75rem;
  }
  
  .right_dbc3 {
    max-width: 100%;
  }
}

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

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

.icon-gas-0eb7 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.progress-under-107d {
  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;
}

.chip_silver_4ac5 {
  flex-shrink: 0;
}

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

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

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

.media-0bac,
.mask-1cf4,
.dynamic_419e {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.media-0bac thead,
.mask-1cf4 thead {
  background: var(--color-primary);
  color: white;
}

.media-0bac th,
.media-0bac td,
.mask-1cf4 th,
.mask-1cf4 td,
.dynamic_419e th,
.dynamic_419e td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .media-0bac th,
  .media-0bac td,
  .mask-1cf4 th,
  .mask-1cf4 td,
  .dynamic_419e th,
  .dynamic_419e td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .media-0bac,
  .mask-1cf4,
  .dynamic_419e {
    min-width: 600px;
  }
}

.media-0bac th,
.mask-1cf4 th,
.dynamic_419e th {
  font-weight: 600;
}

.media-0bac tbody tr:hover,
.mask-1cf4 tbody tr:hover,
.dynamic_419e tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.lite_ea26 h4 {
  color: white;
}

.card-pro-1f25 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

.paragraph-a321:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

.tooltip-513d {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-sm);
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

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

.avatar-stone-d517 {
  font-weight: 600;
  color: white;
}

.summary-0600 {
  list-style: none;
  padding: 0;
}

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

.mask_5e42 {
  color: #4caf50;
}

.status-tiny-36c6 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.chip-stone-192c {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

.content-stale-8510 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.dynamic-54c6 .gallery_01eb {
  width: 100%;
  background: white;
}

.header_3613 .gallery_01eb {
  color: #667eea;
}

.backdrop-narrow-12b6 .gallery_01eb {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .wide-aba5 {
    padding: var(--space-md);
  }
  
  .text_100d {
    padding: var(--space-md);
  }
  
  .red_bb43 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.hero-554f li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.component-plasma-618f,
.search_a36c,
.card-cold-228a,
.text_next_4074 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.image-current-941a {
  border-color: var(--color-warning);
}

.plasma-5f84 {
  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);
}

.badge_27fd .plasma-5f84 {
  background: #e8f5e9;
  color: var(--color-success);
}

.image-current-941a .plasma-5f84 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.chip_first_d3b3 {
  text-align: center;
}

.status-glass-c208 {
  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);
}

.content-plasma-8ca9 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.status-glass-c208 .avatar-stone-d517 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.shade-east-2674 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

.paragraph-4cd2 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.filter_df4d {
  text-align: right;
}

.filter_df4d .title_over_d091 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.top-ad05 {
  background: #e3f2fd;
  color: #1565c0;
}

.hover-0bf0 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

.main-narrow-1ce7 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

.chip-b949[aria-expanded="true"] .message_brown_9504 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.overlay-warm-32c0 {
  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);
}

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

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

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

.info-240e,
.orange_d001 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.info-240e h4,
.orange_d001 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.info-240e ul,
.orange_d001 ul {
  list-style: none;
  padding: 0;
}

.info-240e li,
.orange_d001 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.header-b548 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.widget-2ed2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

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

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

.thumbnail_motion_1ded .frame-01c4 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.dark_ef2b a:hover {
  color: white;
}

.solid-15a5 {
  list-style: none;
  padding: 0;
}

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

.solid-15a5 a {
  color: #b0b0b0;
  text-decoration: none;
}

.solid-15a5 a:hover {
  color: white;
}

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

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

.badge-soft-538b a {
  color: #4caf50;
  text-decoration: none;
}

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

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

.sort-inner-9f9c {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.sort-inner-9f9c:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .sidebar_out_467a {
    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;
  }
  
  .pattern_middle_5503 {
    font-size: 2rem;
  }
  
  .steel_79b5 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .liquid_067d,
  .focus-9c46 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .thumbnail-center-70e4,
  .tertiary-wood-357c,
  .button-c3c7,
  .bottom-9da2,
  .hover-simple-a208,
  .button_8eb1,
  .east-6a96,
  .widget-2ed2 {
    grid-template-columns: 1fr;
  }
  
  .button_fast_7ce1 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .clean_7b40 {
    padding: var(--space-lg) 0;
  }
  
  .glass_c0f8 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .glass_c0f8 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .gallery_01eb {
    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;
  }
  
  .button_fast_7ce1 {
    grid-template-columns: 1fr;
  }
  
  .article-1488,
  .liquid-eaca,
  .red_3fcb {
    flex-direction: column;
    width: 100%;
  }
  
  .chip-3e0c,
  .layout_dark_0bae,
  .article-1488 .gallery_01eb,
  .liquid-eaca .gallery_01eb {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .pattern_middle_5503 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .steel_79b5 {
    font-size: 1.375rem;
  }
  
  .tag_warm_8b20 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .sidebar-e866,
  .slow_61f1,
  .focus-43c5,
  .notification_dark_e7c3,
  .accent_9a17 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .card_1ea3 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .frame_stone_97c2 {
    gap: var(--space-xs);
  }
  
  .tooltip-focused-4246 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .tooltip-513d {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .status-glass-c208 {
    width: 150px;
    height: 150px;
  }
  
  .content-plasma-8ca9 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .accent_solid_89b1,
  .text_9fc3,
  .article-1488,
  .focused_093e,
  .card-9759,
  .focus-30cc,
  .notice-tall-9351 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .clean_7b40 {
    page-break-inside: avoid;
  }
}

/* css-noise: 916c */
.shadow-element-k7 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.1;
}
