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

.backdrop_bright_7d82:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.up-5880,
header,
.banner-hovered-70eb,
.small-af6b,
.table_focused_0aa8,
.wrapper_daa6,
.title-8760,
.texture_fixed_9b12,
.overlay_bfbc {
  max-width: none;
}

/* Critical mobile fix: prevent any overflow */
section,
article,
div,
main {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Ensure images never cause overflow */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure SVG icons don't cause issues */
svg {
  max-width: 100%;
  height: auto;
}

/* ============================================
   4. HEADER & NAVIGATION
   ============================================ */
.up-5880 {
  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);
}

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

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

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

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

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

.pagination-eac6 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.active-easy-5b34 {
  flex: 1;
}

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

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

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

.column_outer_71ad.fn-active-59f9 {
  background: var(--color-primary);
  color: white;
}

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

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

.frame-400f svg {
  transition: transform 0.2s ease;
}

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

.shade-upper-4e5b {
  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;
}

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

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

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

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

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

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

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

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

.card_wide_f6e7 svg {
  flex-shrink: 0;
}

/* Header Download Button */
.gradient-yellow-79b7 {
  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;
}

.gradient-yellow-79b7: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);
}

.gradient-yellow-79b7 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.paper-6310[aria-expanded="true"] .nav-c572:nth-child(2) {
  opacity: 0;
}

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

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

  .active-easy-5b34::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .active-easy-5b34.mask-2fce {
    display: block;
    right: 0;
  }
  
  .sort_3d45 {
    flex-direction: column;
    gap: 0;
  }
  
  .column_outer_71ad {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .active-easy-5b34::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;
  }
  
  .active-easy-5b34.mask-2fce::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .active-easy-5b34 {
    display: none;
  }
  
  .paper-6310 {
    display: flex;
  }
  
  .selected_50f5 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .card_wide_f6e7,
  .gradient-yellow-79b7 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .gradient_gold_9863 {
    position: relative;
  }
  
  .shade-upper-4e5b {
    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;
  }
  
  .frame-400f[aria-expanded="true"] + .shade-upper-4e5b {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .module_914c {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .tooltip_short_0c04 {
    gap: 8px;
  }
  
  .card_wide_f6e7 {
    display: none;
  }
  
  .gradient-yellow-79b7 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .pagination-eac6 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .gradient-yellow-79b7 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .gradient-yellow-79b7 svg {
    width: 14px;
    height: 14px;
  }
  
  .summary-complex-c36a {
    gap: var(--space-sm);
  }
}

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

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

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

.banner_9fc1 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.shadow-b4fe a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

.west-877a {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.accordion-8f79 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.purple-edb0 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .picture_out_11d0 {
    grid-template-columns: 1fr;
  }
  
  .column_clean_66f4 {
    font-size: 1.75rem;
  }
  
  .accordion-8f79 {
    order: -1;
    max-width: 100%;
  }
  
  .purple-edb0 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .column_clean_66f4 {
    font-size: 1.5rem;
  }
  
  .tall_fbbe {
    font-size: 1rem;
  }
  
  .shadow-b4fe {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .purple-edb0 {
    max-width: 250px;
  }
}

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

.panel-814b {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.aside-6dff {
  list-style: none;
  counter-reset: toc-counter;
}

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

.aside-6dff 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);
}

.aside-6dff 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;
}

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

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

.old-94ad {
  background: var(--color-bg-section);
}

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

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

.feature-084c {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.aside_dynamic_4030 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) {
  .north-7793 {
    grid-template-columns: 1fr;
  }
  
  .feature-084c {
    font-size: 1.75rem;
  }
  
  .small-c1f6 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .feature-084c {
    font-size: 1.5rem;
  }
  
  .small-c1f6 h3 {
    font-size: 1.375rem;
  }
  
  .small-c1f6 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.article_purple_bcb1 {
  flex-shrink: 0;
}

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

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

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

.text_2d7f,
.inner_2907,
.last_1d93 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.text_2d7f thead,
.inner_2907 thead {
  background: var(--color-primary);
  color: white;
}

.text_2d7f th,
.text_2d7f td,
.inner_2907 th,
.inner_2907 td,
.last_1d93 th,
.last_1d93 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .text_2d7f th,
  .text_2d7f td,
  .inner_2907 th,
  .inner_2907 td,
  .last_1d93 th,
  .last_1d93 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .text_2d7f,
  .inner_2907,
  .last_1d93 {
    min-width: 600px;
  }
}

.text_2d7f th,
.inner_2907 th,
.last_1d93 th {
  font-weight: 600;
}

.text_2d7f tbody tr:hover,
.inner_2907 tbody tr:hover,
.last_1d93 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.fluid-9573 h4 {
  color: white;
}

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

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

.nav-1eda:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

.purple-75d4 {
  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);
}

.purple-75d4 span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

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

.header-right-c858 {
  color: #4caf50;
}

.secondary_ef38 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.heading-liquid-be5b .widget_5911 {
  width: 100%;
  background: white;
}

.red-b53b .widget_5911 {
  color: #667eea;
}

.table_bronze_b367 .widget_5911 {
  color: #f5576c;
}

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

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

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

.simple-70a3 {
  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_under_e83c h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

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

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

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

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

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

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

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

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

.outline_131c,
.liquid_1e81,
.focus-east-3db3,
.backdrop_90c0 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.search-north-e8bf:hover {
  background: var(--color-primary-dark);
}

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

.filter-61e3 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.form-pro-eb3a {
  border-color: var(--color-success);
}

.thumbnail-active-ff16 {
  border-color: var(--color-warning);
}

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

.form-pro-eb3a .mini-8787 {
  background: #e8f5e9;
  color: var(--color-success);
}

.thumbnail-active-ff16 .mini-8787 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.banner-out-4062 {
  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);
}

.accordion-9410 {
  text-align: center;
}

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

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

.warm-c1f5 .center_1f95 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.carousel-center-0ebe {
  color: var(--color-text-light);
}

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

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

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

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

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

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

.list-huge-7ee7 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

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

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

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

.white-022a {
  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;
}

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

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

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

.shade-iron-ad17 {
  text-align: right;
}

.shade-iron-ad17 .silver-cbb2 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.clean-300e {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.shade-yellow-829c {
  background: #fff3e0;
  color: #e65100;
}

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

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

.icon-simple-56c7 {
  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);
}

.icon-simple-56c7:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

.pagination_a13e[aria-expanded="true"] .slider-ac91 {
  transform: rotate(180deg);
}

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

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

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

.content-5a31 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.sidebar-liquid-c924 {
  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);
}

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

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

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

.dropdown-thick-6fa8,
.banner_d0fe {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.dropdown-thick-6fa8 h4,
.banner_d0fe h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.dropdown-thick-6fa8 ul,
.banner_d0fe ul {
  list-style: none;
  padding: 0;
}

.dropdown-thick-6fa8 li,
.banner_d0fe li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.iron-0d87 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.highlight-plasma-19b4 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.highlight-plasma-19b4 .panel_south_1f5f {
  color: #4caf50;
  font-size: 0.875rem;
}

.backdrop-copper-ae4f {
  list-style: none;
  padding: 0;
}

.backdrop-copper-ae4f li {
  margin-bottom: var(--space-xs);
}

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

.backdrop-copper-ae4f a:hover {
  color: white;
}

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

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

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

.primary_2087 a:hover {
  color: white;
}

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

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

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

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

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

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

.info-53c4:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .selected_9c8a {
    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;
  }
  
  .column_clean_66f4 {
    font-size: 2rem;
  }
  
  .feature-084c {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .picture_out_11d0,
  .north-7793 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .menu_top_e034,
  .large-1423,
  .widget-3872,
  .banner-b0f8,
  .sidebar_basic_2f39,
  .tag_9879,
  .tag_out_0fc1,
  .grid-dim-8e2d {
    grid-template-columns: 1fr;
  }
  
  .wrapper_gold_d996 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .title-8760 {
    padding: var(--space-lg) 0;
  }
  
  .aside-6dff li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .aside-6dff li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .widget_5911 {
    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;
  }
  
  .wrapper_gold_d996 {
    grid-template-columns: 1fr;
  }
  
  .west-877a,
  .notification-1b41,
  .black-0af0 {
    flex-direction: column;
    width: 100%;
  }
  
  .shade_out_db96,
  .preview-8166,
  .west-877a .widget_5911,
  .notification-1b41 .widget_5911 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .column_clean_66f4 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .feature-084c {
    font-size: 1.375rem;
  }
  
  .preview-47dc {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .outer_b3a7,
  .smooth-7168,
  .cool-a5cc,
  .main-action-7882,
  .wood-db1a {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .shadow-new-1044 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .list-current-d9f9 {
    gap: var(--space-xs);
  }
  
  .banner_9fc1 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .purple-75d4 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .warm-c1f5 {
    width: 150px;
    height: 150px;
  }
  
  .silver_289e {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .up-5880,
  .banner-hovered-70eb,
  .west-877a,
  .tiny_fe95,
  .texture_fixed_9b12,
  .overlay_bfbc,
  .paper-6310 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .title-8760 {
    page-break-inside: avoid;
  }
}

/* css-noise: 3ec9 */
.phantom-card-x0 {
  padding: 0.5rem;
  font-size: 14px;
  line-height: 1.0;
}
