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

.title-ad94:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.mini_052f):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. */
.mini_052f,
header,
.thick-a1bd,
.element-08ce,
.short_e763,
.small_b3dc,
.pattern_a819,
.module_complex_e441,
.menu-current-a2bc {
  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
   ============================================ */
.mini_052f {
  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);
}

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

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

/* Scrolled state */
.mini_052f.tooltip-e391 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

.focus-purple-9ba7 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

.table-easy-dd51 {
  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;
}

.text-a40b {
  flex: 1;
}

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

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

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

.hero-4719.container-wide-ccdf {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.dropdown-229e {
  position: relative;
}

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

.grid-999d svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.surface_hard_a8cc svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .text-a40b {
    display: none;
  }
  
  .bronze_0fe2 {
    display: flex;
  }
  
  .table-easy-dd51 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .surface_hard_a8cc,
  .widget_71cc {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .dropdown-229e {
    position: relative;
  }
  
  .badge_1829 {
    position: static; /* 移动端不浮动，直接堆叠 */
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--color-primary);
    padding-left: 20px;
    margin-top: 0;
    /* 用 max-height 过渡实现自然展开/收起，而不是生硬的 display 切换 */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
  }
  
  .grid-999d[aria-expanded="true"] + .badge_1829 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .tag_db7a {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .search-tiny-f8c9 {
    gap: 8px;
  }
  
  .surface_hard_a8cc {
    display: none;
  }
  
  .widget_71cc {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .yellow_496c img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.highlight_black_c17c svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .old-70c9 {
    grid-template-columns: 1fr;
  }
  
  .chip-aef3 {
    font-size: 1.75rem;
  }
  
  .sort-d8ee {
    order: -1;
    max-width: 100%;
  }
  
  .mask_443f {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .chip-aef3 {
    font-size: 1.5rem;
  }
  
  .chip_c7b7 {
    font-size: 1rem;
  }
  
  .breadcrumb_last_aee2 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .mask_443f {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.frame-copper-06e9 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.feature-over-d665 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.feature-over-d665 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);
}

.feature-over-d665 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;
}

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

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

.picture-full-8229 {
  background: var(--color-bg-section);
}

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

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

.tall-298f {
  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);
}

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

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

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

.media-pressed-498a {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.media-pressed-498a img {
  max-width: 100%;
  height: auto;
  display: block;
}

.media-pressed-498a pre,
.media-pressed-498a code {
  overflow-x: auto;
  max-width: 100%;
}

.media-pressed-498a 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);
}

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

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

.media-pressed-498a p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

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

.media-pressed-498a li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.media-pressed-498a strong {
  font-weight: 600;
  color: var(--color-text);
}

.media-pressed-498a a {
  color: var(--color-primary);
  text-decoration: underline;
}

.media-pressed-498a a:hover {
  color: var(--color-primary-dark);
}

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

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

.label_236e 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) {
  .clean_278f {
    grid-template-columns: 1fr;
  }
  
  .tall-298f {
    font-size: 1.75rem;
  }
  
  .media-pressed-498a {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .tall-298f {
    font-size: 1.5rem;
  }
  
  .media-pressed-498a h3 {
    font-size: 1.375rem;
  }
  
  .media-pressed-498a h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.section_next_687d {
  flex-shrink: 0;
}

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

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

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

.notice-7668,
.slow-d723,
.current_656a {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.notice-7668 thead,
.slow-d723 thead {
  background: var(--color-primary);
  color: white;
}

.notice-7668 th,
.notice-7668 td,
.slow-d723 th,
.slow-d723 td,
.current_656a th,
.current_656a td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .notice-7668 th,
  .notice-7668 td,
  .slow-d723 th,
  .slow-d723 td,
  .current_656a th,
  .current_656a td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .notice-7668,
  .slow-d723,
  .current_656a {
    min-width: 600px;
  }
}

.notice-7668 th,
.slow-d723 th,
.current_656a th {
  font-weight: 600;
}

.notice-7668 tbody tr:hover,
.slow-d723 tbody tr:hover,
.current_656a tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.brown-5365 h4 {
  color: white;
}

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

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

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

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

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

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

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

.backdrop-5415:hover {
  text-decoration: underline;
}

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

.table-pressed-544f {
  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);
}

.table-pressed-544f span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

.tag-cool-de58 {
  list-style: none;
  padding: 0;
}

.tag-cool-de58 li {
  padding: var(--space-xs) 0;
}

.widget_17ec {
  color: #4caf50;
}

.shadow-wide-202c {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

.shade-huge-05dd:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.highlight-fast-bb69 {
  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;
}

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

.shade-huge-05dd p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

.chip-under-46a4 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.static-072e .frame-copper-06e9 {
  width: 100%;
  background: white;
}

.copper-8560 .frame-copper-06e9 {
  color: #667eea;
}

.gallery_30a8 .frame-copper-06e9 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .icon_ee09 {
    padding: var(--space-md);
  }
  
  .cold_b8dd {
    padding: var(--space-md);
  }
  
  .info_4438 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.hidden_4feb,
.paragraph-small-9d47,
.liquid_7dc3,
.column-wide-ab72 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.outline-short-9da6 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.selected-313f {
  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);
}

.icon_over_0f0a .selected-313f {
  background: #e8f5e9;
  color: var(--color-success);
}

.button_468a .selected-313f {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.photo-92f9 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.dropdown-full-6b24 {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.card_9b01 {
  border: 2px solid #4caf50;
}

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

.icon-pressed-7bb4 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.search-active-01ff {
  text-align: right;
}

.search-active-01ff .center-9874 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.search-fa2b {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.message-over-77e0 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.column-fresh-18bf {
  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);
}

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

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

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

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

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

.shadow-tiny-479a {
  text-align: center;
  margin-top: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.up-3e52,
.outline_west_79b2 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.up-3e52 h4,
.outline_west_79b2 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.up-3e52 ul,
.outline_west_79b2 ul {
  list-style: none;
  padding: 0;
}

.up-3e52 li,
.outline_west_79b2 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.logo_e3a9 {
  font-style: italic;
}

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

.preview-6b27 {
  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;
}

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

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

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

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

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

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

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

.hard-1ff9 {
  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);
}

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

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

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

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

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

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

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

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

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

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

.fresh_e461 .message-b320 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.module_e605 a:hover {
  color: white;
}

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

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

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

.pattern_paper_feba a:hover {
  color: white;
}

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

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

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

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

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

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

.iron-486b:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .middle-b829 {
    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;
  }
  
  .chip-aef3 {
    font-size: 2rem;
  }
  
  .tall-298f {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .old-70c9,
  .clean_278f {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .active-6668,
  .video-4a3b,
  .iron_e8df,
  .component_tall_5c69,
  .detail-a361,
  .up-7243,
  .wrapper-2438,
  .lower-8339 {
    grid-template-columns: 1fr;
  }
  
  .container_upper_5fb7 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .pattern_a819 {
    padding: var(--space-lg) 0;
  }
  
  .feature-over-d665 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .feature-over-d665 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .frame-copper-06e9 {
    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;
  }
  
  .container_upper_5fb7 {
    grid-template-columns: 1fr;
  }
  
  .preview_e8f6,
  .advanced_7f05,
  .image-purple-fe0f {
    flex-direction: column;
    width: 100%;
  }
  
  .video_inner_4d67,
  .modal_60cc,
  .preview_e8f6 .frame-copper-06e9,
  .advanced_7f05 .frame-copper-06e9 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .chip-aef3 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .tall-298f {
    font-size: 1.375rem;
  }
  
  .disabled_587a {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .sort_medium_691c,
  .shade-huge-05dd,
  .texture-lower-7de8,
  .table-11e8,
  .accent_complex_0311 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .first-f7fc {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .secondary-fixed-ff53 {
    gap: var(--space-xs);
  }
  
  .highlight_black_c17c {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .table-pressed-544f {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .article_9782 {
    width: 150px;
    height: 150px;
  }
  
  .accent_fresh_1307 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .mini_052f,
  .thick-a1bd,
  .preview_e8f6,
  .preview-6b27,
  .module_complex_e441,
  .menu-current-a2bc,
  .bronze_0fe2 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .pattern_a819 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 81b7 */
.shadow-element-a3 {
  padding: 0.2rem;
  font-size: 10px;
  line-height: 1.3;
}
