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

.list-last-6826:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container.
   html/body are excluded on purpose: releasing their max-width removes the
   last guard against a horizontally scrollable page. */
.progress-9033,
header,
.grid_ac88,
.solid-380a,
.new_7caf,
.tooltip-bottom-3746,
.hard-7085,
.clean-5e02,
.picture_3101 {
  max-width: none;
}

/* overflow-x stays off <html>: pairing it with body's hidden turns <html>
   into its own scroll container and breaks the sticky header. */
html,
body {
  width: 100%;
  max-width: 100%;
}

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

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

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

/* Scrolled state */
.progress-9033.popup-0d08 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.tabs_6107 {
  flex: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.summary_glass_6001 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.photo-b4f4[aria-expanded="true"] .tabs-3084:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .tabs_6107 {
    display: none;
  }
  
  .photo-b4f4 {
    display: flex;
  }
  
  .steel-f0ae {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .summary_glass_6001,
  .in-5690 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .main_warm_1563 {
    position: relative;
  }
  
  .component_silver_e454 {
    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;
  }
  
  .slider_687d[aria-expanded="true"] + .component_silver_e454 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .medium-417d {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

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

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

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

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

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

.wide_5690 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.bronze-2233 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.slow-32bf {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .pressed_2cb3 {
    grid-template-columns: 1fr;
  }
  
  .widget-30c2 {
    font-size: 1.75rem;
  }
  
  .current-3910 {
    order: -1;
    max-width: 100%;
  }
  
  .slow-32bf {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .widget-30c2 {
    font-size: 1.5rem;
  }
  
  .hidden-gold-c509 {
    font-size: 1rem;
  }
  
  .bronze-2233 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .slow-32bf {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.card-hot-19b6 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.primary-19eb {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.frame_1d9d 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) {
  .left_d663 {
    grid-template-columns: 1fr;
  }
  
  .logo_6029 {
    font-size: 1.75rem;
  }
  
  .layout-b66a {
    max-width: 100%;
  }
}

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

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

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

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

.primary-liquid-e0cc {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.input-simple-d911 {
  flex-shrink: 0;
}

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

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

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

.texture_adb8,
.avatar-dirty-dccb,
.column-e056 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.texture_adb8 thead,
.avatar-dirty-dccb thead {
  background: var(--color-primary);
  color: white;
}

.texture_adb8 th,
.texture_adb8 td,
.avatar-dirty-dccb th,
.avatar-dirty-dccb td,
.column-e056 th,
.column-e056 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .texture_adb8 th,
  .texture_adb8 td,
  .avatar-dirty-dccb th,
  .avatar-dirty-dccb td,
  .column-e056 th,
  .column-e056 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .texture_adb8,
  .avatar-dirty-dccb,
  .column-e056 {
    min-width: 600px;
  }
}

.texture_adb8 th,
.avatar-dirty-dccb th,
.column-e056 th {
  font-weight: 600;
}

.texture_adb8 tbody tr:hover,
.avatar-dirty-dccb tbody tr:hover,
.column-e056 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.slow-fb83 h4 {
  color: white;
}

.mask-current-0b65 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

.up-875c:last-child {
  border-bottom: none;
}

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

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

.input-medium-87f0 {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

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

.stone-c390:hover {
  text-decoration: underline;
}

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

.hovered-17b8 {
  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);
}

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

.main-warm-2dfa {
  font-weight: 600;
  color: white;
}

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

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

.hidden-bronze-9b49 {
  color: #4caf50;
}

.under-5d27 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.text-right-f889 {
  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;
}

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

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

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

.main-warm-2dfa {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pro-0886 .white_05f0 {
  width: 100%;
  background: white;
}

.inner-ff96 .white_05f0 {
  color: #667eea;
}

.rough-b3a4 .white_05f0 {
  color: #f5576c;
}

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

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

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

.carousel-bronze-916e {
  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);
}

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

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

@media (max-width: 768px) {
  .avatar-f114 {
    padding: var(--space-md);
  }
  
  .shade_ffce {
    padding: var(--space-md);
  }
  
  .summary-9c52 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.frame_0489,
.static_f295,
.prev_813f,
.component-7eb5 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.shadow-stone-c65c:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

.label-126d {
  border-color: var(--color-success);
}

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

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

.label-126d .inner_cc5c {
  background: #e8f5e9;
  color: var(--color-success);
}

.west_7f8b .inner_cc5c {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

.heading-large-4bde {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

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

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

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

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

@media (max-width: 768px) {
  .outline-old-03dd {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

.carousel_west_c3f2 {
  text-align: center;
}

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

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

.item_black_5d99 .main-warm-2dfa {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

.left-75eb {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.fluid-3836 {
  border: 2px solid #4caf50;
}

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

.dropdown-soft-cd9e {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.modal-steel-98d9 {
  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;
}

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

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

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

.top_1b7d {
  text-align: right;
}

.top_1b7d .shade-large-08c9 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

.secondary-up-29f8 {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

.element-inner-c28a {
  background: #e8f5e9;
  color: #2e7d32;
}

.pressed-e103 {
  background: #e3f2fd;
  color: #1565c0;
}

.card-eff9 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.component-solid-a5f8 {
  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);
}

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

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

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

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

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

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

/* ============================================
   20. FAQ SECTION
   ============================================ */
.aside-tall-7463 {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.center_6747 ul,
.progress_bottom_4969 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.pink-80e6 {
  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);
}

.video_blue_ac55 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .photo-up-b55b {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.huge_1c06 .row_dc11 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.image_0a05 a:hover {
  color: white;
}

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

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

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

.list-d170 a:hover {
  color: white;
}

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

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

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

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

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

.hover-center-751d {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.hover-center-751d:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .steel-7812 {
    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;
  }
  
  .widget-30c2 {
    font-size: 2rem;
  }
  
  .logo_6029 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .pressed_2cb3,
  .left_d663 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .pattern-9d29,
  .picture_dirty_be75,
  .tertiary_26ad,
  .outline-old-03dd,
  .icon_b14f,
  .paper-7c0c,
  .form_slow_316d,
  .photo-up-b55b {
    grid-template-columns: 1fr;
  }
  
  .dynamic-b8f0 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .hard-7085 {
    padding: var(--space-lg) 0;
  }
  
  .label_first_c458 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .label_first_c458 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .white_05f0 {
    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;
  }
  
  .dynamic-b8f0 {
    grid-template-columns: 1fr;
  }
  
  .soft-3349,
  .shadow-1757,
  .message_6e52 {
    flex-direction: column;
    width: 100%;
  }
  
  .card-hot-19b6,
  .surface_brown_4e6f,
  .soft-3349 .white_05f0,
  .shadow-1757 .white_05f0 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .widget-30c2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .logo_6029 {
    font-size: 1.375rem;
  }
  
  .sidebar-cool-bcdc {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .steel-1b7b,
  .inner-2928,
  .header-up-e781,
  .upper-b914,
  .accordion-25b3 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .badge_small_131d {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .out_65ed {
    gap: var(--space-xs);
  }
  
  .wide_5690 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .hovered-17b8 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .item_black_5d99 {
    width: 150px;
    height: 150px;
  }
  
  .pagination_basic_01d4 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .progress-9033,
  .grid_ac88,
  .soft-3349,
  .summary_top_ffd2,
  .clean-5e02,
  .picture_3101,
  .photo-b4f4 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .hard-7085 {
    page-break-inside: avoid;
  }
}

/* css-noise: eb39 */
.cold_8792 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}

/* css-noise: 3f21 */
.widget-item-f5 {
  padding: 0.1rem;
  font-size: 14px;
  line-height: 1.0;
}
