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

.popup-8031:focus {
  top: 0;
}

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

@media (max-width: 768px) {
  .tooltip-tiny-2e5e {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .tooltip-tiny-2e5e {
    padding: 0 12px;
  }
}

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

/* Allow specific elements to exceed container */
html,
body,
.layout_fd8d,
header,
.sort_white_7b11,
.active_under_cba6,
.notification-6aad,
.focus_fe75,
.hot_da29,
.input_lite_3fde,
.menu-stale-0e37 {
  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
   ============================================ */
.layout_fd8d {
  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);
}

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

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

/* Scrolled state */
.layout_fd8d.component-hard-0938 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.sidebar-545d img {
  height: 36px;
  width: auto;
  display: block;
}

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

.focus-middle-b17a {
  flex: 1;
}

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

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

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

.shadow_smooth_d56f.fn-active-d7e3 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

.primary-paper-4d35 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.small_19c0 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .focus-middle-b17a::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .focus-middle-b17a.button-0746 {
    display: block;
    right: 0;
  }
  
  .filter-hard-3720 {
    flex-direction: column;
    gap: 0;
  }
  
  .shadow_smooth_d56f {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .focus-middle-b17a::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;
  }
  
  .focus-middle-b17a.button-0746::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .focus-middle-b17a {
    display: none;
  }
  
  .orange_ca7d {
    display: flex;
  }
  
  .footer_active_c7b4 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .small_19c0,
  .upper_9622 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .accordion_d38c {
    position: relative;
  }
  
  .tall_98e0 {
    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;
  }
  
  .article_357e[aria-expanded="true"] + .tall_98e0 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .grid_focused_855a {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .primary-paper-4d35 {
    gap: 8px;
  }
  
  .small_19c0 {
    display: none;
  }
  
  .upper_9622 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .sidebar-545d img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.bronze-17e2 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.bronze-17e2 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gas-15f3 {
  display: flex;
  gap: var(--space-sm);
}

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

.hidden-74ea {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hidden-74ea strong {
  font-weight: 600;
  color: var(--color-text);
}

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

.hot-219b {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .new_669b {
    grid-template-columns: 1fr;
  }
  
  .title_5d10 {
    font-size: 1.75rem;
  }
  
  .advanced_ff6e {
    order: -1;
    max-width: 100%;
  }
  
  .small_aa74 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .title_5d10 {
    font-size: 1.5rem;
  }
  
  .pro_c600 {
    font-size: 1rem;
  }
  
  .tabs_954b {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .small_aa74 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

.small-0c09 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tertiary-fluid-e982 {
  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);
}

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

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

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

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

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

.secondary-71e5 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.secondary-71e5 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);
}

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

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

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

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

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

.secondary-71e5 strong {
  font-weight: 600;
  color: var(--color-text);
}

.secondary-71e5 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.secondary-71e5 a:hover {
  color: var(--color-primary-dark);
}

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

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

.right_43cf 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) {
  .mask_cool_8685 {
    grid-template-columns: 1fr;
  }
  
  .tiny_551b {
    font-size: 1.75rem;
  }
  
  .secondary-71e5 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .tiny_551b {
    font-size: 1.5rem;
  }
  
  .secondary-71e5 h3 {
    font-size: 1.375rem;
  }
  
  .secondary-71e5 h4 {
    font-size: 1.125rem;
  }
}

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

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

.feature-0abe {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.accordion-small-1265 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.main_basic_124e {
  flex-shrink: 0;
}

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

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

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

.black-2912,
.photo-focused-3adf,
.north_76e3 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.black-2912 thead,
.photo-focused-3adf thead {
  background: var(--color-primary);
  color: white;
}

.black-2912 th,
.black-2912 td,
.photo-focused-3adf th,
.photo-focused-3adf td,
.north_76e3 th,
.north_76e3 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .black-2912 th,
  .black-2912 td,
  .photo-focused-3adf th,
  .photo-focused-3adf td,
  .north_76e3 th,
  .north_76e3 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .black-2912,
  .photo-focused-3adf,
  .north_76e3 {
    min-width: 600px;
  }
}

.black-2912 th,
.photo-focused-3adf th,
.north_76e3 th {
  font-weight: 600;
}

.black-2912 tbody tr:hover,
.photo-focused-3adf tbody tr:hover,
.north_76e3 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.short_a248 h4 {
  color: white;
}

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

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

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

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

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

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

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

.focus-4da5:hover {
  text-decoration: underline;
}

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

.panel-91b0 {
  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);
}

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

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

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

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

.lower_2cb9 {
  color: #4caf50;
}

.dim_f2ab {
  color: #ff9800;
}

.text-south-13ed {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.video-soft-b2c5 .feature_last_84d4 {
  width: 100%;
  background: white;
}

.last_4fe6 .feature_last_84d4 {
  color: #667eea;
}

.thumbnail_29f9 .feature_last_84d4 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .green_fc46 {
    padding: var(--space-md);
  }
  
  .gradient_e72d {
    padding: var(--space-md);
  }
  
  .south-cf7a {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.modal-38b4 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.pattern_6e14,
.heading-soft-fa26,
.outline-rough-a61b,
.gas_8655 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.box-hard-4872:hover {
  background: var(--color-primary-dark);
}

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

.border-382f h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.list-908b {
  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);
}

.aside_advanced_749a .list-908b {
  background: #e8f5e9;
  color: var(--color-success);
}

.upper-d698 .list-908b {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.up-1dea {
  margin-top: var(--space-xxl);
}

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

.disabled-43bb {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.short-3870 {
  text-align: right;
}

.short-3870 .selected-d821 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.notice_warm_2fb1,
.search-2678 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.notice_warm_2fb1 h4,
.search-2678 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.notice_warm_2fb1 ul,
.search-2678 ul {
  list-style: none;
  padding: 0;
}

.notice_warm_2fb1 li,
.search-2678 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.simple-6e16 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.widget-a233 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.banner-60d2 {
  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);
}

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

.shadow-advanced-6fc3 {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

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

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

/* Footer variant: footer-content (subpages) */
.full-e873 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.header_3538 {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

.header_3538 a:hover {
  color: white;
}

.bronze_535b {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.bronze_535b a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid #424242;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.bronze_535b a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.picture_67b5 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.picture_67b5 a {
  color: #808080;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.picture_67b5 a:hover {
  color: white;
}

.content_silver_0948 > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

@media (max-width: 768px) {
  .secondary_e8a8,
  .full-e873 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.media_simple_8dda .gas-15f3 {
  color: #4caf50;
  font-size: 0.875rem;
}

.slider-narrow-c61e {
  list-style: none;
  padding: 0;
}

.slider-narrow-c61e li {
  margin-bottom: var(--space-xs);
}

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

.slider-narrow-c61e a:hover {
  color: white;
}

.element-8c00 {
  list-style: none;
  padding: 0;
}

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

.element-8c00 a {
  color: #b0b0b0;
  text-decoration: none;
}

.element-8c00 a:hover {
  color: white;
}

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

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

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

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

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

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

.mask_0595 a:hover {
  color: white;
}

/* Element selectors: survive CMS class obfuscation on deploy */
footer > div > div:last-child > div:last-child a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

footer > div > div:last-child > div:last-child a:hover {
  color: white;
}

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

.notice-ab35:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .content_silver_0948 {
    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;
  }
  
  .title_5d10 {
    font-size: 2rem;
  }
  
  .tiny_551b {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .new_669b,
  .mask_cool_8685 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .center-dd0f,
  .input-92c2,
  .lite_02b1,
  .lower-2872,
  .paragraph-6fab,
  .alert_hard_083b,
  .over-2221,
  .secondary_e8a8,
  .full-e873 {
    grid-template-columns: 1fr;
  }
  
  .liquid-e1be {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .hot_da29 {
    padding: var(--space-lg) 0;
  }
  
  .shade_south_d3b5 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .shade_south_d3b5 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .feature_last_84d4 {
    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;
  }
  
  .liquid-e1be {
    grid-template-columns: 1fr;
  }
  
  .hot-219b,
  .light_f9de,
  .shade_plasma_0dcb {
    flex-direction: column;
    width: 100%;
  }
  
  .over_8d6a,
  .small-0c09,
  .hot-219b .feature_last_84d4,
  .light_f9de .feature_last_84d4 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .title_5d10 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .tiny_551b {
    font-size: 1.375rem;
  }
  
  .north-51bf {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .large_724d,
  .alert_out_8a12,
  .progress_red_ec0f,
  .label_be21,
  .panel-cool-6723 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .mini_fc6a {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .secondary_left_1625 {
    gap: var(--space-xs);
  }
  
  .bronze-17e2 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .panel-91b0 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .white_440f {
    width: 150px;
    height: 150px;
  }
  
  .grid_ba28 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .layout_fd8d,
  .sort_white_7b11,
  .hot-219b,
  .widget_red_531e,
  .input_lite_3fde,
  .menu-stale-0e37,
  .orange_ca7d {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .hot_da29 {
    page-break-inside: avoid;
  }
}

/* css-noise: 7dad */
.phantom-card-r2 {
  padding: 0.5rem;
  font-size: 10px;
  line-height: 1.1;
}
