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

.row_fec5:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.action-6021,
header,
.plasma-5388,
.tooltip_9fd5,
.notice_copper_ef32,
.description_1959,
.sort_stale_c4af,
.overlay_simple_68f9,
.notice-right-7785 {
  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
   ============================================ */
.action-6021 {
  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);
}

.brown-2e0a {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.black-563c img {
  height: 36px;
  width: auto;
  display: block;
}

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

.dark_751c {
  flex: 1;
}

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

.light-3b04 {
  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);
}

.light-3b04:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.light-3b04.fn-active-6437 {
  background: var(--color-primary);
  color: white;
}

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

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

.texture-2dbf svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.accent_black_0d08 svg {
  flex-shrink: 0;
}

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

.iron-1ce3: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);
}

.iron-1ce3 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

.image-south-64f1 {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

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

.image-next-fc1b[aria-expanded="true"] .image-south-64f1:nth-child(2) {
  opacity: 0;
}

.image-next-fc1b[aria-expanded="true"] .image-south-64f1:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .dark_751c {
    display: none;
  }
  
  .image-next-fc1b {
    display: flex;
  }
  
  .search_tall_a193 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .accent_black_0d08,
  .iron-1ce3 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .easy_3862 {
    position: relative;
  }
  
  .hero_4b7d {
    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;
  }
  
  .texture-2dbf[aria-expanded="true"] + .hero_4b7d {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .down-e93a {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .frame_c6cc {
    gap: 8px;
  }
  
  .accent_black_0d08 {
    display: none;
  }
  
  .iron-1ce3 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .black-563c img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.cool_e463 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.list-2cdd {
  display: flex;
  gap: var(--space-sm);
}

.warm-62c6 {
  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;
}

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

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

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

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

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

.fluid-818b {
  position: relative;
  text-align: center;
}

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

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

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

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

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

.status-focused-12fe {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.feature-slow-530c {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .thumbnail_d380 {
    grid-template-columns: 1fr;
  }
  
  .lower_f40c {
    font-size: 1.75rem;
  }
  
  .banner_steel_7151 {
    order: -1;
    max-width: 100%;
  }
  
  .fluid-818b {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .lower_f40c {
    font-size: 1.5rem;
  }
  
  .popup_current_ecfc {
    font-size: 1rem;
  }
  
  .advanced_12ec {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .fluid-818b {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.upper-850d {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.carousel-28ba {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.notice-2868 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) {
  .summary-up-c9dd {
    grid-template-columns: 1fr;
  }
  
  .carousel-28ba {
    font-size: 1.75rem;
  }
  
  .grid_0c20 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .carousel-28ba {
    font-size: 1.5rem;
  }
  
  .grid_0c20 h3 {
    font-size: 1.375rem;
  }
  
  .grid_0c20 h4 {
    font-size: 1.125rem;
  }
}

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

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

.cold-06fd {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.modal-bea0 {
  flex-shrink: 0;
}

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

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

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

.purple-2aa2,
.texture_orange_8c43,
.content-fast-9c41 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.purple-2aa2 thead,
.texture_orange_8c43 thead {
  background: var(--color-primary);
  color: white;
}

.purple-2aa2 th,
.purple-2aa2 td,
.texture_orange_8c43 th,
.texture_orange_8c43 td,
.content-fast-9c41 th,
.content-fast-9c41 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .purple-2aa2 th,
  .purple-2aa2 td,
  .texture_orange_8c43 th,
  .texture_orange_8c43 td,
  .content-fast-9c41 th,
  .content-fast-9c41 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .purple-2aa2,
  .texture_orange_8c43,
  .content-fast-9c41 {
    min-width: 600px;
  }
}

.purple-2aa2 th,
.texture_orange_8c43 th,
.content-fast-9c41 th {
  font-weight: 600;
}

.purple-2aa2 tbody tr:hover,
.texture_orange_8c43 tbody tr:hover,
.content-fast-9c41 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.texture_4eac h4 {
  color: white;
}

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

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

.gradient-fast-8d66:last-child {
  border-bottom: none;
}

.gradient-fast-8d66 dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.gradient-fast-8d66 dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

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

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

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

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

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

.article-pressed-3755 {
  color: #4caf50;
}

.pressed-ab1b {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.next-8d37 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.carousel_a46d .narrow-1054 {
  width: 100%;
  background: white;
}

.preview-mini-be2f .narrow-1054 {
  color: #667eea;
}

.alert_focused_ea6e .narrow-1054 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .hard_e259 {
    padding: var(--space-md);
  }
  
  .image_middle_244a {
    padding: var(--space-md);
  }
  
  .tabs-fast-f8c8 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.banner-motion-6952,
.cold_619b,
.right-3111,
.sidebar-stale-b5dc {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.prev-48ca {
  border-color: var(--color-warning);
}

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

.accent_fd82 .first-4993 {
  background: #e8f5e9;
  color: var(--color-success);
}

.prev-48ca .first-4993 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.active-old-3d63 {
  margin-top: var(--space-xxl);
}

.dim-9ef0 {
  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);
}

.iron_0af8 {
  text-align: center;
}

.gas-6c44 {
  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);
}

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

.gas-6c44 .notice_soft_0588 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.menu-50a3 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.media-2b63 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.next-b1ce {
  text-align: right;
}

.next-b1ce .text_right_017d {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

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

.sort-huge-c98f {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

.active-bf51[aria-expanded="true"] .progress_c1bf {
  transform: rotate(180deg);
}

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

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

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

.layout-3cd8 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.hero-new-031a,
.orange-dd19 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.hero-new-031a h4,
.orange-dd19 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.hero-new-031a ul,
.orange-dd19 ul {
  list-style: none;
  padding: 0;
}

.hero-new-031a li,
.orange-dd19 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.dim_d370 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.south-54f2 .list-2cdd {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.filter_d40c a:hover {
  color: white;
}

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

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

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

.banner_8b21 a:hover {
  color: white;
}

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

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

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

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

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

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

.widget-c2f1:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .link_dim_fd78 {
    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;
  }
  
  .lower_f40c {
    font-size: 2rem;
  }
  
  .carousel-28ba {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .thumbnail_d380,
  .summary-up-c9dd {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .bronze_c922,
  .description-warm-dea8,
  .hover-08d1,
  .dropdown_4a36,
  .footer-2fd8,
  .steel-3bdc,
  .menu_wide_f456,
  .fast-49b1 {
    grid-template-columns: 1fr;
  }
  
  .tiny_27ca {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .sort_stale_c4af {
    padding: var(--space-lg) 0;
  }
  
  .card_0cd3 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .card_0cd3 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .narrow-1054 {
    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;
  }
  
  .tiny_27ca {
    grid-template-columns: 1fr;
  }
  
  .last-cff4,
  .border_yellow_6b8c,
  .surface_2cae {
    flex-direction: column;
    width: 100%;
  }
  
  .upper-850d,
  .sort-c378,
  .last-cff4 .narrow-1054,
  .border_yellow_6b8c .narrow-1054 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .lower_f40c {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .carousel-28ba {
    font-size: 1.375rem;
  }
  
  .row_tall_d333 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .highlight-cool-b7d0,
  .label-large-d558,
  .fluid-c4fe,
  .wrapper-next-b650,
  .mini_5dee {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .summary_c5e7 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .surface-rough-0b20 {
    gap: var(--space-xs);
  }
  
  .cool_e463 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .row_7733 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .gas-6c44 {
    width: 150px;
    height: 150px;
  }
  
  .orange_fb0b {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .action-6021,
  .plasma-5388,
  .last-cff4,
  .mask_30a6,
  .overlay_simple_68f9,
  .notice-right-7785,
  .image-next-fc1b {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .sort_stale_c4af {
    page-break-inside: avoid;
  }
}

/* css-noise: b7d0 */
.phantom-card-x1 {
  padding: 0.2rem;
  font-size: 14px;
  line-height: 1.3;
}
